CSS Editor Assistance
-
Can you please assist me with the proper text to remove the border and background color from the gallery through CSS. I have tried through Firebug and I cannot save it.
Thank You,
The blog I need help with is: (visible only to logged in users)
-
Hi there, add this to your custom CSS to delete the background color and the border on the slideshows.
.slideshow-window { border: none; background-color: transparent; } -
Thank you for the assistance but I am still having problems. The border and background changes once I entered the info into the CSS editor and did a save and publish. Once I refreshed the site the border and background reappeared.
-
Hmmm, it worked for me, but I see what you mean. Replace what you have with the following, which includes the !important keyword, which will force things.
.slideshow-window { background-color:transparent !important; border:none !important; } -
-
- The topic ‘CSS Editor Assistance’ is closed to new replies.