Okay
  Public Ticket #2596856
Header issue mobile devices
Closed

Comments

  • dropc_ started the conversation

    Hello again,

    I'm finishing my website thanks to you, but found a little issue on mobile devices. Maybe you can help me out.

    I want my column background to be on top of homepage just as the desktop version. (I attach screenshot)

    I used "Ageless Hero" Salient template which has no this problem on mobile devices. I think it's my logo or menu button what it's causing this problem. 

    Also menu text has opacity on responsive version. You solve it in my previous ticket with this custom css line that worked properly. Can't make it work.


    #header-outer.transparent .slide-out-widget-area-toggle a i.label {    opacity: 1;}


    Hope I explained myself.

    Thank you once again for your help.

  •  8,849
    Tahir replied

    Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):

    body #header-outer[data-has-menu][data-format][data-padding] #top .slide-out-widget-area-toggle[data-custom-color="true"] a i.label, body #header-outer.transparent #top .slide-out-widget-area-toggle[data-custom-color="true"] a i.label {
        opacity: 1 !important;
    }
    .vc_row.top-level.full-width-section:not(.full-width-ns) > .span_12 {
        padding-top: 0px !important;
        margin-top: -59px;
    }

    Thanks


    ThemeNectar Support Team 

  • dropc_ replied

    Thank you!