Custom Page layout Question

edited January 2012 in General Discussion

In the custom page editing, How do I set the background color for the page. I would to have it match the other pages of the app through out. A Grey to black color.

How can I go about this through the custom page? The rest of the custom page works great just trying to figure that out. I am guessing with Source but not sure what will work with this feature and how best to go about it. Please advise. Have a client that would like same color through out app.

 

apman

Comments

  • We're looking into this one...

  • I have tried html for background but does not seem to work.

    apman

  • You're going to want to create inline styling.

    Click the source button and paste in your css code:

    for example

    <style type="text/css">
    .Background {
    background-color: #666;
    }
    </style>

    The call the class for the body tag which will set the background color

    <body class="Background">
Sign In or Register to comment.