home background image

Homepage Community Forums Legacy Theme Support home background image

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #20377

    Hi everybody, please how can I change a background image on my homepage (LegacyTheme) to view it right on IPad?
    I’m using an image with suggested dimension but on my Ipad it appears in very low resolution… I also would like to avoid that it is cropped and magnified…

    Many thanks

    #20398
    Wes
    Moderator

      If you look for .front-page-1 in your responsive section of your CSS (under the 1023px area), you can uncomment this – /*background-attachment: scroll;*/

      Which should end up looking like this –

      .front-page-1 {
          background-attachment: scroll;
      }

      Or you can add this to your CSS at the bottom (or wherever you add your custom CSS) –

      @media only screen and (max-width: 1024px) {
      
      	.front-page-1 {
      	    background-attachment: scroll !important;
      	}
      
      }

      I had the exact same issue with the default version of the Legacy theme, which means anyone using the 1.4 version will need to make this small adjustment to their CSS (or I can do it for them). This fix will be automatically applied in the next update (1.4.1)

    Viewing 2 posts - 1 through 2 (of 2 total)
    • You must be logged in to reply to this topic.