Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #311388

    Hey Guys
    I’m trying to get a 1/2 and 1/2 page image to be bigger than the default settings. i have put in a full width image above to show you what I want it to look like. let me know how to stretch the images. thanks!

    http://www.jdrakeproductions.com/?page_id=1045/#about

    #311391

    forgot to click notify by email. thanks

    #311682

    Hi!

    Thank you for using Enfold.

    Add a unique selector on the color section using the Developers Section ID field. Use “adjust-section” for example then use this on Quick CSS or custom.css:

    #adjust-section .container {
    width: 1300px;
    }
    
    #adjust-section .container .twelve.units {
    margin-left: 0;
    width: 1300px;
    }

    You might need to use media queries to change the width of the container and grid units on different screen devices.

    Regards,
    Ismael

    #311998

    hey ismael
    this looks perfect on laptop, but now on mobile it is being cut off. any ideas?

    http://www.jdrakeproductions.com/?page_id=1045/#about

    #312150

    Hi!

    Thank you for the update.

    That is why you need to use media queries to adjust the width on different screen sizes.

    @media only screen and (min-width: 768px) and (max-width: 989px) {
    #adjust-section .container {
    width: 750px;
    }
    
    #adjust-section .container .twelve.units {
    margin-left: 0;
    width: 750px;
    }
    }

    Please refer to this link to learn more about media queries: http://css-tricks.com/css-media-queries/

    Cheers!
    Ismael

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