Well honestly speaking I’m don’t have much knowledge of customizing WordPress but if I were you I would have achieved it like this:
This is the code of the image at your site:
<img class="size-full wp-image-1615 aligncenter" title="Ideal808" src="http://cyberduelist.com/wp-content/uploads/2011/02/pojo_largebanner.gif" alt="" width="650" height="90"/>
replace
size-full wp-image-1615 aligncenter
with
header-ad
then go to the theme’s stylesheet and copy paste this code:
.header-ad {
float:center;
}
I hope this would have been worked! 🙂
float ‘center’ might not be a valid property value.
you might try changing-
#header img { float:left; }
to-
#header img { display:inline; }
If it works for you, check it in several different browsers for margin issues.
It also centers the header image which I think he don’t want to.
and what about ‘ClaytonJames’ procedure?
I don’t really understand how to do that one
I don’t really understand how to do that one
Open the style.css file in your theme folder. The file is located here:
/wp-content/themes/Polished/style.css
find this around line 109 in that file: #header img { float: left; }
change it to this: #header img { display:inline; }
be sure to make a backup of your files first. you should always keep a working backup copy.