Featured Thumbs Styling

Posted in: Newspaper
Post count: 57

Is there a way to add border-radius css property to featured thumbnails, so that thumbs both on homepage (categories, tags) and sidebars looked a bit rounded?

I am using layout like this:
https://scontent-b-fra.xx.fbcdn.net/hphotos-ash4/t31.0-8/10259090_435564046587387_2610082451814695024_o.jpg

Post count: 854

hi,
use this css:

.wpb_row.row-fluid div.thumb-wrap a img {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;  
}

here: http://screencast.com/t/R5nldZZgdxhQ

Thanks for you message.
Radu A.

Post count: 57

Thanks! Awesome!

Post count: 2

How can i do it for all besides sliders

Post count: 6600

Hi,

Please add this css in Theme Panel > Custom CSS:

.wpb_row.row-fluid div.thumb-wrap a img {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;  
}

.wpb_row.row-fluid .iosSlider div.thumb-wrap a img {
-webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;  
}

Thanks

Viewing 5 posts - 1 through 5 (of 5 total)
You must be logged in to reply to this topic.