Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS override style none

  • This topic is empty.
Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #43194
    johnjf
    Member

    I’m trying to edit a css file and when I look on firebug it shows in the list-style there’s none. I’m trying to add square bullets to it but they wont show up due to “none” appearing. I’m not sure where it’s appearing from also.

    Is there a way to override it?

    #127224
    johnjf
    Member
    #127226
    Paulie_D
    Member

    #content ol {
    float: left;
    list-style: none;
    }

    Line 623

    #127246
    johnjf
    Member

    I removed it and none is still appearing from I’m not sure where.

    #127248
    wolfcry911
    Participant

    line 554 of styles.css

    #content .entry-content ol {
    list-style: decimal-leading-zero outside none;
    }

    #127249
    johnjf
    Member

    When I go into the css file it appears like so

    #content .entry-content ol {
    list-style: dcimal-leading-zero;
    }

    But like you posted above, when I view it in firebug I’m not sure where this extra stuff is coming from in the css(outside none;).

    I looked through the css and I can’t see any other styles with ol

    #127254
    wolfcry911
    Participant

    right you are – my mistake. I took Firebug too literally. At any rate, it’s not showing because it’s defaulting to outside and you have no left margin or padding.

    if you want to add a square bullet, why use an ol and not a ul?

    #127255
    johnjf
    Member

    my god! something so simple and I couldn’t figure that out lol. Man do I ever hate when that happens.

    Thank you so much :D my brain needs a rest after that.

    #127274
    mansi
    Member

    hello

Viewing 9 posts - 1 through 9 (of 9 total)
  • The forum ‘CSS’ is closed to new topics and replies.