Bullets

Posted in: Newspaper
Post count: 80

Hi, all the bullets in my webstite, including in this page, aren’t properly format. How can I fix this?

Thanks

Post count: 6600

Hi,

I have checked your site and found no lists or bullets there. Please make sure you add your list like this: http://screencast.com/t/4mwnOLNUxWZE and use this custom css and this property to change the list style as you like: http://www.w3schools.com/cssref/pr_list-style-type.asp
Hope this helps!

Thanks

Post count: 80

I did it like you said but the bullets are in front of the text. You can check it here.
This happens every time I use bullets.

Post count: 6600

Hi,

Use this css to fix this: http://screencast.com/t/Mi4oTYjUoIdG
Change the list style as you like.

.page .insideWrapperFull ul, ol {
margin: 0px 0 0px 0;
list-style-type: mongolian;
}

Thanks

Post count: 80

Didn’t fix the problem Lucian =/

Post count: 9544

Did you try starting your ul inside of a new div
or try putting a &nbsp; between your sub head and the first <ul><li>

e.g.,

<h3>My Sub Head</h3>
&nbsp;
<ul>
<li>text</li>
<li>text</li>
</ul>

or

<div>
<ul>
<li>text</li>
<li>text</li>
</ul>
</div>
  • This reply was modified 11 years by simchris.
  • This reply was modified 11 years by simchris.
Post count: 6600

Hi,

Thanks Christopher!

@Pjump
I missed the css, this may be due to a plugin which applys a negative margin to the list, please use this css: http://screencast.com/t/scaoXYNEd

.page #insideWrapperFull ul, ol {
margin: 0px 0 0px 0 !important;
list-style-type: mongolian;
}

Sorry about this!

Thanks

Post count: 80

Thanks Lucian =)

Viewing 8 posts - 1 through 8 (of 8 total)
You must be logged in to reply to this topic.