Support » Fixing WordPress » Grave problem of aligning Header Logo

  • Resolved ratulupadhyay

    (@ratulupadhyay)


    I just started using deep focus theme on my wordpress blog.

    http://vigaversa.co.cc

    The problem is my logo just wont center align itself. And there is no spacing beneath the logo as well. I tried adding <div align=”center”> in the header.php but didn’t work out. Kindly help me out.

    Thanks 🙂

Viewing 6 replies - 1 through 6 (of 6 total)
  • For some reason, I can’t get into your CSS file to check it out, but I would try moving your logo to a background image of #header.

    Something like this:

    #header
    {
    	background-image: url(http://vigaversa.co.cc/wp-content/themes/DeepFocus/images/logo.png);
    	background-repeat: no-repeat;
    	background-position: center;
    }

    Changing this:

    #logo {
        left: 0;
        position: absolute;
        text-align: center;
        top: 0;
    }

    to this:

    #logo {
        text-align: center;
        top: 0;
    }

    fixed it for me in Firebug. If you run Firefox, get firebug as it is a huge help.

    Thread Starter ratulupadhyay

    (@ratulupadhyay)

    Thanks a ton nalco. I didn’t know about firebug before. It makes it so simple.

    Nalco, I tried out to change the font-size of the quote below main gallery. I want to make it smaller. Couldn’t figure it out.

    It uses Cufon so it’s harder to tell, but I’m guessing your looking for:

    #tagline p

    and it has 36px font size, so just change that number and hopefully it will do what you want, if not the p variable than look at others probably in the #tagline.

    Thread Starter ratulupadhyay

    (@ratulupadhyay)

    Thats done it. Ganners. Thanks a lot. 🙂

    Thread Starter ratulupadhyay

    (@ratulupadhyay)

    Hey guys you’ve been life-savers so far. Thanks a ton for that. I need one last help. My website uses timthumb.php to resize images. It works fine when I add jpeg links from flickr.com. But when I add photos from facebook they dont show up with timthumb.

    I added their link facebook.com and sphotos.ak.fbcdn.net(this the link when you open images in facebook) to the allowedsites section but it doesnt work. Can somebody help me out ?

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Grave problem of aligning Header Logo’ is closed to new replies.