Archived topic
Bullet points in Footer
6 replies · Started by Markus Kitroschat-Vogt on August 17, 2020
Dear Generatepress-Theme,
In my footer widget I've got the following code:
<ul>
<li><a href="https://www.radtouren-checker.de/99-fahrrad-fragen/">99 Fahrradfragen</a></li>
<li><a href="https://www.radtouren-checker.de/albtaeler-radweg/">Albtäler Radweg</a></li>
</ul>
(See here the footer: https://www.radtouren-checker.de/blog/)
But this code don't show up as bullet points in the widget. Is it possible to show bullet points in any way?
And second question:
- Is it possible to change the space between the lines within the widget?
Kind Regards,
Markus
Hi there,
Try this CSS:
.footer-widgets #custom_html-91.widget ul li {
list-style-type: disc;
padding-bottom: 10px;
}
Adding CSS: https://docs.generatepress.com/article/adding-css/
Let me know if this helps :)
Yes it helps, great.
And how could I change the space between the rows now? I'd like to change it only in the footer and nowhere else on my site...
Oh, I just have to change the padding, right?
Yup the padding-bottom in my CSS should do.
Resolved!
Glad to hear :)