Tagged Questions
The styling tag has no wiki summary.
30
votes
12answers
10k views
Best CSS color wheel sites [closed]
What site(s) do you recommend for looking at complimentary colors for site design? It would also be beneficial to enter a hex or RGB value and have the color wheel spit back complimentary colors.
...
16
votes
5answers
7k views
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.
...
11
votes
4answers
4k views
Can I style a Google Map?
How much control do I have regarding the styling of a google map?
Can I make it more closely resemble a site's colour scheme or are we stuck with pastels?
8
votes
11answers
2k views
How can I give each <li> its own bullet image?
I have tried
<ul id="contact_list">
<li id="phone">Local 604-555-5555</li>
<li id="i18l_phone">Toll-Free 1-800-555-5555</li>
</ul>
with
#contact_list
{
...
7
votes
4answers
14k views
Style the MouseOver on a Silverlight/WPF button
Struggling with styling the mouse over for a button ... I have managed to style the button (solid red), but I would like for it to change to solid black whenever a mouse over occurs. I am new to XAML, ...
7
votes
5answers
2k views
CSS formatter NOT based on CSS Tidy?
I can't find a css formatter (web based or Windows app) which formats the css where it puts the open brace on its own line aligned with its close brace, plus indents the attributes. The web based css ...
7
votes
6answers
2k views
Inherit css properties
I have only a basic knowledge of css, is it possible to inherit a property from one style into another style. So for instance I could inherit the font size specified in my default paragrah tag ...
7
votes
8answers
858 views
CSS 'schema' how-to
How does one go about establishing a CSS 'schema', or hierarchy, of general element styles, nested element styles, and classed element styles. For a rank novice like me, the amount of information in ...
6
votes
2answers
1k views
What is the best approach towards styling GWT applications?
General approach in GWT is to use Panels and then apply custom CSS themes to get a customized look. While I can achieve a certain extent of personalization of my GWT app through CSS tinkering, I was ...
5
votes
2answers
464 views
How are scrollbars in new Google Docs UI styled (esp. the arrow buttons)?
The new Google Docs UI features cool gray scrollbars.
These appear to be regular scrollbars styled with selectors like ::-webkit-scrollbar-thumb. Which is nice and accessible.
However, I can't get ...
5
votes
4answers
140 views
CSS style specific characters inside a text input
I have a script that generates text when a user press a button. This text is sent to an input box, so when I press the button some text appears in one input box.
I would like to know if there's any ...
5
votes
3answers
68 views
Location based styling in WPF possible?
In CSS it is possible to style HTML elements based on their location in the element tree:
div#container div#menu a
I'd like to do the same in WPF, so that only links in a menu section are styled.
...
5
votes
2answers
142 views
why does styling TDs in jquery make the markup insane?
I'm trying to add a simple border to all the table cells in a table.
It's important that my markup remains simple for some other functionality i have in place to work.
Lets say I style tds like ...
5
votes
2answers
818 views
Where can I get themes for WPF controls that resemble the Visual Studio 2010 interface?
My application is build around AvalonDock, which has quite good Visual Studio 2010 skin (which is much prettier than all the other skins). Now I would like to style the rest of my application to go ...
5
votes
2answers
1k views
remove red rectangle around combobox
i need to remove red rectangle around combobox. I have setup combobox in xaml like (below) this and i`m trying to override of the Validation.ErrorTemplate.
<ComboBox ...
5
votes
3answers
85 views
How do I change the backcolor of a textbox when user clicks into it with CSS
Question is in the subject.
5
votes
1answer
228 views
Is there a styleguide for developing SWT applications?
I'm not a proficient GUI developer, and I have no talent for design. Is there a comprehensive style guide for developing SWT applications? I'm especially interested in standards for developing ...
5
votes
9answers
3k views
CSS Positioning Question - Tables vs. Absolute vs. DL [closed]
I'd like to align label/value pairs in the center using CSS without using absolute positioning or tables (see screen shot). In that screen shot I positioned the value (ie. $4,500/wk) absolute and ...
4
votes
1answer
1k views
Set a padding on dataGridCells in WPF
simple question: How can I set a padding on a dataGridCell in WPF?
(either one at a time or on all cells, I don't care)
I have tried using the DataGird.CellStyle property by adding a setter on the ...
4
votes
2answers
178 views
How do I style a GroupBox caption separately from its contents?
I'm developing a WinForms application and on one form, I use a GroupBox to group related controls together. I would like to style the caption in a particular way (e.g. making the caption bold). By ...
4
votes
1answer
115 views
managing user editable WPF styles
I have some shared styles which define how my DataGrids look and i keep them in Styles.xaml
I added a settings page, that will let the user change some of the colors. On that page, I have a sample ...
4
votes
1answer
897 views
WPF Listbox - Empty List Display Message
Can anyone suggest the best way to display a Textblock (with a text such as "List Empty") so that it's visibility is bound to the Items.Count.
I have tried the following code and can't get it to ...
4
votes
3answers
4k views
textarea's rows, and cols attribute in css
I just had a quick css form question. I am trying to set the textarea's rows and columns attributes via css. How would I do this in CSS?
4
votes
2answers
5k views
Flex HBox alignment
I experimenting with Flex Styling, and I came across an alignment issue.
I have two image components inside an HBox, and the HBox inside a Canvas, which in turn is inside the main Application.
...
4
votes
4answers
4k views
WPF SystemColors: color of TextBox border
I am trying to make a search TextBox with an embedded magnifying glass icon. I have the following markup so far:
<Border DockPanel.Dock="Bottom" Margin="2,4,0,4" BorderThickness="1" ...
4
votes
7answers
166 views
What is the best way to determine the source of a CSS issue
I have been working on a webpage. It is the first I have actually tried to design using an image and then use proper CSS layout rather than tables.
...
4
votes
5answers
410 views
How to choose colors in web development
When I build a site I tend to do a bit of graphic design (developer style) in Paint.NET, but how do I know the colors will all display properly on all browsers on different machines? What color depth ...
3
votes
1answer
46 views
HTML Frontend for all screensizes
First off, I'm not sure if this is actually a "legal" question to ask here on StackOverflow since it is not really about programming, but more on the frontend-part.
I'm about to create a webpage ...
3
votes
2answers
286 views
CSS-like styling class for iOS
I’m currently implementing a CSS-like styling engine for my iOS app’s native controls, in order to avoid reading a whole bunch of styling properties from a plist and applying every single one on each ...
3
votes
1answer
195 views
Iphone Message App like textField
I was trying to style my iphone app's textfield like the one in the messaging app. I could not style the textfield to have shadow like the messaging app. Messaging app has a shadow that drops inside ...
3
votes
2answers
418 views
Styling WPF/Silverlight ComboBox
I'm trying to figure out how to change the popup part of the ComboBox control. I'm not very familiar with custom styling and templating.
I have a defined popup as in:
<Popup
Name="Popup"
...
3
votes
4answers
213 views
Is it possible to style a title? (and with CSS or js?)
I was wondering if it was possible to style a title:
<a href="#" title="This is a title">Hello</a>
The styling question has two aspects:
Text formatting / encoding (Which I guess is ...
3
votes
2answers
2k views
WPF Submenu styling
I have a ContextMenu style and a MenuItem style, both of which are working properly on the top menu. The problem is if I add a submenu to a menu item, then the submenu is not being styled properly. ...
3
votes
4answers
1k views
Setting TabItem foreground color also sets the TabControl foreground color
I have a TabControl that I have restyled. The TabItem has a trigger that is fired when the TabItem is selected that changes the TabItem text to bold and green. The problem I have is that the text in ...
3
votes
1answer
2k views
Cross Browser input field width stylization
I have a shipping/billing input form and I'm having trouble styling the input fields to be the same width...
The Problem:
-a field <input type="text" size="X" /> appears to render with ...
3
votes
1answer
92 views
WPF - Implicitly style control within another control
Is it possible in WPF to implictly style a control that sits within another control?
For example, style an image within a button, without styling all images?
3
votes
3answers
468 views
globally style all html buttons only without requiring a 'class','id' or 'name'
The following styles all input tags, which means any 'type' of input tag gets styled.
input {
color:#050;
font: bold 84% 'trebuchet ms',helvetica,sans-serif;
background-color:#ffffff;
border:1px ...
3
votes
4answers
162 views
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.
...
3
votes
4answers
1k views
Styling last item in a ListView
is there any easy way to style the last item in a ListView control? Basicly need to append a class.
Cheers
3
votes
6answers
326 views
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 ...
3
votes
4answers
3k views
Drupal/Ubercart … node styling?
I am trying to style the product view on a Drupal site, but am having problems. I can't find where the node (product) view is put together in ubercart!
I'm using UC 5.x-1.7, and I need to style the ...
3
votes
5answers
16k views
How to style the slider control in WPF?
I want to style the slider control so that the height of the draggable thumb is set to 8 pixels.
What is the simplest way to do this in WPF?
<Slider>
<Slider.Style>
<!-- ...
3
votes
1answer
4k views
How do I apply a dynamic style in code at runtime?
I need to apply a style in code ike this:
TextBlock.Style = TryFindResource("MyStyle") as Style;
that will be updated dynamically when the resource dictionary is changed (i.e. skin is replaced at ...
3
votes
3answers
1k views
what is a good cross-platform css compressor?
i need to compress my css as part of my ant build. i noticed that csstidy does this, but it would not be easy to include this in my ant build because i would need to use a different binary on ...
2
votes
0answers
18 views
Dojo data-dojo-props style overwritten
I'm using a dojo ContentPane to render an openlayers map. When the DOM is ready and the map is inserted the sytle of the dijit is overwritten. I've tried specifiying the height and width in a CSS by ...
2
votes
1answer
110 views
WPF DataGrid row foreground mouseover color
I have been messing around with datagrid styling for a couple of days now, and I am having one issue left which I can not seem to solve.
I want to highligt the text of the row on which I hover with ...
2
votes
2answers
66 views
Alternative to JqueryUI?
Need alternative to JqueryUI mostly for styling input, select and other such stuff.
I saw ninjaUI and Vaadin. Vaadin is really sexy, i wonder if there are any alike that are as good as mentioned ?
2
votes
4answers
50 views
Styling innerHTML output
I'm trying to create a JavaScript program using the innerHTML function wherein the user types in the first and last names of somebody in two text-boxes and the the JavaScript manipulates the names ...
2
votes
1answer
129 views
Styling the popup of a QCompleter in PyQt
Is is possible to apply a stylesheet to the popup portion of a QCompleter tied to a QCombobox? If not, does it require delegate magic? If so, how might that even work as they do tend to confuse the ...
2
votes
6answers
131 views
Customize HTML <select> with CSS
I'm searching for a way to customize a select element in my HTML code.
I wanted my select to look like this:
I want the user to be able to see an image and two texts, which represents the first ...