Tagged Questions
The dynamic-css tag has no wiki summary.
15
votes
9answers
1k views
CSS - Separation of Color and Position
I'm just wondering what others do in this respect:
Do you try to keep positional CSS (layout) separate from color/flavor CSS (color, background-color, background-images, font-size and family) ?
Use ...
12
votes
8answers
12k 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:
...
11
votes
4answers
12k 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 ...
7
votes
10answers
1k 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 ...
6
votes
4answers
11k 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 ...
6
votes
6answers
4k 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 ...
5
votes
5answers
2k 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 ...
3
votes
3answers
505 views
Changing Background for Night & Day using php?
I'm working on a tumblr page. I have two different backgrounds for the html page and I want the DAY background to display from 7am to 8pm and the night background to display from 8pm to 7am.
I ...
3
votes
3answers
3k views
Facebook like status div
I'm looking for a footer like facebook has but only use CSS to style it no js.
As you can see here http://dl.getdropbox.com/u/5910/Jing/2009-02-03_1256.png it always stays at the bottom even if I ...
2
votes
2answers
2k views
Changing background based on time of day (using javascript)
Okay, I have two different background .jpgs that I want to used as the backgroud depending on what time of day it is. I want the sunny background from 7am to 8pm and the night background from 8pm to ...
2
votes
5answers
548 views
How do I create dynamic CSS in Rails?
what is the best/most efficient way of creating dynamic CSS with Rails. I am developing an admin area on a site, where I would like a user to be able to customize the style of their profiles(Colour ...
2
votes
1answer
285 views
Adding @import statement in a dynamic stylesheet for IE7+
I have a problem with adding a dynamic style element with @import statements for IE. Try this:
var string = '@import url(test.css)';
var style = document.createElement('style');
if ...
2
votes
2answers
805 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
...
2
votes
3answers
7k views
jQuery css() function changing 'a' property not 'a:hover' property
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 border-top-color ...
2
votes
2answers
1k 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 ...
2
votes
2answers
5k 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 ...
2
votes
5answers
19k views
How to change CSS class of a HTML page element using ASP.NET?
I have several <li> elements with different id's on ASP.NET page:
<li id="li1" class="class1">
<li id="li2" class="class1">
<li id="li3" class="class1">
and can change their ...
1
vote
2answers
203 views
How to get visual studio to recognize a cshtml file as javascript
I am writing a css/js page that has some dynamic parts in it.
To do this i am using a cshtml file containing css/js - i am using mvc.net and returning the css from a controller action.
The trouble is ...
1
vote
2answers
258 views
Dynamic CSS based on database info
I'd like to know how to dynamically change my CSS styling based on the number of elements in my database.
Users can choose a certain number of columns, and the number of columns they choose ...
1
vote
5answers
149 views
Why isn't dynamic css more popular?
I normally work on more back-end stuff so I never really thought about it before, but yesterday I was working on a site for a friend and after some frustration it occurred to me that there's no reason ...
1
vote
1answer
294 views
problem treating a jsp like css in firefox, chrome
I am writing a web application for use by multiple organizations which requires custom styling depending on which customer is using my page (the page is "branded" for different companies).
Basically, ...
1
vote
3answers
368 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 ...
1
vote
1answer
99 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 ...
1
vote
3answers
3k 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>
...
1
vote
2answers
1k views
Question about mouse over and use <ul> <li>
I want to create a drop down menu with submenu, but have problem for one thing, My button appear under the text of main menu. How can I bring it up?
see the source:
<!DOCTYPE HTML PUBLIC ...
1
vote
5answers
237 views
Pulling in Dynamiclly Generated (not a static file) CSS in FF?
Is there any way of pulling in a CSS stylesheet into FireFox 2 or 3 that is not a static file?
Bellow is the code we are using to pull in a stylesheet dynamically generated by a CGI script.
...
1
vote
5answers
1k views
Dynamic resizing / repositioning of divs for multi-column viewing
Setup
I have a website that draws RSS feeds and displays them on the page. Currently, I use percentages on the divs that contain each feed, so that multiples can appear next to each other.
However, ...
1
vote
5answers
424 views
How do I add a div and pick it up later
I think this is specific to IE 6.0 but...
In javascript I add a div to the dom...I assign an ID attribute. When I later try to pick up the Div by the ID all I get is null???
Any suggestions?
...
0
votes
1answer
53 views
Let Textmate set *.php apart from *.css.php files, how?
I am working with dynamic generated CSS files.
To let Apache know, they have to be preprocessed, they have to end with
.php
Now here is the Problem:
Textmate won't discern / differ between ...
0
votes
2answers
176 views
ASP.net MVC themes changing help
I have a website developed using ASP.Net MVC. Now I want to based on the request(based on the country) I want to change the web site theme.
Ex: for USA - theme 1
for Canada - theme 2
If the ...
0
votes
1answer
194 views
Django dynamic css implementation
I have my little blog app, and I want to be able to change styles (not necessarily all) from admin page. What would be the 'right' way to implement dynamic style loading in django project?
My own ...
0
votes
1answer
318 views
Dynamic css on a parent window in Internet Explorer
I like to add a dynamic css file to a Parent window.
I build this code for it:
function LoadJSCSSFile(filePath,fileType,parentBOO){
//-
var fileRef; // Get the file reference
...
0
votes
3answers
317 views
Generating dynamic css using php and javascript
I want to generate tooltip based on a dynamically changing background image in css.
This is my my_css.php file.
<?php
header('content-type: text/css');
$i = $_GET['index'];
if($i == ...
0
votes
2answers
1k views
Is it possible to refresh a CSS sheet with an AJAX postback?
I have been learning how to create dynamic images and dynamic stylesheets using ASP.NET 3.5. My reasoning behind this is I have a web page that I want to change the header background image (set with ...
0
votes
2answers
1k 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
votes
2answers
61 views
what type of timer this site use?
me and my team really working on a site like www.bidrivals.com/us (penny auction site)
i browse it codes
found
<div class="timer online">
<div class="text">00:00:03</div>
...
-1
votes
3answers
2k views
apply CSS dynamically in asp.net 2.0
I have a scrolling div with Three linkbuttons and three differents divs. I need to apply CSS to active linkbutton as soon as button is clicked.The codes used by me are:
protected void ...