How do I style a dropdown with only CSS?

Here are three solutions: Solution #1 – appearance: none – with Internet Explorer 10 – 11 workaround (Demo) — To hide the default arrow set appearance: none on the select element, then add your own custom arrow with background-image Browser Support: appearance: none has very good browser support (caniuse) – except for Internet Explorer. We can improve this technique and add … Read more

How can I change an element’s class with JavaScript?

Modern HTML5 Techniques for changing classes Modern browsers have added classList which provides methods to make it easier to manipulate classes without needing a library: Unfortunately, these do not work in Internet Explorer prior to v10, though there is a shim to add support for it to IE8 and IE9, available from this page. It is, though, getting more and … Read more

Can’t fix: ‘og:image’ property should be explicitly provided, even if a value can be inferred from other tags

I have a website that triggers a warning when clicked through a link shared on facebook. The warning says: “Possible problem with this link We have detected that this link: http://www.sjap.online/ may be malicious. To keep your account and device secure, only follow links you trust.” I ran the facebook debug tool and I get … Read more

Error: The requested URL “[no URL]”, is invalid

I finally found some time to contact my webserver provider. I can see that the domain has been removed from the Akamai server. However, the CNAME which was pointing to Akamai server was causing the issue. I have removed the CNAME record. after about half an hour its back up. theres some display issues with … Read more