css

Firebug or IEDevtoolbaar styling inline or from stylesheet

Is Firebug or IEDevtoolbar capable of distinction between Inline / External stylesheet styling? If not, is it possible to write a tool that is capable to distinct inline styling from styles from a stylesheet? ...

Textarea 100% height in IE

How do I get my <textarea> to have a height of 100% and work in IE7/6? height:100% works fine in all other browsers but IE just doesn't want to accept anything other than specific values. Javascript is a possible solution. ...

Fix position of image

I have this list http://pastebin.me/dde64f8c185de9dd5e429f84701a01ce Anytime you click on an image extra content appears . I have tryed several css methods but i cant get the images to remain in their position and get the text to go underneath . Anyone has a solution ? ...

CSS: float:right not working properly

hi, I've an issue with IE on this website: ... When you click on the article "Post Tenebras Luxe", you'll see that the big image is overlaying the artists list, instead of moving down. How can I fix the css ? thanks ...

dynamic element positioning

Hi, I have been seeing this thing for months and years and i really wanna know how to do that one. For example, there is an element in the middle of the page. and it is in absolute position. When scroll downs and comes to that element, it becomes fixed positioned and follows the scroll, when scroll up and back to middle of the page it ...

flash video player doesn't display in IE

hi, I cannot see flash video player in IE in this website: www.donatellabernardi.ch/drupal It works in other browsers: For example click on the article 'Test Jacques' and scroll down, you'll see an empty space instead of the video. Update: this is the code of the video object.. why is this code not working in IE ? <object data="[site-...

Point one style class to another?

Hi, I have a css class like: .foo { background-color: red; } then I have a class specified for a list: .list1 li { background-color: tan; } is it possible to set one style class to just point to another? Something like: .list1 li { .foo; } not sure how to articulate that - I just want the .list li style to be whatever I d...

Jquery DatePicker color Sunday red

Is there a way to change the color to, say red, the Sundays in a Jquery Datepicker? ...

Override one css class with another?

Hi, I have a list, with an li style defined. I want to replace the style of an individual element, but it doesn't seem to have any visual effect. Example: .myList li { background-color: yellow; } .foo { background-color: green; } <ul class='myList'> <li>Hello</li> </ul> When I add an item to the list, it has the .myList li st...

Is there any way to easy migrate a CSS to a joomla style classes CSS?

Hi , i'm trying to integrate a css that my designer gave me to a new template in Joomla 1.5, the problem is that the html content generate by joomla is different than the original css that the designer thought, yes it uses divs and classes and ids but i'm not sure what will be the best aproach to migrate and implement this. Is there any ...

How to stop body background displaying between two tables in Iphone Safari

The following markup when viewed in Safari on Iphone and Ipad displays the body background color for 1 pixel between the two tables. What is this and how do I stop it? <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; <html xmlns="http://www.w3.org/1999/xhtm...

define border width(not thickness)

can I define border width. like .box{ width:200px; height:100px; border-bottom:1px solid #000; } box width is 200px but i want border width in bottom only 100px. ...

ASP.NET MVC page, CSS (?) problem

I have an ASP.NET MVC site (Master Page + Content pages). On the master page, I have a menu. When some of the options are selected on the menu, it brings you to the appropriate controller and shows the page, which is fine, but it also shows a submenu. The submenu shows just fine, but the issue lies in the menu. I cant get the menu's css ...

How to create a perfect 3 columns layout using CSS , with cross-browser support ?

Hello, How to create a perfect 3 columns layout using CSS , with cross-browser support ? I have 3 divs like <div class="clm1">Some content</div> <div class="clm2">Some content</div> <div class="clm3">Some content</div> tried googling but all were made or css3 . I need a perfect 3 column in basic css. Please help update Perfect in ...

How to fix table's column empty space in firefox?

This is inline code of a .aspx page:- <table> <tr> <td>Some static data</td> <td>Text box control</td> <td><div id="div1"></div></td> </tr> </table> Third <td> has a div 'div1'. This div does not have any data most of time on that page. But sometimes i need to display some dynamic data there). Now problem is, if there is no data in...

jQuery val() undefined

We have the following XHTML table: <tr class="encabezado"> <th scope="col" width="2%">1</th> <th scope="col" width="2%">2</th> <th scope="col" width="2%">3</th> <th scope="col" width="2%">4</th> <th scope="col" width="2%">5</th> <th scope="col" width="2%">...</th> <th scope="col" width="2%">31</th> </tr> ...

Can you make a HTML element overflow-scroll ONLY vertically?

Is it possible to set a to add a scroll-bar vertically but clip horizontally? EDIT I see some mention on CSS3 in answers. Which browsers support this? ...

Keep width even when column changes. (HTML)

I have a login on the left sidebar of my website. When a user is logged in, the sidebar width doesn't remain the same as it was when the user wasn't logged in. Is there a way to keep the width the same? <!-- Start Sidebar --> <td id="sidebar" valign="top" height="400px" style="width: 200px"> <!-- Login Form ...

Semantically correct XHTML markup

Hello all. Just trying to get the hang of using the semantically correct XHTML markup. Just writing the code for a small navigation item. Where each button has effectivly a title and a descrption. I thought a definition list would therefore be great so i wrote the following <dl> <dt>Import images</dt> <dd>Read in new image nam...

Monitor resolution changes look of website

I have a website that looks fine in my resolution and even in the more common 1024 x 768. Yet, in someone else's browser in 1024 x 768, it's too wide and the website doesn't even center correctly. Is there a way to have a proper width layout that doesn't change when the resolution is changed? /* Body */ body { background: #535353; ...