Log in

View Full Version : Fanupdate Icons Issue



KillerRawr
03-14-2009, 11:27 PM
I need help centering the small icons that are for "bold", "link", and "italicized" under Post A Comment. These icons are under the "Name", "E-Mail", and "URL" textarea. I want them to be on top of the textarea where the visitors type in their comments.

I've tried going to "Templates" on Fanupdate, but I just don't see it. :confused: Help?

Nile
03-15-2009, 12:44 AM
Please post a link to the page on your site that contains the problematic script so we can check it out.
Please include your code so that we can take a look at it, we can't do much without it. When you do post your code remember to use [code] tags. That includes [ html ], [ code ], and [ php ].


Try putting them in a <div>, for example:


<div class="centered_obj">
//bold, link, and italics code here
</div>


Then, add this to the CSS file:


div.centered_obj {
width: 100%;
margin: 0 auto;
padding: 0;
}