• Why are bullets now showing up on smbresearch.net/blog? I have been looking at my CSS for hours looking for the problem, and have looked through this forum, and W3Schools for some clue. I am overlooking something obvious, I am sure…I am not looking to do anythign very exotic: squared for ul, digital for ol, line spacing at 1.3, with perhaps a 20px margin on the left unless that will screw up how it looks in other browsers. Could someone tell me where the problem is? Thanks much!

Viewing 5 replies - 1 through 5 (of 5 total)
  • Why are bullets now showing up on smbresearch.net/blog?

    Which parts of the site are you referring to? Is it the site as a whole.

    I am not looking to do anythign very exotic: squared for ul, digital for ol

    If you’re looking to control the site’s bullet style, you’re looking for the “list-style-type” CSS property.

    by the way, I am not sure you mean by “digital for ol”…

    Thread Starter bxm3443blog

    (@bxm3443blog)

    Well, I mean the content area – my posts. Lok at the “Test” post for example. I have those items as a ul. And Yes you’re right I did not mean digital, I meant decimaal for the ol.

    Add the following to your style.css:

    .post ul, .post ul li{list-style-type: square !important;}

    As for ordered lists:

    .post ol, .post ol li{list-style-type: decimal !important;}
    Thread Starter bxm3443blog

    (@bxm3443blog)

    Geraldyeo – That worked. Bless you. Now just one last detail, if I want to increase the line size to say 1.2 or 1.3em, how would I intergate that into these line codes? Thank you very much!!!

    Just add the line-height property to the code from my previous post…

    https://www.w3schools.com/css/pr_dim_line-height.asp

    i.e.

    .post ul, .post ul li{list-style-type: square !important; line-height: 1.3em;}
Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Bullets now showing up’ is closed to new replies.