• Resolved akitzer

    (@akitzer)


    Hi, how do I change the background color of the website? Is there a way to change the heading colors or do I need to change it from the CSS?

Viewing 5 replies - 1 through 5 (of 5 total)
  • Some themes will have the function to do what you are asking built in.

    If yours does not, then make edits to your CSS using a CSS plugin or by using a child-theme.

    body {
    background-color: #yourHexValue
    }

    Hi! You can change the background color putting this lines in your css file:

    .site-content {
    background: #ccc;}

    where #ccc – would be the hex color you need.

    Or you can use:

    .site-content {
    background: rgb(255, 255, 255);
    }

    to write the color in RGB model.

    You can edit your css file right from your admin panel, you’ll find it in the last line of menu in the “Appearance” section.

    Thread Starter akitzer

    (@akitzer)

    Thank you so much!

    Theme Author Andrew Misplon

    (@misplon)

    Hi @akitzer

    So sorry for missing your question. Glad to hear you’ve been making progress. If you’re using Custom CSS, please, be sure to use a plugin like Simple Custom CSS as any edits made to the theme files directly will be lost in the theme update process. If you have any follow-up questions, let me know ??

    Thanks @ol-ka and @hotmale for helping out here, appreciate it.

    Theme Author Andrew Misplon

    (@misplon)

    Hi @akitzer

    It looks like RSS feeds were removed when the forum was recently updated to its new layout you see here. We previously used those feeds to monitor for new topics and replies. I’m subscribed via email now so I won’t miss any threads again ??

    Ultra Premium offers settings in the Customizer for the items you’d like to change at Appearance > Customize > Theme Design. Alternatively, I’m happy to assist with any small Custom CSS edits you’d like to make.

    Sounds like this topic is resolved but just in case, the Custom CSS you requested is:

    /* Page Background Color */
    .site-content {
    	background: #ffffff;
    }
    
    /* Headings */
    #primary .entry-content h1,
    #primary .entry-content h2,
    #primary .entry-content h3,
    #primary .entry-content h4,
    #primary .entry-content h5,
    #primary .entry-content h6 {
        color: #000000;
    }

    All the best.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘How do I change the title/background color?’ is closed to new replies.