css

How to create a 2 column design where when the first column is full, it will automatically display on the second column?

How to create a 2 column design? When the data display is full on the first column, it will automatically display on the second column? the restriction is I cannot set a limit for the data since they are dynamic, means sometimes got 20 posts of data, but sometimes only got 2 posts. All the data have to be evenly split into 2 columns, ve...

Why is my right aligned table not showing up with 100% height in browser?

Hi. I am making this web page and I want the table on the right to have 100% height, yet when I view it in the browser, it isn't maximized vertically. You can view it here: http://wpiix10.x10.mx/ifoot8.htm See the pink background table on the right side? It should be 100% of the web page's height yet it's small. Here's the code I'm ...

How do I make the right table have priority over the top table?

How do I make the right table have priority over the top table? I want the table on the right (the pink one) to go all the up to the top of the web page. And I want the top yellow table to end where the pink one starts on the right side of the screen? Link to what Im talking about: http://wpiix10.x10.mx/ifoot11.htm And here's the c...

Creating custom pop-up without opening another window

I am trying to create a custom pop-up box for my website that would look something like i currently have for the "contact me" tab when selected. I would like something that I could easily change the content in. I would also like for it to automatically load only once per visitor per week. If you have any suggestions they would that wo...

How to Show a <span> or <div> tag content as asterisk(*)

I am going to display the current password of the user like Current Password : ****** I want the exact number of asterisk's(*), as the number of the password characters. Also it should be safe that it should not visible at View-Source. Plz Help, any jquery plugin available?, or can we achieve it through javascript ...

ie6 taking an extra margin of 50px; what is wrong with my code?

Hi there, i am coding an exclusive ie6 css. my problem is it is taking an extra 50px for header div. i have fixed the size of the header to 109px whereas it is producing 159px, when i place any element below the header div it consumes the extra 50px. i tried display:inline as ie6 hacks, and it just reset the left margin. quite not usefu...

How to float paragraph next to image without wrapping the image?

Hello! I want to float a paragraph next to image, but without wrapping the image. Like this: div.img { float: left; display: block; margin: 15px 2% 0 2%; width: 26%; /* I cannot use that */ } div.info { float: right; display: block; margin: 15px 2% 0 2%; width: 66%; /* Th...

All-inclusive CSS selector for input elements

Looking for a way to apply a background-color to all input elements, including dropdown lists, textareas, and even checkboxes. Is there an all-inclusive selector for this sort of thing, or would I need to list them all individually in the selector? ...

Table border fade in and out

I have a table and I'd like to fade in and out the top and bottom borders of the table. Initially I just used css' hover feature, but I'd prefer jquery's more fancy fading. I know how to fade objects in general in and out, but haven't found any solutions for borders only. ...

First click on HTML links is not working!

I have this problem with a link in an HTML page where the first click on it is not working (I am using Firefox). The second click takes me to the corresponding link. Furthermore, on the first click the parent element of this link moves a little bit upwards. So I assume this is a CSS issue, but since the problem is there only when clicki...

CSS Differentiation based on Browsers

Hi, Unsure if possible but just wondering if there is a means in CSS to distinguish between two browsers, i.e. IE6 and IE8 as I have a style that I need to apply, but the value needs to be different for IE6 and IE8, i.e. ul.sf-menu li li.sfHover ul { left: 14.3em; /* for IE8 */ left: 15em; /* for IE6 */ ...

How to overwrite table background color comimg through <iframe> tag

Hi, I have used an with external src. Can i overwrite the table background color of that external page. How to overwrite table background color comimg through tag? Please help me!!!! ...

ie6 margin expanding by 20px

hi there, i have div's wrapped under div's my html code is. <div id="content-row"> <div id="left-box"> <div id="small-box"> </div> <div id="small-box"> </div> <div id="small-box"> </div> <div id="small-box"> </di...

CSS width subtraction

How to subtract width in CSS? For example: width = 100% - 10px I'm not talking about padding or margin. ...

How can I support border-radius on all major web browsers?

There doesn't seem to be a way to support border-radius other than to provide the CSS for each engine separately. Right now it seems you have to declare the property three or four times (possibly more if you want to support more obscure engines). My interim solution is to pass all of my CSS through this regular expression: Regexp: bor...

Stretchable, fixed, centered wallpaper? I'm close... real close.

So here's the code as I have it... <head> <style type="text/css"> * { margin : 0; padding : 0; } html, body { height:100%; color : #FFF;} div#bgcontext { position : absolute; width : 100%; height : 100%; overflow : hidden; } div#background { position : relative; right : 50%; width : 100%; height : 100%; z-index : -20; text-align : ...

Convert div to span with CSS

Hi, I have a few divs which makes a little bit too spacey between the footer and the body. So i want to convert one div to a span. But when I do that, it messes the footer's content a bit up. How can i do this and keep the styles that already have been defined for the footer? Thanks in advance! Edit div.footer { width: 986px; margin...

overlay opaque div over youtube iframe :)

How can I overlay a div with semi-transparent opacity over a youtube iframe embedded video? <iframe class="youtube-player" type="text/html" width="520" height="330" src="http://www.youtube.com/embed/NWHfY_lvKIQ" frameborder="0"></iframe> <div id="overlay"></div> CSS #overlay { position:fixed; top:0; left:0; width:100%...

Get multiline text to align with content instead of numeric label with OL and list-style-type: inside

Hi! I have an OL element with list-style-position: inside. However, if the text inside an LI element is multiline, the text on the next line flushes left with the numbering, not with the other text. Is there any way of fixing this? Code used: <style type="text/css"> ol { list-style-position: inside; } </style> <ol> <li>If this text ...

How to theorize about this phenomenon about <div> tag

My understanding about CSS is that, generally if you set <div style="color: Red">, all content inside <div> will be affected. However if you put a html button inside, the color on the words on the button is not affected. I'm a bit disturbed by this exception. How do I give a reasonable explanation to it? ...