How can i change the look of block titles to the same as this site?
Instead of that small blocks?
Hi
This block titles are made with Newspaper theme and are not available on Newsmag, but can be done with custom css:
.block-title{
display: block;
font-size: 14px;
border-bottom: 2px solid #222222;
margin-right: 20px!important;
}
.block-title > span{
top:0;
padding: 7px 12px 4px 12px;
border-radius: 0;
}
The result should be like here: http://screencast.com/t/sTmFBI2k6NUd
Thanks!
Thanx a lot!
I got 2 more issues:
– How can i change the color of the title blocks in the post sidebar? Cant find it in the theme panel.
– And i changed the logo header size cause it was alligned to much to the right but everytime i open a new page it will resize before it get back oke. Check http://www.tenniswedtips.nl
Thanx guys!
Hi
The color title for blocks can be changed from Visual Composer like here: http://screencast.com/t/eFObLjpBhldY
That delay appear because first time loads the main css from the theme, then the css. To avoid it you can insert your custom css in style.css file: http://screencast.com/t/kPT8IAoa
Thanks!
Hi,
I understand how i can change block colors in Visual Composer but you cant change the block colors for the blog sidebar and the footer blocks by visual composer. That is my question:)
Hi
The widgets color from sidebar can be modified from Appearance > Widgets http://screencast.com/t/9Jxa7zmyW and the footer widgets color can be changed from theme panel > theme colors > footer: http://screencast.com/t/gU982eVE7M
Please let me know if this is not what you mean and provide more specific details.
Thanks!
The widget header is not available for every item:
I only got 1 option in the footer panel:
Hi,
For the predefined footer section blocks you can use custom css like this: http://screencast.com/t/suycxe31kNe
.td-footer-container .block-title > a, .td-footer-container .block-title > span {
background-color: #882d28;
color: #ffffff;
}
The wp standard widgets title you can also use custom css:
.widget_recent_entries .block-title > a, .widget_recent_entries .block-title > span, .widget_pages .block-title > a, .widget_pages .block-title > span{
background-color: #882d28;
}
Let us know how it goes!
Thanks
Yes this works only the social counter header will now be black forever what ever you try haha
Hi,
I’m not sure how that happened as I don’t see it overwritten here: http://screencast.com/t/lyh4temBOW so please make sure you have its header background color set: http://screencast.com/t/LQBwhxWQ or use custom css to change it: http://screencast.com/t/UmUeghsbA
.td_block_social_counter .block-title > span {
background-color: #882d28;
}
Thanks