Bullet Points
-
I’m having trouble creating bullet points. Can someone point me in the right direction? The code I’ve added to CSS doesn’t seem to work.
The blog I need help with is: (visible only to logged in users)
-
In your custom CSS you currently have:
ul,ol {list-style-type:none;}which will stop all bullet points from showing on lists in your main posts and in your sidebar. If you want normal bullet points to appear for lists in your blog posts and leave the sidebar as it is then you want to add something like:
#content ul, #content ol {list-style-type:disc;}lh
-
-
For some reason, the bullet points are displaying differently. Look at this: http://terrellclemmons.wordpress.com/2010/06/23/christian-america/
See how the second line of text under a number isn’t indented? Does anyone know why? Did something change with WordPress? or do I need to do something different? I haven’t changed themes.
-
Are you saying that the theme used to display lists where the text after the numbers/bullets was aligned vertically as opposed to just having the first line indented? If this is the case you’ll beed to contact wordpress staff directly and ask what has happened. If you’re looking for CSS help on changing the current display then you could add the code below to your stylesheet. It will require the paid CSS upgrade:
.post .content ul li, .post .content ol li { list-style-position:outside; margin-left:20px; padding-left:0;}lh
- The topic ‘Bullet Points’ is closed to new replies.