css

Have 2nd Html table cell span rest of screen

I have a table with two columns and one row, and 100% width across the screen. I want the first column to take up as much space as the content in it will fill. This content shouldn't take up the entire screen, so I'm not worried about wrapping. I then want the second cell to take up the remainder of the horizontal space. How would I ...

Stop a background image from disappearing in IE when the inline element spans 2 lines

On this page there is a list of footer links that have a little background image to place the dash before each one. This works fine in FireFox but in IE 6, 7 & 8 the background image for the item that spans 2 lines (Workplace Giving Employers) disappears. Why is this & does anyone know how to fix it? ...

How do you make a background image to adjust it's size to the containing element?

Check the rounded corners of the main tabs in this site Those are background images with width of 440px, and still it adjusts to the containing element without loosing the rounded edges. ...

how to achieve the effect like this page,showing apply at the bottom all the time?

http://jobview.monster.com/Pearle-Vision-Sales-Associate-Job-Fairview-IL-US-82910211.aspx Should be cross browser ...

Background image applied to table is getting applied to all cells in the table

I have given a table background image using css background-image property. The cells are given opacity settings so that the image is shown through the cells. In Firefox it works perfectly but in IE all the cells(TDs) are showing the background image. How do I fix the issue in IE. Click the link below for the page html page here ...

Cross platform CSS

Hi, I want to know does CSS behaviour changes with different operating system. My css is working bit different for vista and win xp proffesional for same version of browser. I was testing my application on vista + ie8 and xp + ie8. It worked bit different. ...

colour combinations for css

does anyone have links to a website that shows sets of colours that work well together for css specifically for links a:link a:hover a:visited a:active (i have googled, but didn't find anything satisfactory) ...

Background not showing.

I have a background image set on a web page with the following CSS: body, html { background-image: url(Content/Images/bg-lounge-2-l.jpg); background-repeat: repeat; background-attachment: fixed; /*background-position: 0 -390px;*/ } This background was visible until late last night, in Firefox and IE...

javascript css framework

Which is the best open source javascript css framework to implement? ...

how does jQuery implement get elements by class name?

There is no such a "getElementsByClass" function in javascript, then how does jQuery manage to do that? Looping all elements will be too less efficient. BTW,how to specify css to elements with two or more classes? <a class="one two">test</a> Guessing like below? .one.two {...} Is that right? ...

CSS: Two fields, left one flexible width, right one takes up remaining space

------------- -------------------------------------------------- | some text | | some more text, sometimes more, sometimes less | ------------- -------------------------------------------------- |<------------------------- 100% width ----------------------->| So I have the above layout. The left box should always be as small as possib...

overflow:hidden not working for li elements inside ul

I'm trying to create a carousel from ul object where the li elements are blocks and ul is the carousel container. I've tried two approaches but neather seems to work, the overflow property is not functioning as I want it to. Approach 1: <ul style="overflow:hidden; width:200px; height:120px; display:block;"> <li style="float...

how to know whether ".target2" is applied to a jQuery object?

<a id="test" class="target1 target2">test</test> How to know whether $("#test") has applied .target2 or not? ...

CSS background image disappears in IE (6, 7, 8) after running jQuery .cycle()

I have the following HTML: <div id="similar-products" class="box small"> <div class="product"> <h3><a href="#">Lorem ipsum 1</a></h3> <p class="figure"><img src="_img/thumb/blah.png" alt=""></p> <p class="price">€ 19,99</p> <p class="more-info"><a href="#more-info">More info</a></p> <p class="add-to-cart"><a href="#add">Add t...

Reset CSS background image

I'm trying to create an accordion type menu using the following JQUERY: function initMenu() { $('#menu ul').hide(); $('#menu li a').click( function() { $(this).next().slideToggle('normal'); $(this).css("background", "url(customnav_selected.png) top right"); } ); } $(document).ready(function() {initMenu();}); This wo...

Positioning of my drop-down divs

Hi everyone, I am having the hardest time controlling where my drop-downs show up! I have gone through the css and made changes but for some reason they don't seem to reflect. Could someone possibly see anything I am missing? If you hover over the tabs "contact us" and "help desk" on the link below you will see what I mean. http://kro...

Software for building DOM/CSS-class references

I am currently setting CSS class names in a quite large browser-based application. I started sketching out the HTML element layout (basically a large set of nested boxes) on paper, and writing down the CSS style name next to each box. This is of course very tedious, and I started to realize that this would be very useful in the applica...

How to load php file using ajax. Some Compatibility Problem

I try to load a php file called summary.template.hp when the content in class profi is clicked and load changepass.template.php when the content of class changepass is clicked. There is no problem in loading in firefox. But in Internet Explorer 7 the summary.template.php file is loading but the changepass.template.php file is not loadi...

Anti-aliased text with css/javascript for Large font size???

I am using Large fonts in my website at a few places and they don't appear anti-aliased or smooth... I was wondering if their is any way to show large anti-aliased fonts for browsers on windows OS which has anti-aliasing switched off as default... Similar to something they have on this website here ...

Does EVERY image in a CSS file load when the file is loaded?

Let's say I have my whole sites CSS in 1 css file so it is fairly large, I am wanting to know if a page uses 3 classes with something like below that request 3 images from the server, lets say there is something like 50 of these in the whole css file, does everyone get called/requested from the server or just the 3 that a page needs? ba...