Options

Changing the font color in the profile description

HollinatorHollinator Registered Users Posts: 9 Beginner grinner
edited June 29, 2015 in SmugMug Customization
Hello,

I am having trouble figuring out how to change the font color in the profile description box. Can anybody help me?

Screen%2BShot%2B2015-06-25%2Bat%2B08.29.13%2B2015-06-25%2B08-29-30.png?Expires=1435441825&Signature=SmdOu~jdmzFl08Yh5RhkCAeT7U5dw2ti-dchAzZj4loj0lFK3O92o-h4-gLS6lZMQN-wPpmsCItBbKMPkIQC2NQWGRuQ7ZS6cMe6z6q7agbb8micc6JauI6ZExSrIilvXtSJU6wKzURjuugbYx3CvwcuXbuMBUMAuBpL4g1Tvtpgbyd2ROMmqNpUnGFm7oKDxyM1g4zRrPVb-Rt16ccn6qeFoX2vAKwMYuJjKU2rR-eovHFFmww4hz7WOfgQ2IccK1q~K~aSLrrV7oPuaS-N4d4xjSQDzhj9SmyzA-FyV33~OlRdy4amfaHWm4RmVvG3xlKAh92rMTdp9NwjDMV6Kw__&Key-Pair-Id=APKAJHEJJBIZWFB73RSA

Comments

  • Options
    AllenAllen Registered Users Posts: 10,011 Major grins
    edited June 26, 2015
    If you use Chrome or Firefox right click on the element and pick "Inspect Element". A box will show up with
    the html in it. In that you can find what is needed to create CSS to modify the element. The text you're
    wanting to change is probably between h1, span or "a" tags. But you also need the class name of its parents
    to nail down the specific area or widget.

    If you provided a link to your site we could help.
    Al - Just a volunteer here having fun
    My Website index | My Blog
  • Options
    denisegoldbergdenisegoldberg Administrators Posts: 14,238 moderator
    edited June 26, 2015
    Since you haven't supplied a link to your site I can't verify that this code will work for you, but...

    When I look at my profile there are two text elements showing in it, one for the title and one for the text. This CSS changes both:
    .sm-page-widget-profile-biotext ,
    .sm-user-ui h1.sm-title-xl {
      color: #00CDCD;
    }
    
    You can place the CSS in a CSS both on the page where you are showing your profile.

    If you need hex codes for colors this is the site I usually use - http://www.december.com/html/spec/color.html.

    --- Denise
  • Options
    HollinatorHollinator Registered Users Posts: 9 Beginner grinner
    edited June 29, 2015
    Link to the site is: dianedammeyer.smugmug.com

    Thanks for your help!
  • Options
    AllenAllen Registered Users Posts: 10,011 Major grins
    edited June 29, 2015
    Al - Just a volunteer here having fun
    My Website index | My Blog
Sign In or Register to comment.