• Resolved barbellfocus

    (@barbellfocus)


    I know there’s no free support for theme customizations, but could I be pointed in the right direction for this?

    I’m basically wondering if it’s possible to change the background color for the “content” column so that it’s different from the sidebar background color.
    I don’t want to have this change show up on the main static page, but just on the posts themselves.

    Hopefully that makes sense…

    Please and thank you for any help ??

Viewing 15 replies - 1 through 15 (of 17 total)
  • Michael

    (@mh-themes)

    Hi barbellfocus,

    please add this to custom CSS and change the color as you like:

    .single article { background: #f9f9f9; }

    If you want to give the whole column a background color, please add this to custom CSS:

    .single .col-2-3 { background: #f9f9f9; }

    Regards
    Michael

    Thread Starter barbellfocus

    (@barbellfocus)

    Hmm…I tried both and nothing is changing on the website.

    Thread Starter barbellfocus

    (@barbellfocus)

    Just to clarify, by “content” I meant like the actual page of the article.

    Michael

    (@mh-themes)

    Hi barbellfocus,

    you don’t see a difference because your background is already gray…

    Change the color and you’ll see a difference.

    Regards
    Michael

    Thread Starter barbellfocus

    (@barbellfocus)

    I changed the color code to all sorts of things, but the background is not changing. Any ideas?

    Michael

    (@mh-themes)

    This is tested and will work for sure.

    I checked your source code and I even don’t see the CSS I have provided. Are you really sure you have properly added it to custom CSS???

    Thread Starter barbellfocus

    (@barbellfocus)

    I took it out because I didn’t see a change. I put it back into the custom CSS.

    Michael

    (@mh-themes)

    Mate, you have added ##0040ff as color, it has to be #0040ff …. ??

    Thread Starter barbellfocus

    (@barbellfocus)

    That’s really weird…okay so I deleted the extra #, but still no change. I could have sworn there weren’t 2 #’s when I put it in…

    Michael

    (@mh-themes)

    ??

    Please provide your WordPress login: https://www.mhthemes.com/contact/

    I will have a look…. ??

    Michael

    (@mh-themes)

    Or try:

    .post { background: #0040ff; }

    Maybe there is some CSS on your site which conflicts with the other modification. On our testsite it worked fine.

    Thread Starter barbellfocus

    (@barbellfocus)

    sigh….how would I go about finding out what’s conflicting with it?
    What’s your recommendation to make this work?

    Thread Starter barbellfocus

    (@barbellfocus)

    .post { background: #0040ff; } didn’t work either.

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Does this work:

    body {
     border: 10px solid red !important;
    }

    ?
    If not then you have a syntax error in your CSS somewhere

    Michael

    (@mh-themes)

    It is because of:

    body { color: rgb(80, 73, 69; }

    in custom CSS, remove that and it will work.

    Or change to:

    body { color: rgb(80, 73, 69); }

    Regards
    Michael

Viewing 15 replies - 1 through 15 (of 17 total)
  • The topic ‘Changing backgroud color of a specific column’ is closed to new replies.