I have several days trying to add a bullet in the Enfold Lastes News widget. For if achieved add the bullet, now the problem is that when I add the vignette also appears in the main menu items and I just want it to appear in the above widget.
The code to edit the css for this was as follows:
/* #Lists
================================================== */
ul, ol { margin-bottom: 20px; }
ul { list-style: none outside; margin-left: 7px;}
ol { list-style: decimal; margin-left: 15px; }
ol, ul.square, ul.circle, ul.disc { }
ul.square { list-style: square outside; }
ul.circle { list-style: circle outside; }
ul.disc, .entry-content-wrapper ul { list-style: disc outside; }
ul ul, ul ol,
ol ol, ol ul { margin: 4px 0 5px 30px; }
ul ul li, ul ol li,
ol ol li, ol ul li { margin-bottom: 6px; }
Hey!
Prefix your code with .widget
:
.widget ul, .widget ol { margin-bottom: 20px; }
.widget ul { list-style: none outside; margin-left: 7px;}
.widget ol { list-style: decimal; margin-left: 15px; }
.widget ol, .widget ul.square, .widget ul.circle, .widget ul.disc { }
.widget ul.square { list-style: square outside; }
.widget ul.circle { list-style: circle outside; }
.widget ul.disc, .widget .entry-content-wrapper ul { list-style: disc outside; }
.widget ul ul, .widget ul ol,
.widget ol ol, .widget ol ul { margin: 4px 0 5px 30px; }
.widget ul ul li, .widget ul ol li,
.widget ol ol li, .widget ol ul li { margin-bottom: 6px; }
Best regards,
Josue