Forums

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

Home Forums CSS Items positioning problem – please experts help me

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

    hi all , i am new to css tricks , i am here bcoz i got stuck in one of my blog design,,,give it a look http://jesica89.blogspot.com/ the problem is — the post description is appearing after the thumbnail but i need it on the right of thumbnail ,,, please experts help me

    #82667
    Moofin
    Participant

    You need to float your thumbnail to the left using the style:

    float:left;
    #82670
    raman2572
    Participant

    hey , it works , i didnot know it was so simple ,,, thanx a lot

    #82671
    raman2572
    Participant

    but still one more question in my mind , i am just unable to increase padding between image and description

    #82672
    Moofin
    Participant

    on the thumbnail you could add the style :)

    margin-right:15px;
    #82673
    raman2572
    Participant

    i tried but its not working

    #82674
    TheDoc
    Member

    You have:

    #contentLeft img, #contentLeft a img {
    padding: 0;
    margin: 0;
    float: left;
    }

    You need to have:

    #contentLeft img, #contentLeft a img {
    padding: 0;
    margin: 0 15px 0 0;
    float: left;
    }
    #82675
    raman2572
    Participant

    oh thanx again ….its working

    #82676
    Moofin
    Participant

    The problem that you will have is every time you add an image inside your post (that isnt a featured image) it will still float it to the left. It would be best to put your featured image in a div and give it an ID so you can call it in your CSS.

    #82677
    raman2572
    Participant

    now that is a big problem ,, just rookie about this ,,, can you tell me how to do this

    #82678
    raman2572
    Participant

    i would be very thankful to u for this

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