css

CSS: How to fix an element horizontally but not vertically?

You can see an example here: http://alboard.free.fr/adrien/test.html The layout is based on horizontal scrolling (the red element). But I want the top part to be fixed (the blue element). If the user resizes the viewport, a vertical scrollbar will appear. If at this point the user scrolls down, the red element will go up while the blu...

Superfish menu color?

How do I change the color of the superfish menu? ...

@import or <link> for importing stylesheets?

Which method is best for importing multiple stylesheets? I assume, as with most things regarding the web, the answer is 'it depends', but are there downsides of using one or the other? ...

Simple jQuery works in HTML, not ASP.NET

jQuery noob here, trying to produce alternating row background colors. This works in HTML: <script type="text/javascript"> $(document).ready(function() { $('.stripedtable tr:even td').addClass(" evenrow"); alert("Just executed stripedtable jQuery in MasterPage"); }); </scrip...

Firefox CSS Against me? ?

Hello Everyone. I am a Programmer and not a Designer. My boss asked me to modify the print.css I modified the print.css 10 Hours, nothing nothing and nothing happened. If with IE everything looks good, in FF it looks horrible. If with FF everything looks good, in IE it looks horrible. What did i wrong? Pls have a look at this website ...

How to force an hidden+empty <div> to take up space?

Note that my question is not about how to fill remaining space with <div>. Background: I'm trying to use jQuery sortable with a series of horizontally laid out <div>, with class "column" .column { display:inline-block; } Now in FF, everything looks good. During dragging, the "placeholder" which jQuery sortable injects is an empty <...

CSS: Equal height divs without margin hack

Can you make two divs have equal height without 1) margin hacks because then I can't have a border : margin-bottom : -500px; padding-bottom : 500px; 2) Javascript because then there is flicker on the page for non-cached users. 3) Fixed height because then I can't add more content dynamically. It is for this page http://www.stdico...

My conditional css stylesheets for IE work when I test the pages locally but are not recognized once I upload the pages to my website

Hi, I'm using the IE recognized conditional statement to use an IE specific stylesheet for IE browsers: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"&gt; <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>Touringhouse</title> <link type="text/css" rel="st...

input size Vs width

<input name="txtId" type="text" size="20" /> or <input name="txtId" type="text" style="width:150px;"/> Which one is optimal Cross-browser friendly code? Of course, it depends on requirement but curious to know how people around decide which on what basis. (afraid I expressed my question clearly) ...

jquery kwicks issue

Hi there, I've been working on my problem for the past few hours and am at the end of my rope. I need help. I have a staging page where I tested the code and verfied that it works, but on the live page, the code refuses to budge. I can't figure out why kwicks jq seems to be ignoring the html on the jujumamablog.com header. <-- this i...

css indentation

I like to do, as in indesign or quark... paragraph indent... for picure how is the proper way to do that in html and css I dont want the text to go round the image... i like to have the whole left part protected putting margin to the picture will do the trick... but for 10-20-30 pixel (fixed amount (bad)) i have try negative position...

What is currently the best HTML/CSS/Javascript configuration?

I'm getting more into jQuery and so have set up a HTML/Javascript/CSS base site which I use for all my tests. Since these tests will eventually turn into PHP and ASP.NET MVC websites, I want to use this opportunity to get the basics down right again for modern browsers and web standards before building the scripting languages on top of ...

How to add a 'frame' image (png) without losing interactivity.

Hi there, I'd like to add a png frame over a kwicks image slider, but when I do, I lose the interactivity. How can I add a png frame over an element without losing the interactivity of the element below? You can see the example here: www.jujumamablog.com/jujumama/dev.html Below is the code for the dev page: <!DOCTYPE html PUBLIC "-...

Div tag mixed with php code working in Firefox, not in Internet Explorer

I am trying to set a style for the statement inside echo. It works fine in Firefox but not in Internet Explorer. Help me. Any suggestions will be helpful $nav .= "<div class='current'> $page </div>"; $nav .= " <a onclick='showPage(\"".$page."\")'><div class='other'> $page </div></a> "; $prev = "<a class='lin' onclick='showPage(\""...

Css style not applying in Internet Explorer, but works well in firefox

I am trying to apply css to php code. But it not working well in Internet Explorer, But working fine in firefox Code : echo '<div class="resultno">'; echo "<td>" . $row['stu_id'] . "</td>"." "; echo '</div>'; echo "<td>" . $row['Name'] . "</td><br>". " "; echo "<br>"; And it looks like --> http://www.flickr.com/photo...

input width vs textarea width

After reading the thread http://stackoverflow.com/questions/1480588/input-size-vs-width I'm clear that we should not use size attribute but css style. What will be the cross browser css that shows exactly same width for both input[text] and textarea? BTB, I tried #idInputText, #idTextArea { font: inherit; width: 60ex; } Is it cor...

Apply class to element if div is hidden or visible.

Check out my example here: http://timkjaerlange.com/foobar/test.html I'm currently trying to apply a class to a header based on the visibility of a div on the page. This is my markup: <a href="#">Toggle visibility!</a> <div></div> <h1 class="one">If the box is hidden this headline should be italic.</h1> <h1 class="two">If the box is...

CSS sliding door background image problem.

I noticed I am not the first to ask about CSS sliding doors. However this seems (at least to me) to be a rather odd problem which I have not seen an answer for. Trying to create a simple rounded corner link button: html: <a href="#" class="link_button"><span>Add A New Somthing</span></a> css: .link_button { background...

Vertical alignment (for IE!)

HTML: <div class="product"> <a href="#" class="thumb"><img src="img/thumb_md.png" alt="" /></a> </div> CSS: .product .thumb { position: relative; display: table-cell; vertical-align: bottom; height: 130px; } ..works great in modern browser, except, ofcourse, IE! Is there any workaround? The other solution I tried w...

How to add drop shadow to the current element in a tab menu?

I've got a tabbed menu that looks something like this: The html for it is simple: <div id="menuContainer"> <ul id="menu" class="undecorated "> <li id="menuHome"><%= Html.ActionLink<HomeController>(c=>c.Index(), "Home") %> </li> <li id="menuAbout"><%= Html.ActionLink<UsergroupController>(c=>c.About(), "About") %> ...