css

Does Internet Explorer 7 have a CSS parsing issue with the "background-image" property?

Having CSS layout issues with Internet Explorer 7 (big surprise). Upon using the Developer Tools to inspect the CSS, I discovered that some properties defined in the stylesheet are not appearing in the parsed CSS structure... THEN I saw THIS being shown as the parsed value for the background-image property: background-image : url(/trunk...

Detect, if reading a single post or browsing through the list in Tumblr-theme?

Hello Is it possible to have a bit different stuff on a single post. I'm having descriptions in post-listing, so I need to add some css to them, but not when user is reading the current post. Martti Laine ...

Menu glitchy on top of slideshow

I have implemented the following set up (after being requested): slideshow of images changing, after the user mouse over, the menu would appear in the top right corner, it would disappear on mouse out. The problem is that the menu is glitchy when I try to mouseover its items, it happens in both IE6/7 and FF 3.5. I have tried Jquery hov...

Vertical Align Image within DIV

Hi SO, I've got a pretty minor problem that I think can be resolved by re-thinking my CSS. On a part of a page, I've got a series of images. Initially, each image is hidden (See CSS Below). I've got it working fine. When the page loads, the first image fades in via jquery. There's a timer set up where after X seconds, the current image...

IE Ul LI Padding?

http://mibsoftware.us/clients/dogwatch/dogwatch.html I am having the hardest time trying to figure out why my last li item is being pushed to the bottom in IE. I have the width, height set for the container. The li has padding/margin to 0. Li is float left. Still being pushed down. Seeking a Guru to help a n00b here. ...

CSShover.htc file fixes problems on IE and creates them in Chrome

Hi, I have attached a CSShover.htc file on my site to rectify the inherent problems in IE when creating a horizontal SPRYmenu in dreamweaver. The file has worked tremendously and displays fine on mozilla and IE. However on Chrome (my default browser) the menu skips accross the page by about 20px. The menu is quite wi...

Span placing off - using Float (only in some browsers)

Please see www.racedayworld.com The plus sign (which is floated on the right of an accordian div panel) is being pushed down in certain browsers, but shows up fine is others... I know it's happening in these browsers... Firefox 3.0.5 IE 7 others? Any ideas? ...

Hexidecimal translation

I downloaded a flash player that has changeable settings. I am trying to change the color of the playlist. Problem is...it's using hex's I have never seen before. The existing hex is 0xdadada (for example, the style of hex) and when I tried to change it to #E1E1E1,which is normally a lighter grey, it came out all black. Does anyone kno...

Issue with CSS drop down

Im having a little issue with the css drop down in my navigation. The products nav tab is suppose to have the drop down. Additionally, the nav works fine but it seems that the sub categories arent displaying correctly. HERE IS LINK Here is my navigation code: HTML <div id="nav"> <ul id="navlist"> <li><a href="home.html" ...

IE7 div boxes with clear: right and float: left - float to top

Hey, lately i've been slamming my head against my desk to solve this Problem. Didn't work out. I know it can be solved by editing the contents with some clearing elements. Sadly there is some javascript sorting beeing used and the Sourcode is being generated by CMS Components so that would be my last shot. I'm having a few boxes beein...

Safari not scaling bullet images

When you zoom in on a page in Safari and the bullets have images assigned to them, the images don't scale with the text. If you zoom in on a page in FF the bullet images will scale. Is there a way to do make that happen in Safari without using background images? ...

Full page border | CSS

Isn't there a CSS way of having the page to get a border around the page, even if the content was not big enough for the page to scroll and there's still a border around the page. I think I remember I saw one CSS method before was like something > something, I don't know, do you know? lol If you know, many thanks :) ...

PyQt WebKit CSS background image not showing

I'm making a Twitter client with PyQt, which uses WebKit to draw the tweet list. Now I'm trying to use CSS to set a background image in the WebKit widget - but the image won't show up. This is the relevant part of the CSS: body { ...

Why is this span above the text? I want it beside the text.

<td valign="center" colspan="2"> <a href="" class="table_desc" > <span class="desc_info_butt"></span> </a> text here </td> .desc_info_butt{ background:url(Description_Button.png) top left no-repeat; height:16px; width:16px; display:block; } For some reason, the image and text appear on two different li...

How to make a css navigation menu "selected" option still clickable

So I have a fairly simple vertical CSS menu based off of UL. <ul class="vertnav"> <li><a href="unselected1.php">Item1</a></li> <li><a href="unselected2.php">Item2</a></li> <li><a href="selected.php" class="vertnavdown">Selected</a></li> </ul> I want three basic colors (say tan for default LI, orange for VERTNAVDOWN, and red for A:HOVE...

How to align 3 divs (left/center/right) inside another div?

I want to have 3 divs aligned inside a container div, something like this: [[LEFT] [CENTER] [RIGHT]] Container div is 100% wide (no set width), and center div should remain in center after resizing the container. So I set: #container{width:100%;} #left{float:left;width:100px;} #right{float:right;width:100px;} #center{ma...

CSS: Is it possible to use only a set part of an image as a background filler?

I have background image for a site header with fixed width. Now I am trying to convert it to a stretching layout. Is it possible (in CSS2) to take 1px wide portion from the middle of that header image and make a filler out of it? Otherwise I would need to manually cut 1px wide portion of an image, save it as a separated image, and use ...

Absolute positioning in IE6, using left: 0; and right: 0; simultaneously

Here is my website: http://dagwaging.110mb.com/ View it in any good browser, then in IE6. It dies in IE6. It seems that in IE6, one can't do this: div { position: absolute; left: 0px; right: 0px; } or this: div { position: absolute; top: 0px; bottom: 0px; } Absolute positions cannot be set for left and right or top and bottom at th...

100% height on nested table cell in IE

I want a nested table to expand to the height of the enclosing cell. This works as expected in Firefox/Chrome/Safari, but not in IE7 or IE8. Please see the example here: http://www.bitmechanic.com/heightDemo.html The DOCTYPE is relevant. While the demo above validates as HTML 4.01 Strict, it does not render properly in IE7. If I re...

Selecting only first level element, not child elements with the same element name

How would I select only the first level .block and not any of the children? $('.block:not("Children of this here")') <-- <div class="block"> <!-- this --> <div class="block"> <!-- not this --> <div class="block"> <!-- not this --> </div> </div> </div> <div class="block"> <!-- and this --> <div class="block"> <!-- not th...