Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question appears to be off-topic because it lacks sufficient information to diagnose the problem. Describe your problem in more detail or include a minimal example in the question itself.
Closed 8 years ago.
Improve this question
I don't think it's critical since it works. But I was just wondering why sometimes in html it looks like a CssClass doesn't exist, when it does..
and when I run the application all the css data from that class is in place.
This is just an issue with Visual Studio's intellisense, I've come across this a few times myself. I don't think its anything to be concerned with.
Restarting your software, and reopening the application should fix the problem.
However, it might depend on how you're including the stylesheet in your pages. If you are including this programatically, then Visual Studio won't be able to understand this, and therefore won't pick up on the styles in it's intellisense, it just picks up on the styles from StyleSheet's included in the head tag as link elements.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about programming within the scope defined in the help center.
Closed 1 year ago.
Improve this question
In my WP site (using mainly elementor), my developers put all of the Additional CSS in the Appearance-> Additional CSS. Now there is 2230 lines of Additional CSS. Is that normal or a definite issue?
For example if Additional CSS is specific to one page, should I make sure it is only connected to the one page.. ie. if additional css is in "Appearance-> Additional CSS" is that loading for every page in the site, regardless if the code is not related to the page that is opening?
In my opinion it is an issue.
Do you have access to the theme code?
If so,
Best practice would be to add conditional logic to run a stylesheet per page. Frr example:
if(is_page(id)){
wp_enqueue_style()
}
You would need to break up your css in pieces and only run the pieces you need.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I'd like to style web notifications with CSS. In the very least to be able to use background, border and color properties.
Note that I'm talking about actual native web notifications, not alternatives.
For those unaware of what web notifications are you can view the specification here...
http://www.w3.org/TR/notifications/
Notifications cannot be styled, period. They're explicitly meant to be presentation independent. They could be displayed in a thousand different ways; as desktop popup, as in-browser popup, as SMS notification, as line in a log file... you get the idea. You can provide the content of the notification, the presentation is entirely up to the presenting system.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions concerning problems with code you've written must describe the specific problem — and include valid code to reproduce it — in the question itself. See SSCCE.org for guidance.
Closed 9 years ago.
Improve this question
How can I improve the page load on this page? http://designwebs.co.uk/griffiths/news-6/
Basically before the css gets loaded the page doesn't look very pretty.
Any help would be appreciated, thanks.
Some general tips:
Minimize your css.
Combine your css into one file (use a server side utlity).
Same with your javscripts.
And use a preloader. This will display a loading icon until your whole content has been loaded
http://niklausgerber.com/blog/preloadme-a-lightweight-jquery-website-preloader/
When you have a big CSS-File, it takes a while to load it.
Try to use a clean CSS. Some tips are documentet here
A other option is to show the site until everything is loaded. Here you have an easy-to-understand code snip by CSS-Tricks
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 8 years ago.
This question appears to be off-topic because it lacks sufficient information to diagnose the problem. Describe your problem in more detail or include a minimal example in the question itself.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Improve this question
I have a welcome page, which have two buttons- "full" version and simplified. Both will redirect to same page, but depending on which button was "main" page entered through I want to load different CSS file (simplified version will only have background colors, not images). How can it be done? (I'd preffer javascript, html and css).
Attach a parameter to the url: yoururl.com/main.html?full=0
Get the parameter with JS: https://stackoverflow.com/a/8463056/2587420
Load the specific CSS with JS: http://www.javascriptkit.com/javatutors/loadjavascriptcss.shtml
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
for now, i'm using WMD for my site, but lately i've been needing to work on its code, and the supplied code is near impossible to read, due to code obscurity (no tabs, var names such as _1, _2 etc). now, i assume that code has a non-obscured version, but its nowhere to be found. (for example, i need to be able to supply RTL support, and to fix some bugs)
i've found WYMeditor, but thats JQ, and my site works with Mootools (i know they can play nicely together, but thats loosing the light part)
any suggestions?
The stack-overflow team reverse-engineered the WMD code back into non-obfuscated form to make changes; you should email them directly and ask about it - the link's at the bottom of every SO page.