Mobile app version of vmapp.org
Login or Join
Harper822

: Custom per domain CSS in Internet Explorer We have an old web app, which would be much more usable if it could be visually tweaked a bit. Being in a corporate environment - IE (always using

@Harper822

Posted in: #Css #InternetExplorer

We have an old web app, which would be much more usable if it could be visually tweaked a bit. Being in a corporate environment - IE (always using the latest version) is all I can use. Also app in question being 3rd-party - there's no way to change it's own CSS files.

Is there a way to use per domain injected custom CSS in internet Explorer.

Let's say I want to change the background-color of domain oldapp.localintranet/ - is there any way to make this happen?


Place to put a custom.css-file?
With an add-on/extension?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Harper822

1 Comments

Sorted by latest first Latest Oldest Best

 

@Annie201

Do you have access to the application files? If so you can place a custom.css file after the last .css file in the header. CSS cascades and the last CSS styles/classes are ones which take effect most times. !important may be needed to override any inline styled elements or possibly some ID's.

You can override CSS for IE browsers only using condotional comments more on that here www.quirksmode.org/css/condcom.html
If you do not have access to the CSS files, you would need to use an add-on in the browser which would load your custom.css when you browsed oldapp.localintranet/ But then you'd have to account for some people using Firefox and Chrome.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme