Okay
  Public Ticket #2464193
Footer in mobile view
Closed

Comments

  • kuechlerich started the conversation

    Hi,
    On the mobile view the footer columns getting way too far away from each other. how can i controll the space between these elements?



  •  8,884
    Tahir replied

    Hey Again,

    Add this into the Custom CSS box located in your Salient Options panel (All custom css provided is tested in the Live Browser so it will work as intended . If you cant see any changes make sure there is no red cross in the Custom CSS Box as that syntax error would cause all css below it to not show up on the Frontend):

    @media only screen and (max-width: 999px) and (min-width: 1px) {
        #footer-widgets .container .col {
            margin-bottom: 10px !important;
        }
        #footer-widgets .container .col br {
            display: none !important;
        }
    }

    Thanks


    ThemeNectar Support Team 

  • kuechlerich replied

    Perfect! thx

  • kuechlerich replied

    Me again...

    My client want the Landingsite without the white border. I solved that with the individual css code:

    .body-border-right {
        background-color: #fff0;
        width: 0px;
    }  

    .body-border-left {
        background-color: #fff0;
        width: 0px;
    }  
    .body-border-bottom {
        background-color: #fff0;
        height: 0px;
    }
    .body-border-top {
        background-color: #fff0;
        width: 0px;
    }  

    body {
        padding-bottom: 0px;
    }

    body .full-width-section.parallax_section .row-bg-wrap {
        margin-left: calc(-50vw + 0px);
        left: calc(50% - 0px);
        width: calc(100vw - 0px);
    }


    The only thing left is to make the Header transparent... naturally  just for the landingsite https://e-web.ch/lightguide/.
    Is there a way?

  •  8,884
    Tahir replied

    Hey Again,

    Try using the Force Transparency Option in "Page Header Settings" Metabox . See screenshot : http://prntscr.com/gjnyit .

    Best


    ThemeNectar Support Team