No border and footer widget heading problem

Posted in: Newsmag
Post count: 62

I got 2 issues, could anyone help me?

1. The blocks are using different rows, but still no correct borders:

2. Heading text background in footer menu’s is not like it should be:

Detailed look:

Post count: 6600

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

Post count: 62

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

Post count: 6600

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

Post count: 62

How can I get rid of this border, because it looks ugly:

tiny.cc/tagdiv

Post count: 6600

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

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