• Resolved rachelvass

    (@rachelvass)


    my site is https://www.themeltedmarshmallow.com

    a few things;

    I have read through the forums and tried stuff out, I know this should be simple but i want to change the header (the melted marshmallow, creative space of rachel vass) that is black font colour to white but i cant seem to get the css right.

    also is there a way for the box with the page titles to be transparent so that its like the watercolour picture banner flows down behind the page titles?

    and can i reduce the depth of the footer bar?

    Thanks so much for your help
    Rachel

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hey there,

    You can change the font color by adding below CSS to your theme using Advanced CSS Editor Plugin.

    .site-title a {
        color: #fff;
    }
    
    .site-description {
        color: #fff;
    }

    I am afraid it would be much more complex to make the menu transparent in such a way that background is visible. As for the footer, can you possibly explain in more detail about what exactly are you trying to achieve?

    Hope it helps.

    Thread Starter rachelvass

    (@rachelvass)

    Thank you, the font in the header is fantastic.

    I have been playing around with my colours on my site and for some reason I have lost my text in the footer – any ideas,

    and it was the height of the coloured footer area that I was hoping to reduce. I have made it white at the moment so its not so noticeable.

    Thanks for your help

    Hey there,

    Looks like you somehow managed to hide the footer info, in order for it to appear again, please add below CSS to your theme

    .site-info{
    visibility: visible;
    }

    You can adjust the footer height with following CSS:

    .site-footer{
        height: 10px;
    }

    And if you meant to remove the white space below the site footer, you can do that by adding following CSS:

    img#wpstats{
        display:none;
    }

    Hope it helps.

    Thread Starter rachelvass

    (@rachelvass)

    Thank you

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Sela change header font colour’ is closed to new replies.