Hallo,
1. I want to reduce space between block 18 (with one article) and block 15.
2. I would like to reduce the space between categorie and header at style 12,
3 And reduce the space between date, author and the aricle
4. i would like to change the white colour of background at homepage inside articles category and all pages.
i want to be same with BACKGROUND COLOR at general theme colour
My website: www. topnews .gr
Hello amd4ever,
1) If you want to remove the space between these blocks (18->15), you have to use a bit of CSS. Please try the code below and add it in Theme panel->Custom CSS area.
.td_block_18 {
padding-bottom: 0px;
}
.td_block_18 .td_module_mx8 {
padding-bottom: 5px;
}
The result you should see here -> http://screencast.com/t/uAgoAr9POtL
2)I have checked you website and I saw you have a crumb-container without breadcrumbs. Below I gave you a CSS code and I decrease the margin-bottom of this container and the result you should see here -> http://screencast.com/t/DMWuxsZEHkAP
The code is ->
.td-category-header .td-crumb-container {
margin-bottom: 0px;
}
And, if you want to have a smaller space between category and header menu, you have to hide this container with a bit of CSS and increase the padding-top of the category container and the result you should see here -> http://screencast.com/t/PuJpE6Z1
.td-category-header .td-crumb-container {
display:none;
}
.td-category-header{
padding-top: 10px;
}
3) Please try the code below. You can adjust the values until you obtain as you wish.
.td-post-template-12 .td-post-header, .td-post-template-13 .td-post-header {
margin-bottom: 10px;
}
The result -> http://screencast.com/t/wOiTvZCpf
4)If you want to change the background-color for your all site area, please try the code below.
.td-pb-row, .type-post, .td-main-content-wrap, .td-category-header {
background-color:#743636;
}
The result you should see here -> http://screencast.com/t/Ohz1UeSIW6
Hope this helps and let us know how it goes!
If is not what you mean, please provide more details. Screenshots will be more useful.
Thank you for the message!
Hello amd4ever,
Please try the code below and add it int Theme panel->Custom CSS area
.td-main-page-wrap {
padding-top: 5px;
}
.wpb_raw_code {
margin-bottom: 0px;
}
.wpb_column p{
margin-bottom: 0px;
}
The result -> http://screencast.com/t/b4phYH95v
For footer section, please try the code below and add it int Theme panel->Custom CSS area.
The code is ->
.type-post, .td-main-content-wrap, .td-category-header {
background-color:#743636;
}
The result you should see here -> http://screencast.com/t/RERzz2d72bf
Hope this helps and let us know how it goes!
If is not what you mean, please provide more details and some screenshots with your desired modification would be more useful for my understanding.
Thank you for the message!
Hi,
You can try this custom css in Theme Panel > Custom Css and see how it works, of course adjust it like you wish:
.td-post-template-12 .td-post-header .td-a-rec > div {
margin-bottom: 0;
margin-top: 0;
}
.td-post-template-12 .td-post-header .td-post-title {
margin-top: 0;
}
If doesn’t work please be more specific and provide some screenshots.
Thanks!