3
votes
10answers
2k views
CSS / JavaScript Navigation Menu on top of Flash in Firefox
My site has a drop-down menu built in CSS and JavaScript that drops down over a Flash animation. In IE (6&7) the drop-down menus drop over the Flash animation, however, in Firefox (2&3) the …
1
vote
2answers
1k views
css div overflow and dynamic horizontal size
I have a web page that shows lots of tabular data and each of these tables needs to be placed on one horizontal line. I have mocked up an example below:
<html>
<style>
.outer
{
…
1
vote
3answers
139 views
CSS rule for attribute + sibling in DOM
What I have is a form with one fieldset containing several other fieldsets. For each fieldset, the user can check a box next to the legend and expand that fieldset (in theory, at least). I was …
2
votes
2answers
217 views
XAMPP Mod_Rewrite & dynamic CSS
I'm running Apache on my local computer (mac) with Mod_Rewite enabled and Allowoveride All set in XAMPP's httpd.conf file.
These are my rules, snippet of httpd.conf file -
RewriteEngine On
…
0
votes
1answer
1k views
Capturing Print Event via jQuery
I would like to be able to manipulate the DOM just before my page is sent to be printed. Internet Explorer has an event on the window object called "onbeforeprint" but this is proprietary and isn't …
0
votes
2answers
528 views
ASP.net drop down dynamically styling and then remembering the styles on aborted submit
So, I've got an ASP drop down list (this is .net 2.0). I'm binding it with data. Basically, when the page loads and it's not a post back we'll fetch record data, bind all the drop downs, and set …
1
vote
4answers
2k views
Reference app relative virtual paths in .css file
Assume I have an "images" folder directory under the root of my application. How can I, from within a .css file, reference an image in this directory using an ASP.NET app relative path.
Example:
…
3
votes
5answers
344 views
Is there a way to reference an existing CSS style from another CSS style using CSS or javascript?
If I have a style defined
.style1
{
width: 140px;
}
can I reference it from a second style?
.style2
{
ref: .style1;
}
Or is there a way via javascript/jQuery?
--- Edit
To clarify the …
2
votes
9answers
287 views
Dynamic URLs in CSS/JS
I'm splitting up one of my larger apps and introducing a 'cdn' url to house common objects like CSS, javascript, and images to avoid duplication. What I need to do, though, is have separate URLs for …
2
votes
6answers
4k views
How do you dynamically load a CSS file into a Flex application?
I know that you can apply CSS in order to style objects in Flex using the StyleManager:
http://livedocs.adobe.com/flex/3/html/help.html?content=styles_07.html
You can also load compiled CSS files …
1
vote
3answers
840 views
jQuery css() function changing ‘a’ property not ‘a:hover’ property
Hi,
I'm having a bit of trouble with the jQuery css() function at the moment. It is changing the css value of the anchor element's border-top-color instead of just the anchor element's …
1
vote
2answers
77 views
How would I style the text following a :checked radio button?
I've tried the following:
:checked + *
{
font-weight: bold;
}
With the following html:
<p><input type = "radio" name = "blah" />some text</p>
How would I go about styling …
0
votes
0answers
550 views
Converting SharePoint Quick Launch Navigation into Fly Out Button Navigation
I am in the process of branding my SharePoint Site and would like to take the existing Quick Launch navigation and display it as buttons that fly out. I believe the best way to do this is by using …
7
votes
4answers
2k views
Wait cursor over entire html page
Is it possible to set the cursor to 'wait' on the entire html page in a simple way? The idea is to show the user that something is going on while an ajax call is being completed. The code below shows …
1
vote
2answers
518 views
Using PHP variables in your CSS file in Symfony
I'd love to use PHP variables in my CSS files but I don't want to load up the whole Symfony stack for each file load. Any one have any best practices and/or plugins to manage their CSS files in …
