Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!
  • Guest, before posting your code please take these rules into consideration:
    • It is required to use our BBCode feature to display your code. While within the editor click < / > or >_ and place your code within the BB Code prompt. This helps others with finding a solution by making it easier to read and easier to copy.
    • You can also use markdown to share your code. When using markdown your code will be automatically converted to BBCode. For help with markdown check out the markdown guide.
    • Don't share a wall of code. All we want is the problem area, the code related to your issue.


    To learn more about how to use our BBCode feature, please click here.

    Thank you, Code Forum.

nstrain

New Coder
Hello i am trying to hide css from a wix template.

The screenshot below has the div i want to hide highlighted.

hide.png


WIX gives you the option to add custom code to the header by linking style sheets. I can see style sheet in the source code but my custom css isnt overwriting the class.

This is the code i used in my css file.


.heading.s-separator{
display: none !important;
}


Could someone help me to understand why the "heading s-separator" div is still displaying when i view the page?

This is the website URL for reference - https://www.bigberthamotorhomes.co.uk/book-a-room/rooms/d1a1f883-3e3e-43aa-a1bc-539c68d1733b

Thanks
 
.heading and .s-separator are both same class. You are trying to hide same class one above another. You will either need or you can try -
CSS:
.widget.s-separator{
    display: none !important
}
or
CSS:
.s-background.s-separator{
    display: none !important
}
 

New Threads

Buy us a coffee!

Back
Top Bottom