0 Replies - 591 Views - Last Post: 04 February 2012 - 01:54 AM Rate Topic: -----

Topic Sponsor:

#1 jmotyljr  Icon User is offline

  • New D.I.C Head

Reputation: 0
  • View blog
  • Posts: 14
  • Joined: 08-December 11

Trying to Figure out Skins and Themes, almost there..

Posted 04 February 2012 - 01:54 AM

Howdy all.. So im learning about themes and skins, Im pretty stoked because i figured out the skin part myself :) (newbie if you couldnt tell).This is for the Calendar control, I have to apply a default skin and a colored skin which i have:
Custom Colored Skin:
<asp:Calendar
    BackColor="#1d1d1d"
    ForeColor="#32CD32"
    Font-Names="Gentium Basic"
    BorderStyle="Groove"
    Font-Size="14pt"
    NextMonthText="••••"
    PrevMonthText="••••"
    Height="300px"
    Width="400px"
    runat="server">

    <DayHeaderStyle 
        BorderColor="LimeGreen" 
        BorderStyle="Solid" 
        BorderWidth="1px" />

    <NextPrevStyle 
        ForeColor="#1D1D1D" />

    <OtherMonthDayStyle 
        BackColor="#cccccc" 
        ForeColor="#1D1D1D" />

    <SelectedDayStyle 
        BackColor="#333333" 
        BorderColor="#333333" 
        BorderStyle="Dashed" />

    <TitleStyle 
        BackColor="#32CD32" 
        Font-Bold="True" 
        ForeColor="#1D1D1D" />

</asp:Calendar>



But now i want to skin each different month, is that possible? If it is than what would i have to target, because im thinking i would give a SkinId, but the Calendar seems to be somewhat dynamic. BTW, this is in Visual Basic .net language if anyone can assist. I still have some more research and reading but until than if any of you have advice or references i would love to check them out.. If this was CSS i could totally ROCK that calendar (it almost kinda is lol)..

Is This A Good Question/Topic? 0
  • +

Page 1 of 1