Take this code:
#wh_wrapper #slider .scrollButtons.left {
width: 100px;
}
the width of 100px is being applied only to:
#wh_wrapper -> #slider -> scollButtons left
If I do this:
.left {
width: 50px;
}
all the
.left
classes has now a width of 50px, including the one from before.
Now, I completely understand how to avoid t...
Here is an example that I do not understand:
.container_12 .grid_6,
.container_16 .grid_8 {
width: 460px;
}
It seems to me that width: 460px is applied to all above mentioned classes. But why some classes are separated by coma (,) and some just by space?
I assume that width: 460px will be applied only to those elements which comb...
I'm wondering if there is a standard for forms. I mean, when you write a form in HTML, one usually writes it based on its needs, without taking care of its HTML structure.
I ask this because I'm working on a Form generator in PHP. I want to make something easy to use and a generated HTML code easy CSS-customizable.
There are some Form ...
Hi All
I have a UK map made as a flash/swf movie. This map is embeded in a div tag and floated aright in a 2 column layout with a left column, a header and a footer.
I want the map to resize itself when the browser is being resized by the user or I want it to be resized as the left column's height increases and decreases. Basically the ...
I would like to use jquery to populate fields with default values. For example, say I have a field for email address and I want to add [email protected] in grey italic text in the box and the remove it once the user clicks on the field. Is there any good way to do this with a plugin or something? I would really like to avoid toggling an ...
On the following website, when I click the dropdown for the Login at the upper right, it is displayed behind the silverlight map. I can't use windowless mode because this would disable scrolling and menus on the map. I have tried putting the z-index everywhere, but I can't seem get it to work.
...
Hello, I'm not new at CSS, but this is problem for me and I can't solve it. I need to build layout as below:
Divs that are at the bottom and at the top have fixed heights. The one in the center have to be exacly in the height of PAGE HEIGHT - DIV 1 HEIGHT - DIV 3 HEIGHT or in some cases smaller.
Also it have to had this size setted b...
I am working on the CSS of a project. And encounter some Overflow problems with IE. This is the testsite:
http://eparking.bluesys2.ch/fr/parking/search.html?l=Fribourg&d=27.6.2010&t=
You can scroll the list using the buttons under the list.
In firefox, safari and all the other normal browsers anything works fine. But in IE i ca...
Hello all,
I am making use of JQuery's autcomplete plugin. It works perfectly but in IE6, there are design issues.
I have a multi select tag underneath and when the autocomplete drops down the list of options its underneath the multi select tag! In all other browsers, this is fine but not in IE6.
What is the problem? This is the styl...
Hello,
I'm having problem with jQuery Cycle plugin in IE8 (and other IEs as well)
I have 3 slides which contains Title, Description + Image.
The problem is that in IE8 the image is "blinking" / not loading at once (the bottom is cut off for a while is it displayed fully).
Before I had problem with the white BG under the slider, but I...
Hi,
Is there a way to automatically resize the background image of an element. For example, in my html, I would like to my links to be have a background image. The image has slanted left and right border and round top corners.
One would normally specify the width of an anchor element to accommodate the background image. My problem is...
What is the best method to register a stylesheet once on a page from a customer web control? Please keep in mind that the page uses an UpdatePanel for async calls. I tried just putting the <link> tag in ScriptManager.RegisterClientScriptBlock(), but I get this error:
The script tag registered for type
'MyControl'
and key 'MyKey' ...
Hello, i am experimenting with html and css and trying to figure out how to make this work... I am just trying to make the #menu float to the right of the h1 but be on the same baseline so... but obviously float:right makes it float to top-right? any way to make it float to bottom-right or align with the bottom of the containing div?
he...
Can i apply style like this,
$('#aspnetForm').append($('#facebox .content').html().css({ 'display': 'none' })); but it didnt work...
EDIT:
i am trying to use jquery facebox in asp.net.. i am having issues with the close button.. http://stackoverflow.com/questions/3346172/hide-jquery-facebox-modal-manually
...
I don't understand why my anchor hover isn't causing the div box below to turn yellow. Here's my code:
<?xml version="1.0" encoding="iso-8859-1"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<style type...
Can someone show me some html to layout the following not using tables?
______________________________________
|_______|_____________| |
|_______|_____________|_______________|
|_______|_____________| |
|_______|_____________| |
|_______|_____________|_______________|
The third column needs to...
I have a modal box with a defined height. Inside of this box there is an accordion box that expands when a user clicks a link. The height of the accordion box when it is toggled exceeds the height of the modal box and thus a scrollbar appears.
I would like to automatically scroll the bars down to its lowest point to display the new con...
I know that people have had some trouble with undefined CssClass values when using partial classes in ASP.NET MVC. My project is not MVC, however, and I am including a .css file that is in the root folder of my project, yet a referenced class value still results in a warning in VS 2008.
In my .aspx file:
<html xmlns="http://www.w3.org...
Screenshot of what is happening http://cl.ly/64231bb27eea3e9551e1
It is just a list item within an underordered list, this is happening in IE7 and nowhere else.
<ul>
<li>Filler text. Filler text. Filler text. Filler text. Filler text. Filler text. Filler text. Filler text. Filler text. Filler text. Filler text. Filler text. Filler te...
Hi,
Is it possible that when I move on the button mouse, change button styles?
When the cursor on the button, show this style:
input.button_p
{
color: #000000;
border-style: none;
}
When the cursor no't on the button, show this style:
input.button_a
{
color: #FFFFFF;
border-style:solid;
}
Thanks
...