• Resolved J M

    (@manaal)


    Hello

    I am thankful to you for such an awesome theme. I have few questions and I hope that you will help me with those.

    1. I want to change the background color and I cannot find the option in stylesheet. Where should I change the bgcolor.

    2. Need to change the text of take a tour and create my account & change the bg color of those rectangle boxes. need help over this please?

    3. Need to change color of the round icons on homepage the one with thumbs up etc. Kindly let me know how to?

    4. Need to Customize/change/edit this line : Proudly Powered By WordPress | Theme Unconditional By WP Strap Code .

    I will be extremely thankful if you help me with these.

    Looking Forward
    MJ

Viewing 1 replies (of 1 total)
  • Hi,

    I will address some of these questions for you. It sounds like you’re pretty new to this stuff, so I will also give you some resources.

    Recommendation #1 – Learn some basics CSS – Check out Treehouse, they have a free trial – https://teamtreehouse.com/

    Recommendation #2 – Create a child theme – https://codex.www.ads-software.com/Child_Themes

    Recommendation #3 – Use the Google Chrome browser and get familiar with DevTools to view a pages CSS, etc. – https://developer.chrome.com/devtools

    1 – If you are referring to the main blog/page background, you will want to target #section3 in your child theme’s style.css (example below changes to black)

    #section3 {
    background-color: #000000;
    }

    2 – There is nothing in the demo (that I can find) that refers to “Take a Tour” or “Create my Account”

    3 – You can target the background color of the circles by targeting the following in your child theme style.css

    .box > .icon > .image {
    background-color: #000000;
    }

    4 – Copy the footer.php file to your child theme folder, and change that file to display whatever you want.

Viewing 1 replies (of 1 total)
  • The topic ‘Customization ?’ is closed to new replies.