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.
Related
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
The topic is about system fonts. what is the purpose of setting button {font:caption;}? system-fonts
The question asks what is the purpose of setting button {font:caption;}
The system the user is on (normally a browser like Chrome or Safari together with their device's operating system and related storage) will itself have styles for various different items.
In this case the question is about 'caption' - when used as font:caption as above it is saying to the browser when you see a button element in my HTML please use the same font that you would use to show a button.
This means you can have a website which blends in with the look that the user is used to - buttons (and other things depending on what else you set) will look the same as system ones - in this case at least as far as the font goes.
See https://developer.mozilla.org/en-US/docs/Web/CSS/font for information on what other in-built system formatting can be used.
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.
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.
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 8 years ago.
Improve this question
I have a handler that needs to read the content of a CSS file, and then output the content minified.
So thats why I'm looking for a minifier that would work as a REST api, so I can send content, and get back the response to output this content to the user.
Something like the Closure compiler REST service, but for CSS.
Check this (http://reducisaurus.appspot.com/css?url=YOUR_CSS_FILE_URL). Not actually a web service, but very close. Googlecode
Check this website - http://cssminifier.com/
They offer an API to use with POST requests
Check out http://cnvyr.io - also has bundling and image thumbnailing etc
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.