themes

Spring MVC Webapp: Where to store paths to common images?

I'm building a Spring MVC web application with Tiles/JSP as the view technology. Previously I stored the paths to common images in class Common: public final static String IMG_BREADCRUMBS_NEXT = "/shared/images/famfam/bullet_arrow_right.png"; Then I would use this class in jsp to get the image src like <img src="<%= Common.IMG_BREA...

Wordpress MU themes and Plugins

Hi, I have some X number of blogs setup in the Wordpress MU . I need to install themes for each of the blogs. How do I install themes for them? If I install in the main directory will it work for all the blogs or I need to install for each of the blogs separately as we do in the traditional Wordpress. Please let me know for plugins ...

Liferay portal theme issue

Hi there, occasionally when hitting the landing page after signing in, the users personal space is displayed instead of the default guest page. This is does not happen often, but my boss does not want it happening. I am hard pressed for an explanation. ...

What is the difference between a theme and a template?

I am trying to migrate my site to Drupal and I am confused about themes and templates. The look and feel of the pages in my current site are completely controlled by template files and CSS. How does it work in Drupal? ...

Themable User Controls in WPF

How can I create a UserControl in WPF that has a basic default style but can also easily themed when needed? Do you have some good guidelines, blog entries or example that explain this specific topic? Thank you in advance, Marco ...

What is the preferred way to do site templates and themes with Wicket?

I'm just learning Wicket, and Googling yields different results about how to theme/template a site using Wicket. It appears that the common methods are: Markup Inheritance (description) Borders (description) Reusable Panels (description) Fragments (description) What is the best practices / "right" way to do this in Wicket? Or do the...

WinForms: How to custom draw using the selected RenderMode?

I have some custom controls that will require custom painting. I cannot use any of the drawing services available in Windows (e.g. ThemeAPI), since .NET applications ignore look-and-feel of the operating system they are on, and instead use their own look and feel. e.g. Toolbars are not the toolbar common control Status bars are not t...

How to disable display of authoring information in drupal?

Hi, Am doing a local website in drupal. I have applied the theme 'Acquia Marina' (http://drupal.org/node/315555) to it. Under Administer > Themes > Configure I have unchecked "Enable or disable the submitted by Username on date text when displaying posts of the following type" for type 'Page' and the same is enabled for 'Story' (I don'...

Issue with Drupal "sites" folder

I have a Drupal install on the MediaTemple gs hosting plan. The site is up and working fine but I've had some issues with the "sites" folder. If I put themes in the "sites/default/themes" folder, they show up on the "Themes" folder but none of the icons show up for each theme. Enabling a theme removes all the styling from the site like ...

Strategy in the design and coding of wordpress themes?

For creating wordpress themes, people usually follow one of these two methods Design Mockup in photoshop or similar tool and code the HTML & CSS from the scratch Choose a base theme and design the mockup keeping the base theme in mind and code on the selected base theme. Which is the better way of these (or anything other than these)...

Theme a CCK input form in Drupal 6

In my template.php file I've this: function myadmintheme_theme(&$existing, $type, $theme, $path) { return array( 'node_form' => array( 'arguments' => array('form' => NULL), 'template' => 'ccktype', ), ); } And I've a ccktype.tpl.php in the same dir: <b>works!</b> But is not working, if I enter to node/add/cckt...

C# Windows Forms Theme Support

Hi, Where can i find theme support for my c# windows applications.? Is there any theme maker or ready for use themes :) ...

eclipse coloring : what is the pref item for background color of all occurances of selection

In Eclipse, when a identifier ( function name or variable etc ) is clicked, the background of that identifier and all other occurrences of that identifier are given a different background color. Can anybody tell me, what is the preference item for changing background color for this. ( last this remaning in my dark eclipse settings ). ...

Drupal - Apache's Mod_Deflate breaks CSS

We have enabled Apache's mod_deflate on our drupal site. From that point onwards, we are noticing that CSS files aren't getting loaded properly. It doesn't happen every time. Kinda random. Did anyone else notice this issue? If so, any suggested solutions? ...

SkinID on usercontrol

I have created a usercontrol (a custom button control), how to apply skin on that control. What to write in the skin file for eg for a asp:button i will write <asp:button SkinID ="btnSkinBlue" runat = "server"/>. What to write for a user control? ...

ASP.NET Themes - Should They Be Used?

I'd been reading up on themes in my ASP.NET book and thought that it could be a very handy solution, then I met some problems. The theme picks up every single CSS file in the folder If you want to use reset styles (where ordering is important) the order of imported stylesheets is not guaranteed Your master page would not explicitly ind...

Modify XP theme (appearance&color scheme) from a vbscript

Does anybody know how to modify Windows XP appearance and color scheme using VBScript? I have an application written in Visual C++ that needs Windows XP appearance (not classic) to be properly displayed and I want to set this properties from the Installation. I use InstallShield to make the installer and VBScript to perform some custom...

How do I give the RichTextBox a flat look?

Hi! I'm working on a WinForms SmartClient application, which uses a lot of RichTextBox controls - some in place of the regular TextBox for various reasons. Unfortunately the RichTextBox draws the ugly Win95 3D border instead of the themed XP or Vista style border. Does anyone know of a way to apply the themed border to the RichTextBox?...

jQuery dialog theme and style

How do I change the title bar background color of jQuery dialog? I have looked at the themeroller but it does not seem to work for me. Thanks ...

How to skin all ASP.Net validators?

I want all of the validators in an ASP.Net 3.5 website to have a CssClass value of "error". My initial thought was to do this in a theme skin like so: <asp:CompareValidator runat="server" CssClass="error" /> <asp:CustomValidator runat="server" CssClass="error" /> <asp:RequiredFieldValidator runat="server" CssClass="error...