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 ...
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?
...
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.
...
http://jobview.monster.com/Pearle-Vision-Sales-Associate-Job-Fairview-IL-US-82910211.aspx
Should be cross browser
...
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
...
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.
...
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)
...
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...
Which is the best open source javascript css framework to implement?
...
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?
...
------------- --------------------------------------------------
| 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...
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...
<a id="test" class="target1 target2">test</test>
How to know whether $("#test") has applied .target2 or not?
...
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...
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...
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...
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...
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...
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
...
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...