Options

Color text in text box

FredsouFredsou Registered Users Posts: 62 Big grins
edited April 23, 2014 in SmugMug Customization
Hi can I put words in color in text box ??? My text is grey on backdrop light grey. I would like to add color for title or few words

Comments

  • Options
    Darter02Darter02 Registered Users Posts: 947 Major grins
    edited April 23, 2014
    I use HTML blocks for my text fields. I do this so I can also use CSS in the same block if I ever need to. For instance, if I want bullet points I need to add CSS to create them.

    Anyway, while the body text is as I specify in my theme, I create different colored titles using HTML. This piece of code is what I use. You'll have to change the font-family to what you use, as well as the color and size.
    <p><span style="font-family: Lancelot; color: #898752; font-size: xx-large;">Test Title</span></p>
    

    You can see a sample in use on this page in the body text.

    And just in case you do need to use bullet points...
    ul {
      list-style: inside;
      margin-left: 12px;
      padding: 5px 0;
    }
    
Sign In or Register to comment.