Bullet Lists
-
I am unable to get bullets to appear on my pages. They display in the edit page but are not displaying in the published page. I have tried the other posts on this same topic and am unable to get them to display.
Any suggestions?
Thank you for your time
-
What page are you asking about? Are you able to post a link to the page in question?
What steps have you taken in order to resolve this?
It is very possible that the stylesheet isn’t being loaded properly or it is missing styling in general.
http://www.clinicalcohesion.com/what-is-clinical-cohesion/
All of those indented should be bullet’s.
I fount the RTL stylesheet (rtl.css) and the code for lists reads:
/* =Lists -------------------------------------------------------------- */ ol, ul { margin-right: 2.35em; }I have entered in code in this to say circle, disc, etc and its not doing it for me.
Idk where to go next?
Thank you for your time
Taking a quick look at the markup shows me that it is being styled by:
ol, ul { list-style: none; margin: 0 1.5em 1.5em 0; padding-left: 2em; }That is from the style.min.css stylesheet. That is from the
core/cssfolder. Looking a little closer it appears you are not using a child theme? I’m not too familiar with the theme but if it has a custom CSS section you can use the above code to change thelist-styleto what you would like. If not you can add it to your child theme’sstyle.cssfile.The
rtl.cssis used for right-to-left styling which is not currently being used by your site. It is loaded for languages that are read rtl. 🙂Any further questions, feel free to ask. 🙂
This still did not work:
Here is the CSS code:(ANY MORE IDEAS?)
Thank you
[Moderated]The CSS is already available to us from your website, you don’t need to post it here. Who’s going to read a thousand lines of CSS anyway.
So, where did you add Jose’s code modifications?
Sorry about that, didn’t know you had access to it.
I added them at the bottom originally and saved it and cleared cache and still did not get bullets to appear.
Is there a specific location to paste it?
To the bottom of what?
The CSS
add something like this via a custom CSS plugin or to style.css of a child theme:
#content ul { list-style-type: disc; }generally review http://www.w3schools.com/css/css_list.asp
To which?
I’m not too familiar with the theme but if it has a custom CSS section you can use the above code to change the list-style to what you would like. If not you can add it to your child theme’s style.css file.
#content ul { list-style-type: disc; }
made the bullets appear, is there anyway to do multiple styles?
on the edit page I have discs and then indented again to white discs.
Thanks for your time. Sorry I am a rookie
yes is there a way..
you can use class..
example
<ul class="style1"> <li>...</li> <li> <ul class="style2"> <li>...</li> <li>...</li> <li>...</li> </ul> </li> <li>...</li> <li>...</li> </ul> then on your CSS code you can have .style1{your style code here!!!} .style2{your style code here!!!}how do I set the styles?
On my first page the bullets are still not showing up. Any thoughts?
The topic ‘Bullet Lists’ is closed to new replies.