How come my bullets(ordered list, unordered list)are showing up on the edit pages but not on the published pages?
What do I need to do to get them to appear?
please have a look narottamseo.com/directory-submission
Any help?
Thanks!
How come my bullets(ordered list, unordered list)are showing up on the edit pages but not on the published pages?
What do I need to do to get them to appear?
please have a look narottamseo.com/directory-submission
Any help?
Thanks!
Because of this in your theme's style.css file:
li {
display: inline;
list-style-type: none;
margin: 0;
padding: 0;
}Hi esmi,
Thank you for your help. can you/any one please tell me what code i have to write deleting this code
li {
display: inline;
list-style-type: none;
margin: 0;
padding: 0;
}
please write down the right code if possible.
Thanks
any help??
you might need to remove the 'display: inline;' from the li style, and add two more lines;
example:
li{ padding:0;
margin:0;
list-style-type:none;
}
#middle ul li { margin-left:20px; list-style-type: square; }
#middle ol li { list-style-type: decimal; }
made specific for lists in the middle column to not interfere with the sidebars.
hi alchymyth,
That's really work. thank you for your kind help.
You must log in to post.