css

magento - change the colour of the footer links text

Hello there, hoping somebody might be able to help me. I am currently using a hellothemes theme. I would like to change the colour of the footer links text. Any ideas on how to? Also can anyone explain the differences between the CSS's on Boxes.css: Mage_CSS_B Common Elements Mage_CSS_E Shop Pages Mage_CSS_F Overrides etc... Regard...

HTML/CSS: One element, 1 pixel high, 100% wide, 0 images, single color, all browsers

Hi I'm looking for a way to do something which in my opinion should be super simple, but I couldn't figure it out... I want a graphical element on my web page which is exactly 1 pixel high, 100% wide and has a certain color, let's say red. It should look exactly the same in all browser and should preferably not break the semantics too ...

How can I create a box big enough to contain whatever content I put in it?

Here is a link to my problematic page: http://www.studioteknik.com/lamouvance/programmation.php I'm trying to have a box be as big as the content injected into it (with PHP). It works on IE6 but not in Firefox... maybe I have done too many tricks, that the world is now upside down... Please, help! I'm sure it a one line solution.....

Setting the correct orientation for scrollbars in right-to-left pages.

I'm working with right-to-left layouts at the moment (think Hebrew or Arabic). In RTL, the page is generally flipped horizontally. However, I can't figure out how to change the orientation of the scrollbars. I would assume that the scrollbars should appear on the left side of a scrollable element, not the right side like it does in an...

Are there any issues with using Niceforms?

I just came across Niceforms and they look..well, nice. I was wondering if anyone has used these? Are they fully cross browser compatible? Are there any other issues? ...

Inherited Text-Decoration style

How would I negate or remove a parents text-decoration style? For example in the following, both the text and the anchor have a text-decoration of line-through, is there a way to not have that applied to the anchor tag? <span style="text-decoration:line-through;"> Dead Text <a href="#" style="text-decoration:underline;color:Red;">Not ...

Debugging lightbox ul for ie6

Hi, I have completely debugged my site except for one page: http://hqinternetsolutions.com/fullservice/movies.html The li's do not appear correctly in ie 6 or 7, but work fine in the other browsers. The html is very simple: ul li and the anchor tags. The css is also simple: #moviegrid{ width:560px; margin:20px auto; heigh...

little folding triangles?

Based on the style of the 'turning' triangle that opens up a sub menu. Say I had a form that had lender name address city.... how would I add extra section to that form for a second lender name address.... ? Not many people are going to need this on my site but the one's that do, must have the extra fields. I would like to conceal the e...

How do I reduce the vertical space between list items in an unordered list?

I've got a very simple html unordered list: <ul> <li>First</li> <li>Second</li> </ul> The problem is that the default styling for such a list in firefox leaves a lot of space between each list item - about the same as between paragraphs in a <p> tag. My google-fu is proving uncharacteristically useless today - how do I reduce that ve...

Do you use a CSS framework?

If yes, which one? Why? If no, why? How do you fix cross browser CSS rendering? I currently use blueprint css, and I wonder if it's a good choice. Thanks! :) ...

iFrame not expand to 100% height

I have this below html. And I would like the iFrame to cover the rest of the screen with 100% on whatever left. I tried "100%" and "*" in height attribute but not working. Why is that? Thanks <html xmlns="http://www.w3.org/1999/xhtml"&gt; <head> </head> <body> <div id="container-frame"> <img id="if-logo" height="35" width="84" alt="Kuck...

how to generate the effect of dotted line under a <tr> element using css?

<tr class="dotted"> <td><strong>Profile Information</strong></td> </tr> how to write the "dotted" class in css to achieve that effect? ...

CSS: how do I create a gap between rows in a table?

Meaning making the resultant table look less like this: [===ROW===] [===ROW===] [===ROW===] [===ROW===] ... and more like this: [===ROW===] [===ROW===] [===ROW===] [===ROW===] I tried adding margin-bottom:1em; to both td and tr but got nothing. Any ideas? ...

How can you set skining like upSkin,downSkin,overSkin to Accordion in flex ?

In my project i used Accordion . if i add skin to Accordion then so error ? but i tried like <mx:Accordion borderStyle="solid" width="212" height="346" upSkin="@Embed(source='image/UPDATE.png')" > But shows error like Cannot resolve attribute 'upSkin' for component type mx.containers.Accordion. how can i add overskin,downskin,upskin ...

Change color of date

How do I change datepicker backgroundcolor for SU MO TU .....? Totally noob here... where do i need to look? ...

How to detect if an element is not visible in a fast way in JavaScript?

Hi! In the past we used the CSS attribute "display" to show and hide DOM elements. To check if an element is visible, we could just use: element.offsetWidth > 0 Since we had some problems with Flash and Java Applets (they stop when they get display:none) we switched to the CSS attribute "visibility". I am now looking for a fast and e...

jQuery Drop Down Menu - slideToggle

jQuery $(document).ready(function(){ $('.cats_showall').click(function(){ $('.cats_dropdown li').slideToggle(); }); }); CSS .cats_dropdown li{ display: none; } .cats_dropdown > li:first-child{ display: list-item; } HTML <ul class="cats_dropdown"> <li>Category 1 - <a href="#" class="cats_showall">Show all</a></li> ...

How to create a link on an empty DIV?

I'm using CSS to create a header graphic: #header { height:125px; background:url(/Content/images/header_footer.jpg) -0 0 no-repeat; } then: <div id="header"> <!-- navigation START --> <ul id="main_navigation"> Is there a way to make the graphic (space above the nav UL) into a clickable link? thx ...

Change select box style

I want to change select box style by using css and jquery is it possible? ...

automatic jquery stylesheet switcher

I have seen many css switchers which place a button allowing the user to change styles to suit their taste. I am looking for a similar solution that I have not yet found. This is the closest: http://net.tutsplus.com/demos/03_jQueryStyleSwitcher/demo/index.php# I want my page to fade from one style sheet to the next every x seconds, so...