Position text and image

Hello People

I need a little help about css, I can not set the position of a text and an image.
Anyone know help me? I’ve tried everything and failed.

Website:

https://dl.dropboxusercontent.com/u/3504390/link.txt

I want this result:

https://dl.dropboxusercontent.com/u/3504390/image.png

Thanks!

New update. When i vote, the stars move, anyone know why?

Thanks

Hi,

The structure is a little awkward as you are targeting all spans within .info and so you have duplicate rules hitting the nested spans.

It would have been better to use a class for the original rules to avoid such issues. (Note that you are not allowed to wrap block level elements in a span anyway and some of your spans would have been more semantic as block elements anyway.)

You can try something like this but a little re-structuring would make it easier to filetr out unwanted rules.


.full-news .info .rating{margin-right:0}
.num-votes{
width:auto!important;
margin-left:0!important;
}
.num-votes span{
padding-left:0!important;
margin-right:5px!important;
}

I agree with you when you say “The structure is a little awkward”. But, i can’t do nothing. :expressionless:

Thanks for the help