• Resolved Bodyidolfitness

    (@bodyidolfitness)


    Couple questions–Making a site for my dad, and Im having trouble trying to figure out why i cannot change the color of it. It continues to stay the same color regardless of what i try.

    I dont know if i overlaped codes, or if that even matters… please let me know

    and 2, I am having a difficult time getting the black dots in the header background(#content-#wrapper(?)) out completely, just want them gone!

    http://69.195.124.80/~mydrdjco/wordpress/

    thanks again!

Viewing 6 replies - 1 through 6 (of 6 total)
  • Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Are you using a browser developer tool like Firebug for exploratory CSS queries?

    Thread Starter Bodyidolfitness

    (@bodyidolfitness)

    yes firebug

    thanks for the quick reply

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    I don’t understand your dilemmas.
    Shouldn’t Firebug give you the freedom find out the CSS selectors you need to change for these CSS queries?

    E.g this is what Chrome’s developer tool shows for your first query
    http://snag.gy/R0gpg.jpg

    Thread Starter Bodyidolfitness

    (@bodyidolfitness)

    Mine doesnt look like that… im relatively new to this so please bare with me.

    Mine apparently is showing up like this:

    #submit, .type-post, .type-forum, .type-reply, .type-topic, .type-page, .type-comic, .type-showcase, .type-music, .type-attachment, .type-casts, #wp-paginav, .sidebar h2, #comment-wrapper, .blognav, .default-nav, .submit, .feature, .related-comics {
    background: -moz-linear-gradient(100% 100% 90deg, #AAAAAA, #CCCCCC, #EEEEEE 100%) repeat scroll 0 0 transparent;
    border-radius: 10px 10px 10px 10px;
    padding: 2px 5px;
    }

    I tried messing around with the colors but still no dice

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Although it’s formatted differently, it still provides the still rules.
    You can add a new style;

    background: deeppink

    and it will change to deeppink colour.

    Thread Starter Bodyidolfitness

    (@bodyidolfitness)

    So I have tried everything that i could possible…

    That code that you gave me with the background gradients DOES WORK, but it doesn’t save it when i post in in my editor. Below is the code i used and in the bold is what the background gradient code is:

    #submit, .type-post, .type-forum, .type-reply, .type-topic, .type-page, .type-comic, .type-showcase, .type-music, .type-attachment, .type-casts, #wp-paginav, .sidebar h2, #comment-wrapper, .blognav, .default-nav, .submit, .feature, .related-comics {
    padding: 2px 5px;
    -moz-border-radius: 10px;
    -khtml-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: black
    background: #eee; /* Old browsers */
    background: -moz-linear-gradient(100% 100% 90deg, #aaa, #ccc, #eee 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(0, 0, 0)), color-stop(100%, rgb(0, 0, 0))); /* Safari 4+, Chrome 2+ */
    background: -webkit-linear-gradient(linear, left top, left bottom, from(#aaa),to(rgba(#eee))); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(#eee,#aaa); /* Opera11.10+ */
    background: -ms-linear-gradient(#eee,#aaa); /* IE10+ */
    background: linear-gradient(linear, left top, left bottom, from(#eee),to(#aaa)); /* W3C */
    }

    I have also tried adding the code you had above but still no luck. Every other easel website i have used this always has worked.

    appreciate your help!

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Cannot change the background for main content area (betwwen the outer columns)’ is closed to new replies.