Viewing 20 posts - 1 through 20 (of 20 total)
  • Author
    Posts
  • #451628

    Hi,
    i want to move the top menu with the social icon and the extra text down, so it is in one line with the logo.
    Also the grey line/border under the top menu should be removed.

    View post on imgur.com

    How can i do this?

    The second thing is, i use different full width sub menus. How to make the current active menu piont bold and have another color?

    The last thing is: How to center the main menu?

    Thanks, Simon

    #452195

    Hi simonac!

    Thank you for using Enfold.

    1.) Use this:

    @media only screen and (min-width: 989px) {
       div#header_meta {
      position: absolute;
      border: 0;
      top: 20%;
      }
    
    div#header_main {
      border-top: 0;
    }}

    2.) Use this:

    #top .av-subnav-menu > li.current_page_item a {
      color: red;
    }

    3.) Try this:

    .avia-menu.av-main-nav-wrap {
    text-align: center;
    }
    
    ul#avia-menu {
      float: none;
      display: inline-block;
    }

    Regards,
    Ismael

    #452413

    Hi Ismael,

    1.) It works – except for there is space added below the main menu now. How to remove the blue extra space?

    2.) worked like a charm.

    3.) worked like a charm.

    Thanks Simon

    • This reply was modified 8 years, 11 months ago by simonac.
    #452644

    Hi!

    Please add following code to Quick CSS as well

    .html_header_top.html_header_sticky #top #wrap_all #main {
      padding-top: 160px;
    }

    Best regards,
    Yigit

    #452712

    Hi Yigit,

    that code did not change anything.

    Regards, Simon

    #452715

    Hey!

    Please try adding !important rule to the code as following

    .html_header_top.html_header_sticky #top #wrap_all #main {
      padding-top: 160px !important;
    }

    Cheers!
    Yigit

    #452718

    That did the trick! :)

    …there’s only a small white border/line left under the menu. How to remove this?

    Thanks a lot!

    #452730

    Hi!

    Please add following code to Quick CSS as well

    .avia-menu-fx { display: none !important; }

    Regards,
    Yigit

    #453003

    Hi,

    that didn’t work…

    Also on mobile devices the blue menu area is getting huge.

    View post on imgur.com

    And is there a way to prevent the menu to flip in the second row on a touchpad?

    View post on imgur.com

    And you see, that the layerslider is not full width on mobile devices. How to make that?

    Regards, Simon

    • This reply was modified 8 years, 11 months ago by simonac.
    #453306

    Hi!

    Please go to Enfold theme options > Header > Mobile Menu > Header Mobile Menu activation and choose 990px.
    Then please add following code to Quick CSS as well

    @media only screen and (max-width: 1040px) {
    .av-main-nav > li > a { padding: 0 8px; }}
    @media only screen and (max-width: 990px) {
    .html_header_top.html_header_sticky #top #wrap_all #main { padding-top: 0!important; }}

    Please make sure that > sign is not converted to – http://i.imgur.com/IDXRZQ3.png in Quick CSS field

    Cheers!
    Yigit

    #453644

    Hi Yigit,

    it worked for the blue space.

    But there are still a few things.

    1.) On touchpad 768*1024 in Portrait mode the layer slider is cut of the upper 1/3 now.

    View post on imgur.com

    2.) On a 1280*1024 Monitor the last menu points move in the second row.

    3.) The small 1px white line under the menu is still there.

    #454081

    Hi!

    I adjusted custom CSS code in Quick CSS field. Please review your website now

    Best regards,
    Yigit

    #454371
    This reply has been marked as private.
    #455255

    Hey!

    1. Use this code:

    @media only screen and (max-width: 768px) {
    div#layer_slider_1 {
    margin-top: 154px;
    }}
    

    and adjust as needed.

    3. Use this:

    .avia-layerslider {
    border-color: none;
    } 
    

    4. Use this code:

    @media only screen and (max-width: 1024px) {
    div#layerslider_1_1 {
    width: 114% !important;
    left: -47px;
    }}
    

    and adjust as needed.

    Cheers!
    Andy

    #455856

    Hi Andy,

    1.) the code brings back the blue extra space. it does not make the slider top 1/3 visible. See screenshot above.

    3.) This did not work.

    4.) This one worked!

    5.) On a 1280*1024 Monitor the last menu points move in the second row. Is there a way to solve this?

    Kind Regards, Simon

    #456379

    Hey!

    1.) I implemented this code in your Quick CSS and it seems to work fine for me:

    @media only screen and (max-width: 989px) and (min-width: 768px) {
    .responsive #main .container_wrap:first-child {
    margin-top: 156px;
    }}
    

    Don’t forget to clear browser cache, if necessary.

    3.) Sorry, use this code instead:

    .avia-layerslider {
    border: none;
    }
    

    5.) When the menu is too long that normal behavior. However, it’s not happening for me. Can you show us screenshots of the issue? You could try to decrease menu font size for this screen size:

    @media only screen and (max-width: 1280px) and (min-width: 1024px) {
    #top #header .av-main-nav > li > a {
    font-size: 12px;
    }}
    

    Hope this helps.

    Regards,
    Andy

    #456565

    Thanks to the support team!

    Just on Kindle Fire with 600×960 there is a blue space in the top left corner.

    View post on imgur.com

    And when i resize the browser on my laptop, at some point there comes the blue space above the slider again. This happens somewhere between 970px and 750px. This happens on Firefox.

    View post on imgur.com

    Kind Regards, Simon

    #456607

    Hi!

    Please add following code for second issue

    @media only screen and (max-width: 970px) and (min-width: 750px) {
    .html_header_top.html_header_sticky.avia-mozilla #top #wrap_all #main { padding-top: 0 !important; }}

    I cannot reproduce the first issue by resizing browser windows and i do not own a tablet unfortunately :/

    Regards,
    Yigit

    #457140

    That made the top menu a blue background and the normal background changed its font color…

    #457826

    Hey!

    This is the code that causes the blue gap:

    @media only screen and (max-width: 790px) and (min-width: 768px) {.responsive #main .container_wrap:first-child {
      margin-top: 156px;
    }}

    Please remove it.

    Best regards,
    Ismael

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