• Resolved heartcenter333

    (@heartcenter333)


    Hi I was directed here when I posted to the ww.wp.xz.cn main forum…

    What I need is to put the overall text of my pages and posts as well as the titles to be darker… Black would be fine…

    Also the “blue” for the links, I would like to maybe change that to a purple or something…

    my website: http://www.heartcenter333.com

    Also, would like to make some changes to navigation such as making them show a little better with my background…

    Lastly I would like to bring the text box or main area down, I made the footer transparent, so I don’t need that much space at the bottom of my page… Thanks for any answers… 🙂

Viewing 6 replies - 31 through 36 (of 36 total)
  • Thread Starter heartcenter333

    (@heartcenter333)

    No the transparent still not working…

    That’s twice you answered something before I asked!!! So great minds do think alike!!! 😉

    CrouchingBruin

    (@crouchingbruin)

    For the menu item background (or any background), if you want some color, but not a lot, you can also use an rgba value like this:
    color: rgba(255, 255, 255, .1);
    The first three values again refer to red, green, and blue, but you have to use regular decimal values instead of hex. Values range from 0 to 255 (which is the same as FF in hex). The last value is the opacity (or transparency), which can range from 0 to 1. A value of 0 is totally transparent, while a value of 1 is totally opaque. 0.5 would be half transparent. You can think of the last value as a percentage, so 0.5 is 50% transparent. The example I have above would be a white color, but only 10% opaque, so you can see some of the background showing through. Just something you might want to play with.

    CrouchingBruin

    (@crouchingbruin)

    For a value of transparent, you need to leave off the pound sign (i.e, it’s not supposed to be a hashtag):
    color: transparent;

    Thread Starter heartcenter333

    (@heartcenter333)

    Do I copy that in place of the background: #000;.
    I’m a little confused on this one

    CrouchingBruin

    (@crouchingbruin)

    Oops, sorry, yes, that should be background, not color for both of my two previous posts. color would be for the text color.

    Thread Starter heartcenter333

    (@heartcenter333)

    Ok, that’s good… I took off the hashtag… I copied all your examples of the CSS color coding, so I can look at it at a later date… Thanks again so much, I wish you the best… Much gratitude…. 🙂

Viewing 6 replies - 31 through 36 (of 36 total)

The topic ‘A few changes…’ is closed to new replies.