Logo not showing up in responsive mode

I just can’t find why my logo doesn’t come up when browsing www.bankids.cl in responsive mode. Any idea ?

Hi,
The culprit is found on line 140 in your responsive.css

It is the .header-top class which contains the logo

@media only screen and (max-width: 991px) {
	header .header-top {
		display: none;
	}
4 Likes

Hi Ray,

Thanks for the tips, had to ajust some more CSS further down, fine now.

3 Likes

For future reference, notice in the right side pane of the dev tools it shows the CSS for the selected element? Notice that the display: block and height: auto have lines through the rules. This indicates that those are being overwritten somewhere by something. By scrolling that pane you should be able to better figure out what is the cause of the overwrite.

2 Likes

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.