css

How to make a datepicker always be clear of the textbox

Ok I have a jQuery date picker attached to a textbox. So when you focus on the textbox the datepicker pops up. This works well most of the time, but if the textbox is near the bottom of the screen then the datepicker will not cause the screen to scroll more, instead it will just be shifted up and cover the textbox, making it not visible....

Do more specific css rules load better?

You can do this: .info { padding: 5px ; } Or, if you know it will be a div, you can do this div.info { padding: 5px ; } So, when there's a nested list.. you can do this.. div.info ul.navbar li.navitem a.sitelink { color: #f00; } Or you can do this a.sitelink { color: #f00; } Readability aside, which is better ...

cross browser menu hover is underlining in IE8 but not in the rest of the browsers

I need to turn off the hover underline in IE8 - here is my dev site: http://www.solutionunion.com/website/ on the main menu dropdown when you mouseover in ie8 it underlines the link but not in ff or any of the other browsers. is there a special hack I can add to the css file to make the underline on the hover turn off? <style> ul#pho...

unknow margins on my jquery slideshow???

I have got unknown margin on left and the top of my jquery slideshow..cant figure out what's happening? please help!!! below is the code and the screenshot %@ Page Language="VB" AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="_Default" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.or...

IE HTML&CSS Display Problem

Hello, For some reason browsers other than firefox display page below without style. http://cp.nobilityonline.com/ What's wrong? ...

Is there a way to stop Firebug from working on a particular site?

Is there some way to make Firebug not work at all on a website? ...

ASP.NET ListView - Render THEAD/TBODY Tags

I have an ASP.NET ListView control (see below). Unfortunately, when a ListView control is rendered is does so absent of HTML tags such as THEAD/TBODY. This is causing a problem for me because the CSS styling that I'm using needs those tags. <asp:ListView ID="ListView" runat="server" DataKeyNames="Id"> <LayoutTemplate> ...

CSS font-size increment - proportional?

Hello. I have several elements with already set fonts - like <div style="font-size: 10px"> some text </div> <div style="font-size: 20p"> some text </div> I want to increment the font size proprtionally, eg <div style="font-size: 15px"> .......................... <div style="font-size: 30px"> is that possible...

CSS + FireFox: hiding scrollbar on iframe with scrolling=yes

I have an iframe with scrolling=yes. Is it possible to fully hide scrollbar using CSS for the Mozilla FireFox browser? For instance, on the Internet Explorer I'm using this: Overflow-x: hidden; Overflow-y: hidden; - and it hides scrollbars, but FireFox ignores this CSS. Here is screenshot from IE: Here is screenshot from FireFox: ...

wordpress adnimistration page

anyone know of a site that explains how wordpress created its appearances in wordpress (on the backend) i like how the navigation was created and i am trying to drill down to see what makes it tick but its a heck of a mess of code. has anyone launched anything online that you know of explaining how these peices were made? maybe something...

Keeping footer visible and height 100% in CSS

I'm trying to create a very simple page that contains a container, a header, a left column and a footer: <containter> <header /> <content /> <leftBar /> <footer /> </containter> I want to use the 100% of the height, as I can do with the width, but I simply dont get it work.At his moment I'm usingmin-height, but how could I use theheig...

CSS Put image at top of page

Hi, I need to have an image at the top-center of a web page in css. Now, Im just using the background-image: in css but this puts it at the middle of the page. Here's my code: body { background-image: url("theimageurlgoeshere"); //The image is 842 x 508 background-attachment:fixed; background-position: center top; background-...

css images not displaying witout firebug

CSS images do not show up, except when I open 'edit css' in firebug. Then they display perfectly. Any ideas as to what is happening. ...

Is there any Inheritance problem with <table> and it's elements, like <form> elements?

Is there any Inheritance problem with <table>, tr th td tbody thead tfoot also like form elements? In IE 6+ and FF 3+ with Strict doctype. Tables also have inheritance turned off in some browsers. You may notice that in some browsers, your tables’ text will be larger, clunkier and not so pretty. This is also due to inheritan...

How can I pin a div in my sidebar column to the bottom?

I have a simple two column layout with a footer at the bottom. When the content in the sidebar is taller than the content in the main column, everything looks great. But when the height of the main column is greater than the sidebar, I need the sidebar to grow to the same height as the main column and for the last <div> in the sidebar ...

Float right is not working in IE 7 but works in FF IE8

I have this code <div id="facebook_bar"> <div style="float:left;"> <img src="images/topbar_followus.png" width="70" height="25" /> <img src="images/topbar_twitIcon.png" width="30" height="25" /> <img src="images/topbar_fbicon.png" width="30" height="25" /> </div> <div id="newsletter_box"> <img src="images/topbar_s...

Please explain in detail this part of YUI3 CSS Reset..

What is the usefulness of these 2 things in CSS reset? What is the problem in resizing of input elements in IE and in which version? and if legend color doesn't inherit in IE then how it can be solved adding color:#000; /*to enable resizing for IE*/ input, textarea, select { *font-size:100%; } /*because legend doesn't inherit in I...

@import doesn't work when suffix isn't .css?

This works: @import "foo.css" This fails: @import "foo.cssabc" Any reason for this? ...

How to make div clickable?

I want to make this div click-able and want to use same href of inside <a> and want to keep link in inside <a> also (so if JS is disabled then link will be accessible). <div id="example"> <p> some text </p> <img src="example.jpg /> <a href="http://stackoverflow.com"&gt; link </link> </div> I mean i need like this. <div id="exampl...

If I want to use a specific font that I know it is not available in most of the user's computer

Hi All, If I want to use a specific font that I know it is not available in most of the user's computer, is it possoble to embed the font in my web site in some way? I have gone to some web site using special fonts as text, but not as image. I wonder how it works. Thanks Mayur ...