Crownedpride
Crownedpride

Reputation: 21

IE 11 and possibly others have missing features?

I've been working on this website for a very long time now and only now I've noticed a few things that are missing when you use Internet Explorer.

Have a look with me: http://reclameabcshop.nl/

If you visit that website on Internet explorer 11, you'll instantly notice that the cartoon character is blocking 1/3 of the logo. There's also some content missing from the css file, for example the arrows in the navigation, the search icon in the search bar and the right arrow to sign up for our newsletter.

I have no idea how to solve this. Added the following to the header: Tried out: /* IE 11 only */ Tried to put the \9; behind a css code

I hope that this makes sense, if not then please, ask away.

Upvotes: 0

Views: 102

Answers (1)

Crownedpride
Crownedpride

Reputation: 21

@Shikkediel got it!

You could try to target it a bit more specifically, .header > a for example. With such a global selector you were using, many more tags would be affected.

That did the trick for me! A simple .header > a { display: block; } did the trick.

Case solved, thanks for everyone who put their time into helping out.

Upvotes: 2

Related Questions