• Resolved ashley2186

    (@ashley2186)


    Hi Everyone,

    I’m new to WordPress and have no experience coding, so I apologize if this is a stupid question.

    I have widgets in both the sidebar and footer sections of the site (no sidebar on homepage). I’ve figured out how to change the font and colors of the widgets but they all change at once. Is there a way to change them individually? For instance, I’d like my three footer widgets to have white font and match the graphite color in the padding, instead of the white boxes that are currently there as a result of my editing the sidebar appearance.

    You can see what I’m talking about here:
    https://theinsiderein.com/show-jumping/

    Really appreciate any advice!

Viewing 3 replies - 1 through 3 (of 3 total)
  • try this.

    .footer .widget-content {
        background-color: transparent !important;
    }
    
    .footer h3.widget-title {
        background-color: transparent !important;
        color: red !important; /* change to whatever you want for footer widget title color */
    }
    
    .footer div.textwidget {
        color: #fff !important;  /* change to whatever you want for footer widget paragraph text color */
    }
    
    .footer .widgets ul li a{
        color: #fff !important;  /* change to whatever you want for footer widget list color */
    }
    
    .widget-content ul li::before {
        content: "?"; /* change to whatever you want for footer widget list bullet symbol */
        color: #fff; /* change to whatever you want for footer widget list bullet color */
    }
    
    h3.widget-title {
        background-color: transparent !important;
        color: red !important; /* change to whatever you want for widget title color */
    }
    
    div.textwidget {
        background-color: transparent !important;
    }

    add to your style.css

    Thread Starter ashley2186

    (@ashley2186)

    Mr. Case you’re a lifesaver! That worked perfectly for me. I really appreciate your help!

    No problem. Can you mark post resolved.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Changing appearance of footer and sidebar widgets’ is closed to new replies.