CSS / Skin File in MVC

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
12 years ago
Hi there,

I want to be able to control the CSS on my dropdown list ie Currency Selector individually. In the Forms type I would go to the Skin File and stick an entry in the for the css class and then add the entry in the style sheet.

Cant find a skin file, how do i give my ddls an individual class/ style id name?
12 years ago
There is no Skin files in MVC

if you want to design some controls like drop-down menu or text field you need to create css classes similar to this and encapsulate your control to <div>:

.topDropdown select  {
style: some nice stuff;
style: some nice stuff;
}

or

.contact-field input  {
some-border: some style;
text: some style;
}

does this make sense?
12 years ago
Cheers wxD

It made total sense because when I read your post it popped back into my head - think I have spent too many hours tweaking padding and margins and its frazzled my brain!

Thank you for the refresher :o)
12 years ago
You are always welcome!
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.