how to download an imported style sheet from a website? [closed] - css

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I often need to use some styles from a website but i cant find those style sheets since it is linked using an import function. can anyone say how to download/view those imported style sheets.

Here is what you can do. Depending on which browser you use you can activate developer tools in the settings. You can then right klick on a part of the website you want to have the styles from and often times it says something like "inspect element" in the menu. You will then be able to view the styles that are applied to this specific element or webpage and you will also be able to copy those to the clipboard.
I actually hope this will be of help to you.
https://developers.google.com/chrome-developer-tools/

Related

Multiple CSS loading in a single page after I added a Router [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 days ago.
Improve this question
So... My pages were all done. Everything and every CSS running smoothly... And then I added my routes. Apparently my main route "/" managed to load every css file from my routes and now Im not sure what to do?
I looked it up and found some people talking about absolute pathing my styles. Didn't really work thou... Also tried to inspect and make sure nothing was overwriting my styles... I'm using reactjs. You guys have some tip for me?

Why there is no change on my web when I edit css? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
I have a weird question. I dont know what is happening but I am working on my web. I am using Filezilla. Css stopped working - no change in code is displaying. I tried to delete all files from Filezilla and upload it again and it was working. After a while it happened again and few times more as I tried the same. I know that the css file I am using is the right one but I dont know why there is no change visible? When I change html it is working but no css. Thanks for your help.
(I am also using subdirectory if there might be some problem?)
As panther answered, it is probably because the old css file is loaded from cache instead of the new file. You can bypass this by pressing the ctrl key and f5.
It can be css path mismatch.You can see website console error where explain everything.

How to apply CSS to external iframe? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I have been taught that one can not apply CSS to cross origin iframes, but I have found that Stylebot applies CSS to iframes successfully with no problem at all.
How is this possible?
Is there any chance I can do the same in my website?
You can't apply custom CSS to cross-origin iframe ( you can only if you have direct access to the both servers )
But..
Extensions can avoid those rules because files in extensions have different policy rules. So basically you can add a JavaScript file to each and every page or iframe. And from there you can basically do anything. And this JavaScript file that was injected by your extension will never be blocked. Each and every browser has its own API, about Chrome's way of doing things you can read here :
https://developer.chrome.com/extensions/content_scripts
About extensions you can read here:
https://developer.chrome.com/extensions/getstarted

Using (parts of) Wordpress Themes in xpages [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
Not sure if this is a stupid question or not,
but i want to create a better looking notes database which should remind users of our companys homepage.
Is it possible to use codes extracts of the wordpress themes css code?!
It might be easier to start with the Bootstrap4 XPages plugin on openNTF and then work to skin that.
As long as CSS stylesheets don't reference by element ID, it's possible to utilise elements. However, bear in mind that parts of the CSS stylesheets you're using may get overwritten by inline styles or stylesheets from the XPages runtime itself. In my experience, you will usually need to make some modifications to the stylesheets your using, but it's doable.

Conflict with classes names in css files [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
I need to integrate two projects based on HTML and raw CSS. I noticed conflict with classes name in css files.
I can change my files by hand but it seems to be not the best solution.
Can I do it automaticly?
I am using phpStorm, is there option for doing this?
Thanks for any help.
Not sure about phpStorm, but all editors should have a "Find and Replace" option, you could use that to change all occurrences of your conflicting classe...
If you have classes, from another file you can use the "Find and replace all" funcion, and change the names, that way you won't have to do it 100% manually, you can also place the "correct file" under the other css in HTML, and it will then use the "correct class" unless !important are used in the other css.

Resources