Help moving a margin

Discussion in 'CSS' started by jg123, Jan 28, 2007.

  1. #1
    On my blog TopSportsRumors.com I want to move the left margin over so the videos don't hang-out. I guess I need to move the margin over for the titles and smiley too? Where do I do that?

    thanks in advance!!
     
    jg123, Jan 28, 2007 IP
  2. nicknick

    nicknick Peon

    Messages:
    429
    Likes Received:
    21
    Best Answers:
    0
    Trophy Points:
    0
    #2
    it looks like you need to make your main container wider. It's probably in your CSS.
     
    nicknick, Jan 28, 2007 IP
  3. jg123

    jg123 Notable Member

    Messages:
    6,006
    Likes Received:
    387
    Best Answers:
    0
    Trophy Points:
    295
    #3
    Hehehe, I am a bit of a newbie, I need a little more direction in what to look for.

    thanks
     
    jg123, Jan 28, 2007 IP
  4. audax

    audax Peon

    Messages:
    83
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #4
    The problem isn't your margin; it's your padding.
    For your .content_txt class in your CSS, change it to this:

    .content_txt {
    	padding:5px 35px 10px 12px;
    	width:383px;		
    }
    Code (markup):
    That should give you sufficient padding. If the padding is still off, change the last part of the padding setting (so change 12px to whatever amount works best)
     
    audax, Jan 29, 2007 IP
    jg123 likes this.
  5. jg123

    jg123 Notable Member

    Messages:
    6,006
    Likes Received:
    387
    Best Answers:
    0
    Trophy Points:
    295
    #5
    Thanks a ton!
     
    jg123, Jan 29, 2007 IP