• Resolved mlpokn

    (@mlpokn)


    Hello guys. Could you help me remove the header on my blog? I am using a custom theme, and I don’t know how to remove that header image (the blue one.). Not that I am a complete n00b at CSS / PHP, or whatever I need to do this by myself.

    I also want to give more space between pages, because as you can see my 4th page isn’t showing up completely.

    https://apkdb.info

    Thanks a ton!!!

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi mlpokn,

    I took a look at your site using the Firebug extension in Firefox. To hide the header image, edit the #RandomShow img declaration in your style sheet and add display: none:

    #RandomShow img
    {
        background: url("resources/loading.gif") no-repeat scroll center center transparent;
        height: 160px;
        width: 920px;
        display: none;
    }

    When you say give more space between pages, can you please tell us what part of your site you are referring to? Do you mean the space between items in the navigation bar or some other part of the site? Using Firebug is a great way to see what CSS is affecting the different elements on a page.

    Hope this helps!

    Thread Starter mlpokn

    (@mlpokn)

    Hello ChristiNi.

    It took me a while to find that STYLE file, but I got it working. Thanks.

    So. I want to give more space between the items in the nav. bar. Between the 2nd and the 3rd mostly.

    Hi mlpokn,

    You could adjust the width of each of the items in your navigation menu so they are distributed uniformly by adding a width to the header .menu li declaration in your style sheet:

    header .menu li {
        float: left;
        width: 120px;

    You can change that width and test it to see what works best for you.

    Hope this helps!

    Thread Starter mlpokn

    (@mlpokn)

    /found it.

    Thanks ??

    Glad to hear that mlpokn! If you have time, could you mark this topic as resolved?

    Thanks!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘[Help me]Removing the header Page spacing’ is closed to new replies.