Archived topic
Join Us Button in Footer 3 widget
7 replies · Started by Nitin on September 26, 2020
I want to have a Join Our Facebook Group button in Footer 3 Widget. How can I do this?
Hi there,
You can use HTML widget with something like this as the content:
https://docs.generatepress.com/article/adding-buttons/
Thank You, Leo.
One more doubt, how to add bullets in the widget content? I've tried "List" but it appears without any bullets.
Hi there,
use a HTML Widget to add your list, giving the parent UL a custom class like so:
<ul class="styled-list">
<li>list item</li>
<li>list item</li>
<li>list item</li>
</ul>
Now you can style that specific list(s) with this CSS:
ul.styled-list li {
list-style-type: disc;
}
How can I use it in the sidebar widget to show the latest posts with bullets (list)?
Can you open a new topic for the new question?
Thanks :)
sure, thank you for the quick response.
No problem :)