• Resolved mardiellendesigns

    (@mardiellendesigns)


    Hi, I’m trying to add the colour #CEDDD7 to the base of my website where my footer widgets sit but can’t work it out!
    I did it before a few years ago on collectivelyme.net (you’ll see that it is a light grey).
    This is the same theme but I can’t seem to change it this time or work out how.
    Is anyone able to help me with this?

    Thank you!

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • If you add:

    
    #genesis-footer-widgets {
        background-color: #CEDDD7;
    }
    

    to your css it should hopefully work.

    Thread Starter mardiellendesigns

    (@mardiellendesigns)

    @glendaviesnz Thank you! That worked straight away! Copy, paste, bam there it is!
    Now my issue is that the title background of the footer widgets is still white, I’ve tried fixing it in a similar way as well as making the padding between the title and the other text smaller but I just don’t have enough knowledge of how to to do it correctly, so it’s not working.
    And this may be pushing my luck but is there a way to make the footer widget 1 and footer widget 2 left justified?

    Thank you so much for your help!

    The trick to overriding theme styles is getting the right level of CSS specificity – you can learn more about this at https://css-tricks.com/specifics-on-css-specificity – in a nutshell you need to make your selectors more specific than the ones in the theme, otherwise the theme ones will keep overriding yours.

    So for your remaining issues something like the following should work.

    h3.widgettitle.widget-title {
        background-color: #CEDDD7;
        text-align: left;
        padding-left: 0;
    }
    .widget-wrap .textwidget {
        text-align: left;
    }
    
    Thread Starter mardiellendesigns

    (@mardiellendesigns)

    Thank you @glendaviesnz . I’ll have a look and a read.
    Again your code worked perfectly.

    Thank you

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Adding Colour To The Bottom of My Site’ is closed to new replies.