Adding image to page title / reducing space above footer

  • Unknown's avatar

    I’m new to CSS and just trying to work a couple of things out. Could anyone let me know if they are possible please?

    I’m using the Standard theme and the site I’d like help with is abigailedge.co.uk

    1) I’d like the tree image I currently have on the homepage to be square to the top right of the page, which would mean it overwriting the page title in some way.

    2) I’d like to reduce the space between the bottom of the page and the footer area.

    Any other tips for customizing the Standard theme would also be much appreciated.

    Thanks in advance.

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

  • Unknown's avatar

    1) to add your tree image on the top of the page, that should be in your theme option/ custom header or something like that (not Css)

    2)
    #wrapper {
    padding: 0 0 2px;
    }
    change 2 for whatever you want.

  • Unknown's avatar

    Thanks Elise, I’ve successfully amended the footer but perhaps I wasn’t clear about the image. I don’t want it in header – I want it on the page titled “Good with words” so that it sits directly opposite the title in the top right corner.

    At the moment the image sits below the title, which creates extra white space at the bottom of the page that I don’t want.

  • Unknown's avatar

    That wouldn’t be possible.
    But you could simply not use the title in this post and type your title in the content (make it big with header 1 format), with the image next to it.

  • Unknown's avatar

    That’s done it, thanks! Is there any way to remove the page title from a particular page using CSS?

    I’ve just deleted the title from the page content, meaning the page still displays a line underneath where the title would normally be.

  • Unknown's avatar

    Yes.What page ? I’ll give you the complete code.

  • Unknown's avatar

    Thanks Elise. It’s actually the page that’s on my homepage titled “Good with words”.

  • Unknown's avatar

    try

    #post-1934 .post-title{
    display:none
    }

    Does it work ?

  • Unknown's avatar

    I’m afraid not – it doesn’t seem to alter anything as far as I can tell.

  • Unknown's avatar

    If you do
    .post-title{
    display:none
    }

    Alone, all your post titles from your site should disappear. If this work, try again with the line i’ve written earlier.

  • Unknown's avatar

    @abigailedge, The tree image in the footer sidebar is smaller than the open width to the right of the post title, “Good with words.” My suggestion would be to make the image a background image in the post aligned top right. Here is a screenshot of what I believe you want.

    And here is the code I used to achieve that.

    .home .post {
        background: url("http://abigailedge.files.wordpress.com/2013/08/abigail-edge-contact.jpg") no-repeat scroll right top / contain #FFFFFF;
    }
    .home .entry-content {
        width: 62%;
    }

    The above is limited to only the home page and will not show up on any other page or post on your site.

  • Unknown's avatar

    @thesacredpath This is exactly what I was looking to do, thank you!

    The only thing that bothers me is that the line between the page title and bodytext is visible over the image – is there any way to remove the line from this page only?

  • Unknown's avatar

    Ah yes, we can take care of that. Add this to your CSS.

    .home .post-header {
        width: 62%;
    }

    Or alternately you can revise the .home .entry-content rule we used to look like this:

    .home .entry-content, .home .post-header {
        width: 62%;
    }

    Either way will work.

  • Unknown's avatar

    That’s fab, thank you!

    Just one last question – my site is responsive and when the screen is viewed on a tablet the text overlaps the image and becomes difficult to read (if you shrink the browser window you’ll see what I mean).

    Basically everything on the site scales down – except the image of the tree I just added. Is there any way to make this adjust responsively too please?

  • Unknown's avatar

    Replace the like code you have now with the ones below which sets a percentage width for the image instead of using the “contain” attribute and see what you think. You end up with some white space below the image once the responsive changes kick in at 980px in width, but it there is no text overlap happening.

    .home .post {
        background: url("http://abigailedge.files.wordpress.com/2013/08/abigail-edge-contact.jpg") no-repeat scroll right top #FFFFFF;
        background-size: 38%;
    }
    
    .home .entry-content, .home .post-header {
        width: 55%;
    }
  • The topic ‘Adding image to page title / reducing space above footer’ is closed to new replies.