smg32011
Member
Posted 1 year ago #
I am having issues with bullet alignment (seen at the bottom of this page: http://www.gunnisontrails.com) - they are aligning outside of the text. I am assuming that the issue lies within this (in the style.css file):
.entry ul li {
list-style-type: circle;
list-style-position: inside;
margin-left: 200px;
padding-left: 100px;
}
I have altered and tried to manipulate, but to no avail. Any help would be greatly appreciated...
Um... I can't find that particular piece of CSS being used on your site's Home page. It doesn't use the .entry class. Try adding:
#central ul li {list-style-position: inside;}
to the bottom of style.css.
smg32011
Member
Posted 1 year ago #
Ahh thank you. I did assume incorrectly!
Next question...how do I get the second line of text to align directly underneath the first line of text (only), as opposed to directly underneath the bullet?
Thanks in advance
Ah - slight change. Try:
#central ul li {
list-style-position: outside;
margin-left: 15px;
}
instead.
smg32011
Member
Posted 1 year ago #