styling

Drupal Custom Form Arrangement/Placement

I am just starting out with Drupal but I am pretty clueless how to custom 'place' all of the form elements. I usually have a lot of stuff, like this other dude's thing, so placement and aesthetics are a MUST: Drupal's default way of rendering forums like a questionnaire (one long horizontal column with lots of spaces) are unacceptable...

Open Source Calendar Solutions (integrate with Google Calendar)

I'm looking for an open-source javascript solution that would allow me to style a calendar. So far the best I've found has been http://arshaw.com/fullcalendar/ the only problem with this is that it doesn't integrate with multiple Google Calendars. Has anyone seen something that does? ...

WPF templating/styling issue

Given this piece of XAML <DockPanel> <DockPanel.Resources> <Style TargetType="{x:Type GroupBox}"> <Setter Property="Template"> <Setter.Value> <ControlTemplate TargetType="{x:Type GroupBox}"> <DockPanel> <Border DockPanel.Dock="Top"> <Border.Resources> ...

CSS for widgets in gwt

hi, i have few listbox widget, and i need to change the color of the arrow that opens the drop down list, and its surrounding box how can i do it with the CSS? is there an attribute list for all styles that can be applied on a widget? Me ...

Open Source LaTeX environment for educational books?

Fully aware of the LaTeX features to define new environment allowing me to do about anything, I was wondering if there are Open Source packages that allows me to do book branding by predefining environments for examples, excursions, listings, question sections, etc. For example, have an example environment with a blue-ish background, sec...

Applying Dynamic Styles to Skins in Flex

I have a skin for a scrollbar thumb that I want to be able to style or set properties dynamically. <mx:Panel verticalScrollBarStyleName="verticalScrollBarNoArrows"> </mx:Panel> style.css .verticalScrollBarNoArrows { upArrowSkin: ClassReference(null); downArrowSkin: ClassReference(null); trackSkin: ClassRefere...

HTML element aside from headers <h1><h2>, ect

Hi! I was browsing related issues for my question but I can't seem to find the answer for it. Anyways, I want to know if I can still use the p or div tags instead of header tags when I have already used both (p and div tags) as plain text on my site. The reason is that I only want to have one header tag h1 present in my site. I tried to ...

textarea's rows, and cols attribute in css

I just had a quick css form question. I am trying to get the textarea's rows, and cols attribute set in css. So for example how can I do this in CSS. ...

Android XML Styling

I'm using themes to style widgets in Android. With the code: <item name="android:width">200px</item> ... i can set the width of the widget to 200px. But how can I specify "wrap_content" and "fill_parent"? Strings are not allowed there! ...

Getting text to display under an image in a navigation

I want my navigation to look like this: <icon> <icon> <icon> Title Longer Title Title Ideally, I want my code to look like: <li> <img src="images/icon.png" /> <a class="link_title">Title 1</a> </li> <li> <img src="images/icon.png"/> <a class="link_title">Title 2</a> </li> <li> <img src="images/i...

WPF DataTrigger not firing when Application style applied???

Hi guys, Any help on this problem would be greatly appreciated as I have been looking around all day for answers surrounding this area! I have applied a global style to my WPF application by adding in a merged dictionary to the App.xaml. This has applied the style across the application like intended but there are a number of things t...

Silverlight: Setting ComboBox Background-Color Programmatically

This seems like it's far more difficult than it should be, but I'd like to set the background color of a dropdown combobox programmatically (ie. if the user selects one value, I'd like it to appear red, otherwise blue...) What I've noticed is that if you just set the Background property to a SolidColorBrush, the only thing that seems to...

Create a System-tray styled box in Winforms (C#)

I've been hunting about for some resources on this, and I can't find any, so I'll bring in here. I want to make a window similar in style to the quick launch box which you see when you open the quick launch bar: Sadly, I can't find any resources on this; can you help me out? ...

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 layouts, what margins and spacing between controls to use, font sizes and stuff like that. ...

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 solid; border-color: #696 #363 #363 #696; } how do I isolate it so all button input 'types' are styled differently than text input 'typ...

WPF - Implicitly style control within another control

Hi, 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? ...

Looking for QT styling with borderless window Tutorial or how to

Hello all im new to qt c++ i downloaded the latest windows version dome some tutorials and its great i saw some styling options that the qt framework has and its great , but now i need to build my application that its main windows (form) it designed/skinned with image without the rectangle borders (borderless ? ) . how can i do it wit...

WPF share column width between separate grids

I have the following setup on my WPF UserControl: <GroupBox> <Grid> ... <Grid> <Grid.ColumnDefinitions> <ColumnDefinition Width="Auto" /> <GroupBox> <Grid> <Grid> <Grid.ColumnDefinitions> <ColumnDefinition Width="..." /> I'd like the second ColumnDefinition to be the same width as the first...

Need an online resource to help me style a web applcication.

I have a website that I put together and it's functional but it doesn't look nice. I've assigned CSS classes and IDs to everything to make it easier to come back and add styles later, but I have NO skills when it comes to eye-pleasing colors and layouts. There are many sites that offer free website templates, but they're all so specifi...

CSS text styling

Is there a way to style the first word in tag differently than the other words in that tag? For example, say I had this snippet of code: <h4>Worpress Quick Tip Of The Week</h4> Is there way I could style the word "Wordpress" differently than the other words using css? I know I could just put a span with a unique class around the word ...