Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #1424266

    Hi Mike,

    I’ve discovered a small bug with this again since we last spoke.

    So when the site is at the mid screen size (small laptop/tablet) and the menu adjusts so it disappears it leaves a gap where it used to be between the breadcrumbs and header. How can we make that gap disappear please?

    Screenshot-2023-10-31-at-18.17.55.png

    I also moved all of the CSS changes in to the theme file editor rather than the Quick CSS area in case you want to log in again and take a look?

    The site is starting to look good now. We built a little header plugin to add some extra functionality to the header area (when using logo left / menu below).

    I also have another question for you but I’ll start a new thread / ticket for it. It’s for the same website, but is to do with the best way to handle maintaining a left menu on some pages (not using the native left menu though). I’m using a widget to do this but I’m wondering if it’s possible to use the Grid Row element in such a way that it will allow me to have a 1/3 + 2/3 Grid Row (so I can put my menu in the 1/3 first section, then I can stack 1/1 and 1/2 elements in the second 2/3 side to give me ways of controlling the height of that 2/3 right section better). I can kind of do this now but the problem I have is the left and right sides of the Grid Row element do not line up with the Colour Element or Breadcrumbs…

    Thanks,
    James.

    #1424290

    Hey jamesbarrell,

    Thank you for the inquiry.

    What is the actual model of the tablet where you are testing this? We may need to adjust the top padding of the main container on smaller tablet screens. Please add this css code.

    @media only screen 
    and (min-device-width : 768px) 
    and (max-device-width : 1024px) {
      .html_header_top.html_header_sticky #top #wrap_all #main {
        padding-top: 150px;
      }
    }
    

    Best regards,
    Ismael

    #1424300
    This reply has been marked as private.
    #1424653

    Hi,
    Thank you for your patience, I just found this thread, nonetheless try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    @media only screen and (min-width: 772px) in (max-width: 1023px)  { 
    	.html_header_top.html_header_sticky #top #wrap_all #main {
        padding-top: 150px;
    }
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    #1425014
    This reply has been marked as private.
    #1425023

    Hi,
    I see that I made an error above, this is the corrected css:

    @media only screen and (min-width: 768px) and (max-width: 1023px)  { 
    	.responsive.html_header_top.html_header_sticky #top #wrap_all #main {
        padding-top: 150px;
    }
    }
    

    This only starts at 768px, please clear your browser cache and check.

    I see another separate error with the margin-top at 767px and below, for the page, please disable any caching plugins and the Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression and enable the Enfold Theme Options ▸ Performance ▸ Delete old CSS and JS files if you also see it, if it you then still see it, check your custom css for missing Semicolon

    Best regards,
    Mike

    #1425026
    This reply has been marked as private.
    #1425107

    Hi,
    Yes, I mean where the sticky header below 767px is covering the top part of the main body, this seems to be due to some custom css removing the top padding:
    Enfold_Support_3867.jpeg
    Try changing the padding-top: 0 !important; to padding-top: 80px !important; or more to suit.
    Instead of using the !important;, try this css instead:

    @media only screen and (max-width: 767px){
    .responsive.html_header_top.html_header_sticky #top #wrap_all #main {
        padding-top: 80px;
        margin: 0;
    }
    }

    It was hard to examine because the Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression is still enabled.
    Try disabling this while you are building your site.

    Best regards,
    Mike

    #1425148
    This reply has been marked as private.
    #1425152

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

Viewing 10 posts - 1 through 10 (of 10 total)
  • The topic ‘Relates to https://kriesi.at/support/topic/duplicated-burger-icon-and-more-paddi’ is closed to new replies.