styling

Making Tables Out of Hierarchical Lists in CSS

This should be easy, or perhaps impossible :) I have this kind of HTML output <ul> <li>one</li> <li>two <ul> <li>a</li> <li>b</li> </ul> </li> <li>three</li> </ul> and I would like it to appear as one two three a b how can I do this with pure CSS? I can modify the HTML to some exte...

HTML/CSS - Using a image for input type=file

Hi there! How do use this image: http://h899310.devhost.se/proxy/newProxy/uplfile.png Instead of the regular: <input type="file" /> ...

Styling django non-field errors on forms

If I look in Django's forms.py, as_p() calls _html_output(), which styles field errors with self.error_class() (although I can't locate the definition of that). However, _html_output() does NOT style non_field_errors (a.k.a. top_errors in the code). How does one style the non-field errors? Cut and paste all of _html_output? I am usin...

stackOverflow UI design secrets !!??

I am sure all of you have observed the cohesive design of this site. My question is about some of the cool info-boxes...that appear on various events. Like when someone with lower reputation tries to down-vote OR the long box that appears just below the browser address bar when I have got response to one of my questions. These are basic...

Button Style with Different Icons

Hi, i have 5 buttons on my navigation grid. Each button has a different icon. In the button's style, which element do i use to place the image into when im on my main screen? any suggestions would be helpful. Thanks.. ...

jquery addclass styling doesn't work, wrong selector?

<li id="leistungen"><a href="#Leistungen" onclick="sitemapChangeSubMenu('leistungen','leistungencontent','leistungen'); return false;">LEISTUNGEN</a> </li> This is the list-item which I want to style with: $("#leistungen a").addClass("brown"); This doesn't work for either: $("#leistungen").addClass("brown"); my css code is just ...

css stylesheet stronger than jquery addClass?!

hey guys this thing drives me crazy. I defined in my stylsheet ul#menuCnt li a { color:"red"; } If i want to make a hover effect, using jquery this won't change any color :( $("ul#menuCnt li a").hover(function() { $(this).addClass("brown"); }, function() { $(this).removeClass("brown"); }); I'am really confused. If I don't ...

Styling last item in a ListView

Hi there, is there any easy way to style the last item in a ListView control? Basicly need to append a class. Cheers ...

Online or free learning resources for Silverlight Styling

Hy i'm looking for these types of learning resources. One that is explaining the basics of the Silverlight styling(Basic Terms). Or some very simple collection of examples,in wich i can learn a lot. And one is that is very similar to Silverlight Documentation (ex. what property do you need to set if you want have this modification),ex...

In CSS, can I add text of a different style before or after other text?

For example, if the following is part of an HTML file: <span>foo</span> can I somehow add " bar" after it in italics with the .after and .before pseudo-selectors in CSS so that it would say "foo bar"? ...

Styling of data in data grid in wpf

I have data being populated into my data grid.Now,In the last column I have data like "Out of Balance " and "Inbalance". I want the display to show all "out of balance" data as being underlined and red in clour while the "in Balance" data to be green in colour without any underline.Note that, the stored proc would give me initially all t...

How to add a focus style to an editable ComboBox in WPF

I've been looking at the following example on how to style the combo box, but I haven't been able to create a focus effect when going into a editable combo box. Whenever the combo box receives focus, it should go into edit mode and the component should have a focus style. The basic problem is that whenever I go into the edit mode, it's...

In WPF, how do I prevent my style from being overriden?

Please don't get caught up in my example, just bear with me for the sake of the question: In my WPF application, if I wanted all TextBoxes to have a "green" background, I would easily set it as such in my Application.Resources. <Style TargetType="TextBox"> <Setter Property="Background" Value="Green" /> </Style> This works PERFECTLY....

ASP.net MVC v2 - Styling templates

Hi guys Just wondering if anyone has any ideas on how we can style templates... Like if I want to change the MaxLength of a textbox how do I go about doing this. What I would like to be able to do is something like what I can do in WPF with styles and templates... In WPF you can pass through styles to the templates and then choose whe...

sIFR Only the first font-style of glyph in my swf will display, cannot seem to call up the others.

I've uploaded my .swf with bold, normal and italic glyphs of the font embedded. I then go to my sifr-config.js file to style the text using CSS. All properties except the font-style:italic; and font-weight:bold; are effective. In fact, when I try to use these properties the flash text doesn't show up at all. But if I go back into my f...

Styling GridSplitter wpf C#

i want to style my GridSplitter like adding dots on it (as found on http://msdn.microsoft.com/en-us/library/aa970265.aspx). i also want to change gridsplitter color on mouseOver, or apply Aero Theme. <Style x:Key="GridSplitterStyle1" TargetType="{x:Type GridSplitter}"> <Setter Property="Background" Value="{DynamicResource {...

Styling Sylverlight Telerik Radupload

At the moment I'm using Silverlight RadControls from Telerik. In my site I've implemented the RadUpload control. Because the control is not styled the way I want, I'm restyling it for my site. The way I'm doing this is as follows: Right click on xRadUpload > Edit Template > Edit a Copy. After doing this I'm able to style almost everythin...

Flex HBox alignment.

Hello guys. I experimenting with Flex Styling, and i came across a alignment issue. I have two image components inside a HBox, and the HBox inside a Canvas, which in turn is inside the main Application. <mx:Canvas id="Navigation" horizontalCenter="0" bottom="0" left="0" right="0" visible="true" height="40" styleName="transparen...

WPF TabItem Header Images

I've got a TabControl in WPF with 3 tabs, and each tab has an image next to the title of the tab. Here's an example <TabItem> <TabItem.Header> <StackPanel Orientation="Horizontal"> <Image Name="img" Height="auto" Width="auto" Source="images/1.png" /> <TextBlock...

WPF DataGrid style Silverlight DataGrid?

That's not a secret: Silverlight's DataGrid default style is beautiful while WPF's is poor. Instead of reinventing the wheel let me ask the community if anyone has copied the SL styles to use in WPF. Silverlight default-style DataGrid: WPF default-style DataGrid (updated after Saied K's answer): ...