Banner Positioning
My theme has the banner image a little too far to the right. I'm trying to insert some margin code in the Title and Head classes in my custom.css, but nothing seems to be working. Any ideas?
Link to forum - http://blockstring.com/board/
0
Comments
try this...
div.Head h1 a img { margin-left:-40px; position: relative; width:900px; height:auto; }incidentally, huge but nice Logo
probably the easiest thing to do is to remove the margin-left that you put in your custom.css.
body #Head h1 {
margin-left: 40px;
but after reading what you said - vrijvlinder is probably right.
Thanks, this worked!
This will work too
body #Head h1 { margin: 25px auto; padding: 0; }you should remove the height on the #Head, it's the wrong size. The head will get higher depending on the content.
Ah yes. Good catch