• Hey all,

    Here is my site — https://www.spencerkulow.com

    In the footer I have three widgets, and I don’t know how to change the colors, especially the grey content and the bright red “subscribe” button. I would like to change the grey and the red to different hex colors but can’t find a way through the “customize” option for the theme.

    I don’t have a lot of experience with CSS so while I understand the basics code, I need a lot of direction for what to write and where. Any help would be appreciated!

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hello @spencerk8883,

    Please try to use the following CSS code.

    You can add CSS code in DashboardAppearanceCustomizeAdditional CSS (WordPress 4.7 and up). Also you can add CSS code directly to style.css file of your child theme.

    /* Code for footer widget titles, links, and text */
    #sidebar-footer.footer-widget-area .widget .widget-title,
    #sidebar-footer.footer-widget-area .widget a,
    #sidebar-footer.footer-widget-area .widget {
        color: yellow;
    }
    
    /* Code for footer widget button */
    #sidebar-footer.footer-widget-area .widget input[type="submit"] {
        color: yellow;
        background-color: green;
        box-shadow: 0 5px 0 lightgreen;
    }

    Kind Regards, Roman.

    Thread Starter spencerk8883

    (@spencerk8883)

    Roman,

    Thanks for the response — the code for the titles, links, and texts all worked, but the footer widget button did not change. I entered it into the Additional CSS area. If you look at my site the text has changed but not the button. Any ideas?

    Thanks,

    SPencer

    Hello @spencerk8883,

    It looks like you got " instead of " character in that code. Can you please correct it?

    Kind Regards, Roman.

    Thread Starter spencerk8883

    (@spencerk8883)

    Fixed, thanks so much!

    You are welcome @spencerk8883! ??

    Kind Regards, Roman.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Changing Widget Button in Moesia’ is closed to new replies.