Dear Sir:
I tried to override the existing embedded skin in the page... it is fine and it works.... but if i tried to put it into the separated css file and it didn't work anymore.... is there anything i have to take care with it?
I don't wanna to put the code into the page separately.....
thank you for your kindly help
From edl0022
I tried to override the existing embedded skin in the page... it is fine and it works.... but if i tried to put it into the separated css file and it didn't work anymore.... is there anything i have to take care with it?
| <head id="Head1" runat="server"> |
| <link href="~/css/common.css" type="text/css" rel="stylesheet"/> |
| <link href="~/css/customize.css" type="text/css" rel="stylesheet"/> //<-- Not work to put it inside |
| <style type="text/css"> |
| .rfdDecorated |
| { |
| text-align: center !important; |
| padding-left: 6px !important; |
| border: 1px solid red !important; |
| } |
| div.RadComboBox_Outlook, //<-- fine to just put it in the page |
| div.RadComboBox_Outlook .rcbInput, |
| div.RadComboBoxDropDown_Outlook |
| { |
| font: 10px Arial,"Segoe UI", sans-serif; |
| color: #333; |
| } |
| </style> |
I don't wanna to put the code into the page separately.....
thank you for your kindly help
From edl0022