Dot appearing before widget
-
I have a dot that is appearing before the widget I added to my page. This widget is from Widgets on Pages that I placed into the single post.php file using short codes.
Any ideas?
http://tendig.com/top-10-expensive-yachts/
Look at the very bottom next to the video on the right.
-
You need to add in your style sheet
ul { list-style: none; }That will remove bullets from your unordered lists. However if you want bullets on certain lists you will have to start assigning classes.
Just added that and no luck. Any other ideas?
Okay…try finding this, it should be on line 1097 of your style.css
.entry ul {margin: 0 0 25px 10px;}and change it to
.entry ul { margin: 0 0 25px 10px; style-type: none; }Man still nothing, shoot. Is it because it is a plugin? Do I need to change something with that instead of the theme css and php?
Here is the css for the plugin:
.widgets_on_page ul, .widgets_on_page ul li {list-style:none;background:none; style-type: none; } .widgets_on_page ul { style-type: none; list-style:none; }I added the second line and put in style-type: none; on the first line.
So frustrating! Still nothing.
funky. how about changing this to none instead of disk, line 1099:
.entry ul li { list-style: disc inside none; }that fixed it on my screen.
…on your main style.css not the plugin.
Nope still nothing.
I have scoured the net for ways to fix this and nothing. Very odd.
Strange. That should have worked.
you could try
.widgets_on_page ul { list-style: none; }if that doesn’t work I’m out of ideas.
So I got it:
.entry ul li { list-style: none; }I put disc inside none at first, I didn’t read your explanation correctly.
Thanks so much for your help! Really appreciate it.
Cool. Glad you got it worked out.
The topic ‘Dot appearing before widget’ is closed to new replies.