I am using views and fivestar. I have built a view where I would like the "add comments" link to appear to the right of the fivestar widget. Can I do that in CSS? If so how? If not, do you know how I can do it.

Below is a link to the site so you can see what I'm talking about, there is a video on autoload, so turn your speakers down if you are at work ;)

http://miraquepasa.com/

Comments

gausarts’s picture

Try floating the views-field-value:

.view-video .views-field-value{float:left;margin-right:10px;}

love, light n laughter

neobodhi’s picture

Well that was easy!!! Thank YOU!

gausarts’s picture

Yes. Use firebug to DIY :)

love, light n laughter

neobodhi’s picture

This is odd. your fix worked on the front page but not on the other page,

http://miraquepasa.com/videos-de-humor

I can't figure it out the same css is being called. Anyone have any ideas?

gausarts’s picture

You have .view-Humor now. Try removing .view-video then. If you want to apply the same thing to whole view. Otherwise specify the view name explicitly to play safe.

.view-video .views-field-value, .view-Humor .views-field-value{float:left;margin-right:10px;}

I used the view name just in case you have different view with different style, so it would not interfere to all. Make sure to have firebug handy.

love, light n laughter

neobodhi’s picture

That worked, I will look into firebug, thanks!!!!

saltcod’s picture

You NEED Firebug. but also, you can rewrite the output of Views to suit your needs.