• frandorf

    (@frandorf)


    Hello out there,

    I’ve been learning some basic code so that I can make adjustments on my blog/website, https://www.bruisedmuse.com. Right now, I’m trying to change the basic colors. I figured out how to change printing colors, but would like to know if there’s a way to change the original Talian black/green/orange color scheme. Right now, I’ve got a mishmash. I’m a beginner, really, but is there any help for me?
    Fran

Viewing 7 replies - 1 through 7 (of 7 total)
  • esmi

    (@esmi)

    Look for background and background-color in your theme’s stylesheet.

    Thread Starter frandorf

    (@frandorf)

    Thanks, Esmi. I’ve looked and changed everything related to color that I can find in there. Sometimes it seems to change certain things, sometimes it doesn’t do a darned thing. No matter what I do I still don’t seem to be able to change the original black green orange color scheme of Talian 1.0 within the stylesheet. Any other ideas?

    buddha-trance

    (@buddha-trance)

    You seem to have images as background, rather than actual color
    for example, under ‘body’ you have:
    background-image: url(images/headerbg.gif);

    try to change it to
    background: #fff;

    look for other image instances, and change them into color – as above – like:

    #wrapper {
        background: url(/img/main-back.gif)
    #footer {
        clear: both;
        background: #fff url(/img/footer.gif) 100% 0 no-repeat;

    Basically, look for where it says url(/img/whatever.gif) and change into just #fff or any other value.

    Hope this helps.

    Thread Starter frandorf

    (@frandorf)

    Please bear with me. I do see some instances with the code as you say being: url(whatever.gif), but these are under individual sections, like “calendar” or “posts.” Where is the black background at the very top of the site. At the very top of the style sheet, where it has the following code, which I changed where is says background, but it didn’t do anything except change the print color of “Bruised Muse”, what is this controlling?
    Thanks:

    body {

    font-family: Tahoma, Verdana, Arial;

    font-size: 70%;

    color: white

    margin: 0px;

    padding: 0px;

    background:#990033

    background-repeat: repeat-x;

    background-position: top;

    }

    buddha-trance

    (@buddha-trance)

    @frandorf – You seem to have fixed it, I don’t see the black header anymore.

    Thread Starter frandorf

    (@frandorf)

    Indeed, but now my tagline is in white and can’t be seen. I’ll keep trying to fix that one. Thanks. You gave me courage to play with code and knowledge, Buddha Trance.

    buddha-trance

    (@buddha-trance)

    @frandorf – That’s great! I can tell you are changing colors around and having fun. ??

    Just in case, the css for the tagline is under
    .header_site_desc p
    You can change the color where it is defined in that paragraph.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Changing Theme colors’ is closed to new replies.