• Resolved bethp

    (@bethp)


    Hello,

    I need to make a slight color adjustment in theme. I still have just a bit of purple that I need to change. I have looked all over the style sheet and not sure how to change. It is on:

    main page below content
    on contact page
    blog secondary pages

    https://bethplummer.com/projectdemo/

    Any help would be appreciated.

Viewing 2 replies - 1 through 2 (of 2 total)
  • This would need to be solved using CSS:

    This will remove all the purple from your site:

    .content-n #content .container {
        background: none repeat scroll 0 0 transparent;
    }

    If you want to change the purple to a different color, use this:

    .content-n #content .container {
        background: none repeat scroll 0 0 #FFFFFF;
    }

    Change #FFFFFF to what you want it to be.

    Thread Starter bethp

    (@bethp)

    You are an absolute lifesaver. Thank you so much!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Adjusting theme and change in color’ is closed to new replies.