Can I join my header onto my body, And also ammend the footer in Fanwood Light?

  • Unknown's avatar

    Hi there just upgraded to the instant customisation package. And looking to implement some CSS changes where possible.

    Firstly if you look at my blog you will see there is a gap between then body and header as standard with the FANWOOD LIGHT THEME. Can this be done using CSS customization?

    Secondly, I would like to amend the footer, I know WP rules state you can’t hide or delete the WP link or Theme credit and I’m not looking to do that. But it it possible to ad the name of the Blog and the year to the footer area additionally through CSS?

    I am somewhat of a layman aside from html and a little basic java script so speak to me as you would a child!

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    I meant can the gap be removed, So that the body joins the header?

    Sorry for not being clear.

  • Unknown's avatar

    Are you wanting the yellow band to go full-width of the browser window? If so, add the following CSS.

    #main-navigation {
        max-width: 100%;
    }
    .menu-menu-1-container {
        height: 40px;
        text-align: center;
    }
    .navigation-main ul {
        display: inline-block;
        float: none;
    }
  • Unknown's avatar

    Hi sorry my post didn’t make much sense reading it back, I did a screencap where I outlined the area I meant. I just think it looks messy and the header should join.

    Have a look at the pic and tell me if I can fix it. Thanks again!

    The screencap.

  • Unknown's avatar

    There’s a 10px gap below the header area that’s set by the theme. You can remove the 10px like this:

    #masthead {
    	margin-bottom: 0;
    }

    Does that solve the gap problem with the header?

  • Unknown's avatar

    But it it possible to ad the name of the Blog and the year to the footer area additionally through CSS?

    You can add plain text using CSS. Here is an example:

    .site-info:after {
    	content: "hello, world";
    	display: block;
    }
  • The topic ‘Can I join my header onto my body, And also ammend the footer in Fanwood Light?’ is closed to new replies.