Hi,
Please also send your site’s URL I need to inspect this so I can provide a solution for this. Please also make sure that this isn’t happening due to some custom css or some other plugins which you use so deactivate all plugins and check again.
Please let me know!
Thanks
tiny.cc/tagdiv
@import url("../mydr/style.css");
.footer-text-wrap {
color: #444;
}
.td-footer-container a {
color: #444;
}
.td-footer-container .block-title > a, .td-footer-container .block-title > span {
background-color: #3967c1;
color: #fff;
}
.widgettitle {
background-color: #3967c1;
}
This is all code I have put in style.css of child theme, because I was not able to set these things in the theme options panel
Hi,
You can see here that the padding for this span tags are the same: http://screencast.com/t/tQDCHMQbahct
the issue appears when you set this top margin to 0: http://screencast.com/t/JwHULeG29r5n and if you remove it like I did in the screen then the title look better so I suggest you leave that margin as it is and remove the padding form the top of the container if you want to remove the white space, like this: http://screencast.com/t/VMQgKEpS
Use this css for that:
.td-footer-container .widget .block-title {
margin-top: 21px;
}
.td-footer-container {
padding: 10px 0px 10px 0px;
}
The border is added at the top of blocks, in your case the border isn’t there because you use a slide there and the slider doesn’t contains a border at top of it, you can use this custom css and add a border at the bottom of block 1, like this: http://screencast.com/t/5bD7mZkUy
Thanks
Hi,
That comes from the block container, you remove it or reduce via css, like this: http://screencast.com/t/ZYR1sCRWB
.td_block_1{
padding-top: 0px;
]
Thanks



