Issues With my website

Hi, there I have some issues with my website design domain is https://blondesanddudes.com

The issue is red line under the video and also I want video to disappearing behind menu on mobile but it is not disappearing.

Hi Silvia,

Thank you for reaching out to us.

  • To remove the red line under the video, please add the following code in the Theme Options > CSS:
.x-slider-container.below {
    border-bottom: none;
}
  • Do you want to hide the video in mobile devices? If that’s the case then add the following code too:
@media screen and (max-width: 979px) {
    .x-slider-container.below {
        display: none;
    }
}

Don’t forget to clear all caches including your browser’s cache after adding the code. Let us know how this goes!

Sorry I write wrong actually the issue is video is hiding behind the menu bar in mobile version and also i want to hide black spaces on top and bottom of the slider. another issue is that there is plus “+” button on the top right corner of navbar and when i press that plus button it revels white strip on menu it’s really annoying

Hi Silvia,

Please add this code in X > Theme Options > CSS:

@media (max-width: 979px) {
    .x-navbar {
         position: relative;   
    }
}

This would be tricky to implement because this has something to do with the video itself and not the website settings. Please check this link.

Please go to X > Theme Options > Header then set the Header Widget Areas to None.

Hope this helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.