Hey. I want to put multiple background image in css at different position(like at diff px. and at diff z-index.)
Is that possible in body tag. i mean all images in body tag. or with diff ids.?
body {background-image:url(img/banner.png);
background-position: 50% 49px;
background-repeat:no-repeat;
background-color:#0000...
I have a number of columns in a table each with varying lengths of text. What I would like to do is have all the columns have the same padding left & right, but with the row taking up 100% of the width... so the actual padding amount needs to be dynamically assigned. Is this possible?
...
With this css
.addProblemClass{
width:300px;
height:300px;
/*width:25%;
height:40%;*/
border:solid 1px #000000;
margin: 5px;
background-color:#FFFFFF;
padding:5px;
opacity:0.9;/*For chrome and mozilla*/
filter:alpha(opacity=90);/*For IE*/
}
.boxHeader{
border: solid 1px #000000;
height: 2...
Hi, just wodering if anyone has experience with Typeface.js ( http://typeface.neocracy.org ) and fixing issues of the font not being rendered in Internet Explorer ( 6, 7 and 8 ).
The font renders in Firefox and Safari fine, hover nothing is displayed in the Explorers. The font is not installed locally so I know that the script is workin...
With this css
.addProblemClass{
width:300px;
height:300px;
border:solid 1px #000000;
background-color:#FFFFFF;
opacity:0.9;/*For chrome and mozilla*/
filter:alpha(opacity=90);/*For IE*/
}
.boxHeader{
border: solid 1px #000000;
height: 15%;
}
.addProblemHeaderTextDiv{
border:solid 1px #FF0000;
ma...
jQuery append function causes validation error. How to fix it?
append("<span>");
causes Document type does not allow element here
...
Can we combine css and javascript into one ? I want to do this for sIFR. because sifr has .js and .css file and without js enabled no use of any file css or js.
i want to combine all sIFR related file into one combined javascript file.
so at end i will have only 2 file
font.swf
sifr3.js (which has all thing)
Here is latest sIFR 3...
I want to show the thumbnail image large when hover over it, similar to the one in
http://www.freelayouts.com/websites/html-templates Plz help. Any help will be appreciated.
...
Should we always use all these pseudo selectors with different colors?
a:link { color: blue }
a:active { color: white;}
a:hover { color: white;}
a:visited {color:green;}
Basically we define these for links in the main content area, but then the problem is that it overrides all side bar links, navigation links, etc also, then we need t...
I have been heavily relying on CSS for a website that I am working on (currently, everything is done as property values within each tag on the website and I'm trying to get away from that to make updates significantly easier).
The problem I am running into, is I'm starting to get a bit of "CSS explosion" going on. It is becoming diffic...
So I have working code that animates a BG image via a plugin. This is a general solution though where each element in the class has the same BG image; I'm using a sprite with a unique image for each column of my navigation bar. THe code is thusly:
$('#nav a')
.mouseover(function(){
$(this).stop().animate(
{backgroundPosition...
I'm trying to create a dynamic tag with absolute positioning. In my trial runs I was able to set the left:right:top:bottom: properties to have the div dynamically conform to it's parent element's size. I'm now trying to do the same inside of a browser control in C# but am not seeing the absolution positioning being respected?
<span sty...
I am dynamically loading stylesheets using YUI3 'Get'. which is working flawlessly however, as far as I can tell it doesn't give me any way to set id's for these new stylesheets which is causing the stylesheet to be loaded multiple times as the user navigates around the site.
var css_obj = Y.Get.css(location.pathname+"/../css/"+jta["iss...
I would like to use feature detection to tell whether the user's version of Firefox supports the CSS style value -moz-linear-gradient. (This was added in Gecko 1.9.2. Version 3.6 of Firefox uses this.)
I can't use document.body.style.mozLinearGradient (or something similar) because -moz-linear-gradient is not a style property but a styl...
I have a BG image animation that relies on the hover callback to revert to it's original state. If I move the mouse quickly over the links, the hovered state sticks. My guess is that I'm moving the mouse off before the first animation completes, so the callback doesn't register.
Is there a more bulletproof way to write this function?
$...
I have a div with a static height, with content clipped using overflow: auto. On regular desktop browsers I use javascript to scroll to the bottom of the content. However, I need to do the same on mobile browsers, or browsers without javascript. Not in real time, but to output html+css in such a way so as the browser renders the bottom o...
I'm working on a c# web application and in one sections we show user comments on little boxes. It seems that one person wrote a long string causing the box become bigger.
How can I avoid long words to fit its container size?
For example, if the user writes the following
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa...
How can I set the width of the datepicker div when showing multiple months?
I've tried changing the css for .ui-datepicker-group and .ui-datepicker-multi, but when I view it in Firebug the width is overwritten.
...
I'm using a sliding the [jquery.hslides.js] plugin for a project... I've never seen anything like this but when I changed the overall width of the sliding container, out of nowhere I have these orphan bits of text floating around. I have ZERO clue where they came from... they're not selectable. You can see them here: http://cld.ly/821d...
I used the three column layout in A List Apart's "In Search of The Holy Grail" article for a store I'm working on that uses Magento. Inside the middle column, at the top, there's a container that I would like to overflow so it extends outside the middle column and goes over the top of the right column. Like below.
_____________________...