How can I change the background of a website
Last Post 08/07/2006 4:26 AM by Lee Sykes. 1 Replies.
Author Messages
Kenis Polanco
Nuke Pro
Nuke Pro
Posts:63


--
08/05/2006 11:55 AM
    I would like to change the background of a website. I understand that it depends on the skin. I tried changing it through admin site setting and everything stood the same. Is there any specific way to accomplish this?
    Lee Sykes
    DNN Creative Staff
    Nuke Master VI
    Nuke Master VI
    Posts:4945


    --
    08/07/2006 4:26 AM
    Hello,

    It all depends on how your skin is designed. - Generally though you will be able to set this within your skin.css file.

    You could try changing the body class - ie:

    body {
    background-color: #333;
    }

    But you may find that if you have designed the skin using tables that this will not have an effect. - You then need to have a look at any classes assigned to your tables and see if you can change the background color for those classes. - To test this out you could use:

    body, tr, td {
    background-color: #333;
    }

    You may find you have assigned a CSS class such as this below to one of your main tables:
    .skinmaster {
        background-color: #333;   
    }

    Hope this gives you a starting point, thanks,
    Lee Sykes
    Site Administrator
    Subscribe to the website : DotNetNuke Video Tutorials : The Skinning Toolkit : DotNetNuke Podcasts

    Twitter: www.twitter.com/DNNCreative

    Lee Sykes's Facebook Profile


    ---