Forums

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

Home Forums CSS Bullets not showing in first column?#$!

  • This topic is empty.
Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #42320
    Crssp
    Participant

    What makes the bullets not show up in the first column in this wordpress theme.
    In either a three column or two column layout, the first column shows no bullets?
    hoping the URL redirect works here.
    The first column of services shows no bullets, at least for me?
    http://crssp.com/i/bullets-gone-berserk

    Any ideas?

    thanks,
    Crssp-ty

    #122623
    TheDoc
    Member

    Your `overflow: hidden;` on `.page-content` is what’s causing them to disappear.

    Instead of using overflow hidden to clear floats, I prefer using the clearfix class method: http://nicolasgallagher.com/micro-clearfix-hack/

    #122629
    wolfcry911
    Participant

    Or, you could restore the default margin or padding that you stripped off of all ul

    .one_third ul {
    margin-left: 20px;
    }

    #122631
    Crssp
    Participant

    Working with a theme, I still don’t see what you mean where to apply the CF class?
    Can overflow hidden be removed somehow if that is the problem.

    Not really understanding the problem here, but I hate to use hack code.
    Tried several things, applying the cf class to the structure items, guess I don’t get it.

    #122632
    Crssp
    Participant

    Thanks wolfcry911, our comments crossed the wires, taking a look at that now.
    I’m at the mercy of the theme designer on this one…
    Not having coded it from scratch.

    #122634
    Crssp
    Participant

    Thanks all!

    #122635
    wolfcry911
    Participant

    right, when I state ‘you’, I don’t necessarily mean you personally, but whomever created the site’s stylesheet… The reset strips the default left margin or left padding that lists typically use to indent (and show the bullets). Doc’s suggestion works as well.

    I think it boils down to whether you want the bullets to lie outside the pages’ left margin or be contained within

    #122636
    Crssp
    Participant

    Actually I think that collapsed one of the three column div’s top example. still issues :/

    #122642
    wolfcry911
    Participant

    .page-content-container ul {
    margin-left: 20px;
    }

    this will place a left margin on all the lists used within the page content container – their bullets will fall inside the page and won’t hang out into the left margin

    #122743
    wolfcry911
    Participant

    Looks okay to me in IE7, 8, and 9

    #124625
    TheDoc
    Member

    In short: you get what you pay for.

    It really is true, especially when it comes to WordPress themes.

    I only see one video on the home page. Where is it supposed to be showing?

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