css help
-
Hi.. I'm currently like to do a menu page using C# web application. On the menu page itself i will like to use css(cascading style sheet) and do. From there then i like the page to .aspx. I would like to ask if anyones has done css or who knows it, don't mind share with me as i using css file for the 1st time. Thanks!! Cheers!
-
Hi.. I'm currently like to do a menu page using C# web application. On the menu page itself i will like to use css(cascading style sheet) and do. From there then i like the page to .aspx. I would like to ask if anyones has done css or who knows it, don't mind share with me as i using css file for the 1st time. Thanks!! Cheers!
Hi there, just simply create ur css file and then make a reference to this file in ur aspx page inside the tag as below.. .... .... << >>
-
Hi there, just simply create ur css file and then make a reference to this file in ur aspx page inside the tag as below.. .... .... << >>
Hi.. I just like to ask that.. I have create the code below under css file: body { background-color: yellow; } .cwMainBorderColor { background-color: #003e56; } .cwSideBarHolder { border-right: white 2px solid; vertical-align: top; width: 2%; background-color: #003e56; } .cwTextBox { font-weight: normal; font-size: 13px; color: black; font-family: Arial, sans-serif; } .cwComboBox { font-weight: normal; font-size: 13px; color: black; font-family: Arial, sans-serif; } .cwCheckBox { font-weight: normal; font-size: 13px; color: black; font-family: Arial, sans-serif; } .cwRadioButton { font-weight: normal; font-size: 13px; color: black; font-family: Arial, sans-serif; } .cwButtonTiny { font-size: 8pt; background-image: url(Images/Buttons/b_tiny.gif); width: 40px; cursor: hand; color: #2a5f86; border-top-style: none; background-repeat: no-repeat; font-family: Verdana, Arial, Helvetica, sans-serif; border-right-style: none; border-left-style: none; height: 27px; border-bottom-style: none; } And i have also put the stylesheet to the aspx page inside the tag as below.. .... .... But somehow it dosen't work at all!! When i run the aspx it show nothing at all.. Am i missing out on somthing?? Thanks for your help.. Cheers!
-
Hi.. I just like to ask that.. I have create the code below under css file: body { background-color: yellow; } .cwMainBorderColor { background-color: #003e56; } .cwSideBarHolder { border-right: white 2px solid; vertical-align: top; width: 2%; background-color: #003e56; } .cwTextBox { font-weight: normal; font-size: 13px; color: black; font-family: Arial, sans-serif; } .cwComboBox { font-weight: normal; font-size: 13px; color: black; font-family: Arial, sans-serif; } .cwCheckBox { font-weight: normal; font-size: 13px; color: black; font-family: Arial, sans-serif; } .cwRadioButton { font-weight: normal; font-size: 13px; color: black; font-family: Arial, sans-serif; } .cwButtonTiny { font-size: 8pt; background-image: url(Images/Buttons/b_tiny.gif); width: 40px; cursor: hand; color: #2a5f86; border-top-style: none; background-repeat: no-repeat; font-family: Verdana, Arial, Helvetica, sans-serif; border-right-style: none; border-left-style: none; height: 27px; border-bottom-style: none; } And i have also put the stylesheet to the aspx page inside the tag as below.. .... .... But somehow it dosen't work at all!! When i run the aspx it show nothing at all.. Am i missing out on somthing?? Thanks for your help.. Cheers!
Hello_mouse wrote:
somehow it dosen't work at all!!
You mean the css is not applying to the web page? And make sure that the value of the href attribute is correct? the relative path to ur css file is correct? << >>