Linedd Posted November 19 Posted November 19 I want to remove the background color of the submenu. Can anyone help with a css code?
Spark-Plugin Posted November 20 Posted November 20 (edited) Hello @Linedd, Of course! Just copy and paste the code below. This should work right away! Navigate to Pages > Website Tools > Custom CSS. Paste the code into the CSS editor. Hit Save and you’re done /* Style for making the header navigation folder content background transparent */ div.header-nav-folder-content { background-color: transparent !important; /* 1. `background-color: transparent`: This makes the background completely invisible, allowing whatever is behind this element to show through. 2. `!important`: Ensures this style takes precedence over any other conflicting styles defined elsewhere in your CSS. NOTE: Use with caution as this might affect readability if the background behind this element has low contrast with the text or other elements inside it. */ } Edited November 20 by Spark-Plugin - Answered by Iuno from sparkplugin.com
Squareko Posted November 20 Posted November 20 Just add this code in custom css: .header-nav-folder-content { background-color:transparent!important; }
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment