Okay
  Public Ticket #180111
top position of rev slider
Closed

Comments

  •  6
    Michael started the conversation

    hey guys!

    i have custom css in for a transparent menu.  i have a revolution slider in the top position and set the vertical position to -140px and set to full width.  all is fine.  but when i want to change the slider rev to full screen, the vertical position drops.  any custom css to fix that?

    much thanks!

  •  8,838
    Tahir replied

    Hey Michael!

    Are you adding the offset in the Revolution Slider ?. Also you might want to remove the negative positioning. Let me know the page link so i can take a look. 

    Cheers


    ThemeNectar Support Team 

  •  6
    Michael replied

    hey tahir!

    i removed the negative position in rev slider.  still messed up.  the page is www.em-dubs.com/test.  let me know if you need admin access.

    thanks!

  •  8,838
    Tahir replied

    Hey Michael!

    Add this into the Custom CSS box located in your Salient Options panel:

    body > div.container-wrap {
        margin-top: 0px;  padding-top: 0px;
    }
    

    If its causing issues on other pages you can add the home class so the css only works on home page or if specific page with page-id-??? . 

    For Home:

    body.home > div.container-wrap {
        margin-top: 0px;  padding-top: 0px;
    }

    For Specific page id :

    body.page-id-7906 > div.container-wrap {
        margin-top: 0px;  padding-top: 0px;
    }

    Cheers


    ThemeNectar Support Team