Make Image fill screen (Home page)

  • Within my site i have a page up top called ‘Home’ – i want to make the image already there fill the page (white space around image) entirely, could someone help me with this? can this be done by using CSS? Thanks!

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

  • If you’re talking about the “Company facts” image, you can make it full-screen but then it will also hide the menu and everything else, rendering the user unable to “exit” that page.

    But it can be done with CSS if you add something like this:

    .page img.wp-image-827 {
      width: 100%;
      position: absolute;
      left: 0;
      top: 0;
      border: solid 10px #ffffff;
    }

    It will only effect that particular image on that particular page. Not really sure if that’s what you intended, but it’d be a start.

  • Thank you Seneff, thats exactly what i was looking for!!

  • The topic ‘Make Image fill screen (Home page)’ is closed to new replies.