Help with Stylesheet

Discussion in 'CSS' started by vinny, Aug 11, 2009.

  1. #1
    I'm having a hard time with altering a wordpress theme.

    you can see a preview of the theme here What im trying to do is change the size of the homepage image which is currently 200x200px to 300x200.

    the code that the author provided was

    ”.post_left img”

    can someone help me?

    Thanks
     
    vinny, Aug 11, 2009 IP
  2. My220x

    My220x Member

    Messages:
    624
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    35
    #2
    Well you would need to resize the image itself.
     
    My220x, Aug 11, 2009 IP
  3. vinny

    vinny Peon

    Messages:
    268
    Likes Received:
    15
    Best Answers:
    0
    Trophy Points:
    0
    #3
    i have no problem resizing the image, but the area only allows a 200 x 200 image size, im trying to increase it to a 300 x 200
     
    vinny, Aug 11, 2009 IP
  4. Astroman

    Astroman Well-Known Member

    Messages:
    2,355
    Likes Received:
    71
    Best Answers:
    0
    Trophy Points:
    135
    #4
    Astroman, Aug 11, 2009 IP
  5. vinny

    vinny Peon

    Messages:
    268
    Likes Received:
    15
    Best Answers:
    0
    Trophy Points:
    0
    #5
    yea, the thing is i dont know where to add that code to the current style sheet. do you have any suggestions on where to begin?
     
    vinny, Aug 11, 2009 IP
  6. Astroman

    Astroman Well-Known Member

    Messages:
    2,355
    Likes Received:
    71
    Best Answers:
    0
    Trophy Points:
    135
    #6
    .post_left {
    float: left;
    width: 200px;
    overflow: hidden;
    margin-right: 10px;
    }

    .post_right {
    float: right;
    width: 410px;
    }
     
    Astroman, Aug 11, 2009 IP
  7. vinny

    vinny Peon

    Messages:
    268
    Likes Received:
    15
    Best Answers:
    0
    Trophy Points:
    0
    #7
    fixed...thanks!
     
    vinny, Aug 11, 2009 IP
  8. Astroman

    Astroman Well-Known Member

    Messages:
    2,355
    Likes Received:
    71
    Best Answers:
    0
    Trophy Points:
    135
    #8
    Cool, nice one. :)
     
    Astroman, Aug 11, 2009 IP