Forums

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

Home Forums CSS [Solved ]How To: Centering DIV Within Footer Widget

  • This topic is empty.
Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #173196
    minterdewitt
    Participant

    Okay, so this is more of a CSS issue than JavaScript, but I need to center the counter within the widget. This is what I have for the CSS side:

    /* COUNTER */
    
        #counter {
            font-size: 4em;
            display: block;
            margin: 0 auto;
            width: 100%;
        }
    

    And it’s not centering the content. Yes, I could put a margin that’s half the width of the counter, but that width will change every time the counter changes, so I need to do it programmatically. Once I do this, I’ll be finished with this damn counter! Here‘s the website and it’s located in the first footer widget.

    #173198
    shaneisme
    Participant

    You’re trying to center something that’s 100% width, it has no room to center.

    If you’re trying to center text within a block-level element, simply use text-align: center.

    A <div> is display: block by default, so that’s not necessary. An element that is display: block is also width: 100% by default…

    This should be all you need:

    #counter {
      font-size: 4em;
      text-align: center;
    }
    
    #173201
    minterdewitt
    Participant

    That indeed worked. Sigh. Sometimes I feel like a total idiot at all this. Thank you muchly!

    #173202
    shaneisme
    Participant

    Don’t worry man, I’ve been doing this since the mid-90’s and even I still make day 1 mistakes.

    #173203
    minterdewitt
    Participant

    Haha! Yeah, @TheDoc has helped me out numerous times when I’ve made a silly mistake.

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