[Magazine Theme] CSS to insert a large picture between header and home top

  • Unknown's avatar

    What picture in footer? How did you move the widget?

  • Unknown's avatar

    sorry it took me so long to get back here. What I did is I moved the meta from the widget ‘primary sidebar’ to ‘footer 1’ and my picture now appears in the bottom. I saved the change now so you can have a look at it and tell me how to fix things.
    If I’m gonna put the meta information all in one line I’d rather have them on the bottom in one of the footer instead of the sidebar.

  • Unknown's avatar

    To limit the photo to the top part of the blog, make the CSS selector just a bit more specific by adding #inner like this:

    .home #inner .wrap {
    background:url('http://recordbeatdotorg.files.wordpress.com/2012/01/cover_blog6.jpg') no-repeat scroll center top #FFFFFF;
    }

    To make the list items in the meta widget appear on one time, try this:

    .footer-widgets-1 {
    width: 100%;
    }
    #footer-widgets .widget ul li {
    background: none;
    border-bottom: none;
    list-style-type: none;
    padding: 0 18px 5px 0;
    float: left;
    }

    However, instead of trying to modify the meta widget so much, you might try adding just the links you’d like to keep using a text widget.

  • Unknown's avatar

    To limit the photo to the top part of the blog, make the CSS selector just a bit more specific by adding #inner like this:

    actually that puts the picture underneath the whole page making the area for post and the sidebar transparent if you know what I mean.
    Maybe there is another way? The problem persists.

    good tip about the txt widget, I didn’t think of that, I could avoid putting meta and insert only a link to log in… I’ll try that.

  • The topic ‘[Magazine Theme] CSS to insert a large picture between header and home top’ is closed to new replies.