CSS Text Align Right Next To An Image

Discussion in 'CSS' started by pacmanstyle, Dec 9, 2010.

  1. #1
    Hello,please someone help me with this problem ...

    I want to have the text aligned vertically on the right and the picture on the left...

    Here is my site: http://idiotduck.com/

    I want to align text on sidebar at Monthly Most Popular section.

    Thanks!
     
    pacmanstyle, Dec 9, 2010 IP
  2. CSM

    CSM Active Member

    Messages:
    1,047
    Likes Received:
    25
    Best Answers:
    0
    Trophy Points:
    55
    #2
    If it's dynamically generated (wordpress or any cms) the widget's code (if a widget) has to be changed and the css too...
     
    CSM, Dec 9, 2010 IP
  3. pacmanstyle

    pacmanstyle Well-Known Member

    Messages:
    83
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    113
    #3
    Thanks for the fast reply CSM,I have a plugin called WP Popular Post and I am using timbthumb script. I think this can be done using css,here is the css code :

    .widgetarea {
    background: #FFFFFF url(images/sidebartop.gif) top no-repeat;
    float: left;
    width: 300px;
    margin: 10px 0px 10px 0px;
    padding: 10px;
    border: 0px solid #DDDDDD;
    font-size: 10px;
    font-family: Tahoma;
    font-weight: bold;
    text-transform: uppercase;

    }

    I think here I need to adjust the text,please if someone knows I will be very glad!
     
    pacmanstyle, Dec 9, 2010 IP
  4. CSM

    CSM Active Member

    Messages:
    1,047
    Likes Received:
    25
    Best Answers:
    0
    Trophy Points:
    55
    #4
    .wpp-post-title is the key

    I have tested with the following CSS:

    
    .wpp-post-title {
    float:right;
    width:120px;
    }
    
    Code (markup):
    in Firebug... looked OK to me.

    Good luck :)
     
    CSM, Dec 9, 2010 IP
  5. pacmanstyle

    pacmanstyle Well-Known Member

    Messages:
    83
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    113
    #5
    Thank you very much CSM,god bless you!
     
    pacmanstyle, Dec 10, 2010 IP