css

Internet Explorer 7+8 jQuery Error with infiniteCarousel

Hai guise! I am having a spot of trouble with some jQuery I am using, this was previously working but I have made many developments since then and tried to track back to find out what the issue was, but I am unsuccessful - hence, my presence on here. Anyway, I am getting some JS errors in both IE7 and IE8 with the catch my frame jQuery i...

CSS selector for label using "for" attribute in IE 6,7

I have a label in my web page as label for="title" How can i style this specific label element? ...

Expanding Background whilst keeping original aspect ratio

I would like to be able to set a background on our homepage which can expand and contract with the window size whilst keeping the original images aspect ratio.... I'm guessing this will need some clever Javascript or similar. The effect has been implemented here whereby then the window exceeds around 1500 pixels in width the background ...

Adjust height on jQueryUI dialog to be as tall as content up to a max

Using jQueryUI's dialog boxes, I want to popup information. My problem is I want to set the height of the dialog to however high the content is. If I don't specify a height, this works perfect. The height is automatically calculated based on the height of the content. Problem then is if the content is very tall, the dialog gets very ...

how to set css z index as its parent z index

how to set the zindex value of the child div's greater than parent div. where parent zindex differs. ...

List of sites which pay for articles.

There are nice sites where to get information about javascript, html, css. I can think of some: http:// www.alistapart.com http:// www.smashingmagazine.com http:// www.sitepoint.com If you write an article for them (sharing some of your developer know-how) you are going to get paid. Can somebody add up similar sites ? I would li...

css margin problem

My css looks like this * { margin: 0; padding: 0; } body { background-color: #FFFFFF; } div#header { background-color: #969696; height: 80px; } div#mid-bar { background: url(images/home.jpg) left no-repeat #6f6565; height: 200px; } #searchbox { background-color: #c1c1c1; width: 200px; height: 1...

HTML/CSS: how to put text both right and left aligned in a paragraph

What would be the best code to have two bits of text in a single paragraph, one left aligned, the other right aligned, that also is: the least code as possible the easiest for clients to render (i.e. using least resources) I add this last one to be sure <table><tr><td></td><td align=right></td></tr></table> would get ruled out. Not o...

Image overlay help - it all stacks over one image!

I have a set of four images, and my functionality goal is so that when you hover the mouse over the image thumbnail, it applies an overlay with some information that you can click. To give you an idea, take a look at this image: I've got the basics down, but currently the overlays are just stacking in the top left image. Not sure how...

CSS: Align table to top

I have a page with the container in a table I need to align it to the topmost of the page, but there is a gap. Also need to center the page horizontally. I tried body { margin:0px; padding:0px; } ...

solution for all resolutions

my css is @charset "utf-8"; * { margin: 0; padding: 0; } body { background-color: #FFFFFF; } div#header { background-color: #969696; height: 80px; } div#mid-bar { background: url(images/home.jpg) left no-repeat #6f6565; height: 200px; padding: 10px 0 10px 0; } #searchbox { float: left; background...

How to apply customized css to SSRS report

I am new to SSRS. I have created a report and was able to deploy it on the server. I am calling the report from ASP.NET application. How can I change the CSS of the report? I want to change the styles for individual data cells of the table deing displayed also. How is it possible? Thanks in advance. ...

CSS General Sibling Selector vs Header

Hi, This is a basic but tricky question about styling header with General Sibling Selector. Many people make a mistake about using it (and write books!). It seems for me useless: <h1>Title 1</h1> <p>text</p><p>text</p> <h2>Title 1.1</h2> <p>text</p><p>text</p> <h3>Title 1.1.1</h3> <p>text</p><p>text</p> <h2>Title 1.2</h2> <p>text</p><p...

CSS aligniment problem

I am designing home page of my domain registration website and I am stuck at one place. Please go through the website at http://a2host.in/ In Firefox and Google Chrome the Search and Go Button are in same alignment with the text and select box but in Opera and IE8, they are falling down a bit. I have tried out all the things but I am ...

Lazy loading images how...

Hello... I am developing an eshop .At products page based on category i putted some javascript based filtering. However a problem arises if a category has a lot of products. This link has something similar i do ... http://www.snowandrock.com/sunglasses/snowboard/fcp-category/list?resetFilters=true How ever this page is painfully slow a...

Image link hides link below it

I have an issue with an overlapping image link, that hides another link below it. <div id="header-first"> <div id="logo"> <a title="Αρχική" href="/"> <img alt="Αρχική" src="/sites/default/files/acquia_marina_logo.png"> </a> </div> </div> The problem is that there is a link below this cod...

CSS - How to center a div of variable height and width in the center of another div?

I have come across some methods of centering a div within a div, but those usually requires the element to be centered to have a fixed width and height. Is there a way to do it if the inner div to be centered will be of variable width and height (example: centering an image inside a frame of a fixed size, and the image could be of variab...

resizing an unknown image size using CSS?

I am trying to resize an image using only CSS, the problem is I don't know it's dimensions. What I have tried so far is putting the into a and then making the image have 105% width. The idea was that the containing div would have no size other than it's contents, but this is only make the image the size of the next ancestor that does ...

In IE6, how to implement a:hover?

I am using following CSS: #userinfo_box a:link,a:visited { text-decoration:none; } #userinfo_box a:hover { text-decoration:underline; } The HTML is <div id="userinfo_box"><a href="">Hello World</a></div> In IE6, Hello World is not being underlined. How to do it in IE6? ...

Align DIVs horizontally within a scrolling div

I'm working on a photography website. One of the things we're trying to aim for is a 'film strip' type of display for the images, as opposed to the usual thumbnail or 'tabulated' formation. It works with tables. No problemo. The only thing that makes me not want to use a table is the fact that I'm not showing data, there's no need for c...