Archived topic
widget bullets
8 replies · Started by _blank on May 9, 2018
I just updated to 2.1.1 and the following simple CSS no longer works:
/* Widgets bullets, color...
.widget ul { margin: 0 0 1.5em 3em; }
.widget ul li { list-style-type: disc; }
.widget-title {
border-top-left-radius: 3px;
border-top-right-radius: 3px;
background-color: #c6c6a9;
color: white;
}
*/
Hi Mary,
I can see the CSS working, can you try clearing your browser cache?
David
Hi David,
Thanks. I tried that and no go. I am on a Mac.
Any other suggestion?
Thanks
M
Hi Mary,
my bad, just noticed that the titles are black and not white.
You can set the sidebar and footer widget titles under colors in the customiser. If not you need to make that color: white !important;
David
I had to change the coding to this to get the bullets back. ?
/* Widgets bullets, color... */
ul#menu-quick-links { margin: 0 0 1.5em 3em; }
ul#menu-quick-links li { list-style-type: disc; }
.widget-title {
border-top-left-radius: 3px;
border-top-right-radius: 3px;
background-color: #c6c6a9;
color: white;
}
Our widget <ul> element CSS got a little more specific in GP 2.1 to prevent some other conflicts. The CSS you adjusted to is perfect :)
Thanks Tom
Thanks All !
Mary
Your welcome Mary