Link Library has its own stylesheet that gets loaded after the site stylesheet. You can see it by looking at the Stylesheet editor under the Link Library menu.
To hide the bullets, you can add the following rule to your site stylesheet or the Link Library stylesheet:
.linklist li {
list-style: none !important;
}
Let me know if this works. Please consider donating to support this plugin’s development.
Hi Yannick,
I could remove the bullet, but I also want to allign the links to the left. What this did, was only remove the bullet, not the extra spaces.
Any idea about why the boxes don’t work?
Regards and thanks!
Rob.
The margin is programmed somewhere in your theme. Is the page live where I could see it? That would allow me to tell you exactly what to change in the stylesheet to get the desired results.
You can have a look at: http://www.overzicht.nu
Eventually we would like to page to look like: http://www.startpagina.nl
Is this possible?
Ok, you can remote the gap from your theme’s style.css. If you go to line 1088, you will see that the theme applies padding to unordered lists:
#left-area ul, .entry-content ul, .comment-content ul, body.et-pb-preview #main-content .container ul {
padding: 0 0 23px 16px;
line-height: 26px;
list-style-type: disc;
}
A quick fix could be to just remove .entry-content ul from this styling rule, but this would affect all bullet lists on the site.
An alternative would be to add a rule like this:
.linklist ul {
padding: 0 !important;
}
Let me know if this works and please consider donating to support this plugin’s development.
Yes, this worked!
Thanks for the quick support.
Rob.