follow up question

Support Area Forums Foxy follow up question

Viewing 2 posts - 1 through 2 (of 2 total)
URL to the page in question: http://
  • Author
    Posts
  • #20618
    Jin Nam
    Participant

    Hello,

    once I asked you to tell me how to change the color of the frames and you replied:

    Good Morning,

    Great question. You can change the color of those areas. Here’s how:

    Go to the Theme Options page and select the Styling tab.
    Scroll down to the Custom CSS box and paste this:

    div#sidebar nav a,
    div#sidebar nav a:visited,
    header#primary,
    #content,
    div#sidebar nav li.current-menu-item li a,
    .staff-list article,
    select.tinynav,
    #sidebar .widget {
    background-color: rgba(0, 0, 0, 0.80);
    }
    Replace the (0, 0, 0, 0.80) with the rgba color you’d like to use. You can use this color picker http://www.css3maker.com/css-3-rgba.html to find the color. The first three numbers set the color. The last number sets the opacity on a scale of 0 (transparent) to 1.0 (opaque).
    Update your settings.
    See how that works for you. If you have any questions or trouble, let me know.

    Thanks,
    Bill

    But now I found out that the color of submenus still remained the standard transparent black. How can I fix this?

    Thank you very much,

    #20625
    Bill Robbins
    Moderator

    Good Morning,
    Great question there. I think we may need to add this to the Custom CSS too:

    
    div#sidebar nav .current-menu-item ul.sub-menu li a {
    	background-color: rgba(0, 0, 0, 0.80);
    }
    

    which I believe will make those a semi-transparent white too. Let me know if that doesn’t do the trick.

    Have a great week,
    Bill

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘follow up question’ is closed to new replies.