-
AuthorPosts
-
April 20, 2021 at 11:38 am #1295505
We are using a Grid Row near the footer of the home page.
It works perfectly for us only to the point when the browser window is big.
It stretches out width wise… Is there a way to keep this set to a maximum width of 1600 pixels?
April 22, 2021 at 6:46 am #1295938Hey whdsolutions,
Thank you for the inquiry.
Would you like to limit the maximum width of the grid row container? You can use this css code for that.
.responsive .container { max-width: 1400px; }
And if you want to only apply it on a certain screen width, create a css media query.
@media only screen and (min-width: 1600px) { /* Add your Desktop Styles here */ .responsive .container { max-width: 1400px; } }
Best regards,
IsmaelApril 22, 2021 at 8:39 am #1295956sorry Ismael – a grid-row with .container ? ;)
The Grid-Row itself got that class: .container_wrap
or do you see more info about the page – is it a grid-row he is talking about?i do not see his page – but even with that class adjustment he will have trouble if .main_color is set to something different than white.
my solution for that is to wrap the grid-row in a container that has the attributes of a color-section.
Just give the custom-class: grid-notfull to the grid-row element.
The additional class – added by the script color1 is for custom color if you would like to deviate from the default setting.See example page – https://webers-testseite.de/grid-row-alb/
- on top normal grid-row
- in the middle : grid-row with that custom-class : grid-notfull
- on the bottom : grid-row with only css setting ( set the .container_wrap to max-width )
here is the little snippet for child-theme functions.php:
function grid_layout_notfull(){ ?> <script> (function($){ $('.av-layout-grid-container.grid-notfull' ).wrap( '<div class="main_color notfullsize color1"></div>'); $('.notfullsize').css({"clear": "both", "width": "100%" , "float": "left" , "position": "static" , "min-height": "100px" }); $('.grid-notfull').css({"max-width": "1310px", "margin": "0 auto" , "padding": "0 25px"}); })(jQuery); </script> <?php } add_action('wp_footer', 'grid_layout_notfull');
adjust the grid-notfull class to your settings ( your container generall setting on Enfold Options)
The padding has to be adjust tooApril 22, 2021 at 8:50 am #1295959Tried both and nothing seems to work :(
April 22, 2021 at 9:18 am #1295969so you got a different Enfold than me?
You see on the example page that it works?
have you a link for me to see what is the issue?April 23, 2021 at 6:01 am #1296182Hi,
@guenni007: You are right. When I inspected the page I did not notice that I was inspecting the footer container and thought it was a grid row because it looks like it, but it is a default footer.
@whdsolutions: Would you mind providing a screenshot of the grid row? We cannot find it in the home page.
Best regards,
IsmaelApril 23, 2021 at 10:15 am #1296268if these are only #footer flex_columns – try:
@media only screen and (min-width: 768px) { #footer .container { display: flex; flex-flow: row wrap; justify-content: space-between; align-items: flex-start; max-width: 1600px; } #footer .container::after { display: none; } #footer .container .flex_column { width: unset; flex: 1 1 auto; /*** the first "1" and the auto value has the possibility that column 2 can grow bigger than the others - else 30% ***/ margin: 0 0 20px; } #footer .container .flex_column:nth-of-type(2) { padding: 0 20px; } }
adjust the wanted column-width with the flex setting
and adjust the max-width of the container to your needs- This reply was modified 3 years, 6 months ago by Guenni007.
April 26, 2021 at 4:23 am #1296646 -
AuthorPosts
- You must be logged in to reply to this topic.