There will be no more development for Atahualpa (or any other theme), and no support. Also no new registrations. I turned off the donation system. I may turn the forum to read only if it gets abused for spam. Unfortunately I have no time for the forum or the themes. Thanks a lot to the people who helped in all these years, especially Larry and of course: Paul. Take care and stay healthy -- Flynn, Atahualpa developer, Sep 2021
I've tried a few things in CSS Insert option but nothing works. Am a newbie creating my first site.
See www.nekhabitat.org About Us page for an example - need more white space between those bullets. Thanks for any help.
#2
Mar 7, 2011, 06:05 PM
lmilesw
10,176 posts · Jul 2009
Central New York State USA
To put more space after all list items add the following to ATO>Add HTML/CSS Inserts>CSS Inserts and adjust accordingly
HTML Code:
li {
margin-bottom: 10px;
}
__________________ ~Larry (CNY Web Designs)
This site should be a membership site since it so full of good stuff.
Please consider donating which gives you access to even more good stuff.
Edit your post and using the HTML editor, find your list - it begis as
HTML Code:
<ul>
and change it to
HTML Code:
<ul class="hfh_post_list">
then add this to the CSS Inserts
HTML Code:
.hfh_post_list li {padding-top:10px;}
you can play with the number to make it what you want.
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
#4
Mar 8, 2011, 02:24 PM
bda
30 posts · Feb 2011
Thanks. Worked like a charm. In the future, if I want to find out what the class is - is there some magic way of doing that?