Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.

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/

Comments

  • edited March 2013

    try this...

    div.Head h1 a img {
    margin-left:-40px;
    position: relative;
    width:900px;
    height:auto;
    }
    
  • incidentally, huge but nice Logo

    There was an error rendering this rich post.

  • peregrineperegrine MVP
    edited March 2013

    probably the easiest thing to do is to remove the margin-left that you put in your custom.css.

    body #Head h1 {

    margin-bottom: 0;
    

    margin-left: 40px;

    but after reading what you said - vrijvlinder is probably right.

    I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.

  • @peregrine said:
    probably the easiest thing to do is to remove the margin-left that you put in your custom.css.

    body #Head h1 {

    margin-bottom: 0;
    

    margin-left: 40px;

    Thanks, this worked!

  • edited March 2013

    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 :)

Sign In or Register to comment.