CSS Changes

Posted in: Newsmag
Post count: 1

How can I change the values of element style like “padding” and “border-radius” of all buttons/titles with a few lines of CSS command (ex: titles of menus, categories, tags, read more, latest articles, editor pics, related articles, more from author, etc.)

Example:

{

padding: 5px 15px;

border-radius: 0px;

}

They will look like more modern.

Post count: 7909

Hi,

Please inspect all buttons and titles using Chrome inspect tool and add classes like this in Theme Panel > Custom Css: http://screencast.com/t/92WJdhy2Mzhttp://screencast.com/t/J684SHs94478http://screencast.com/t/EDeaY1aMmjTS

.td-category a, .td-read-more a, .block-title span, .td-module-image .td-post-category, .td_block_big_grid .td-post-category, input[type=submit]{
padding: 5px 15px !important;
border-radius: 0px !important;
}

Thanks!

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