• Kindly guide me how can I change the color scheme (Not only background) of the theme …default is red . I want the green one .

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

    How are you doing today?

    There is no option in the theme to change the default color which means this will have to be done with custom CSS.

    I’ll be happy to assist you with that but I’ll need you to post link to your site in case you have some modification already added so I can take a look and some of your guidance of which parts you wish to change.

    Looking forward for your response.

    Best regards,
    Bojan

    Hi Bojan the url for the site that I am working on is voice4choice.org

    I want to change the color scheme of the starpoint theme to a color that is not one of the options, please give me the code to add to the custom css in the management style area of the theme set up to #0000FF or Royal Blue.

    Thanks

    Brad

    Hey Brad,

    I’m not really familiar with the theme that you’re using so I’m not sure what exactly you want to change, would you mind letting me know which parts you want to change and I’d be happy to provide some custom CSS for that 🙂

    Cheers,
    Bojan

    Hi Bojan, Thanks for the assistance.

    Can you send me for the header, middle, buttons and footer?

    I know Im asking for alot! I appreciate your support.

    Brad

    m

    (@greeninthemiddle)

    Hi Bojan,

    I’m new to this css (only started yesterday) code thing, but I’ve managed quite a few things, thanks to this forum.

    I’ve managed to change the colour and size of the font of my posts and pages. But when clicking on individual posts the colour of the title is the original again. Is there a way I can change this. Also on the title of the previous and next post at the bottom of the post.

    I’d like it to be the same as my home page.

    I cannot find it anywhere on this forum, but might have overlooked.

    Thanks a lot!

    Hey again advedge,

    I see that you managed to change pretty much everything to blue as you wanted 🙂

    @greeninthemiddle please try adding the following CSS code in the style.css file of your child theme or if your theme doesn’t have custom CSS tab add it in your site using the following plugin:

    http://wordpress.org/plugins/simple-custom-css

    .post-page h1.post-page-head a {
        color: #00acee;
    }

    Replace the color hex value to display color of your choice for single post pages title. If this doesn’t work please post link to your site where I can see this title so I can take a look 🙂

    Cheers,
    Bojan

    Hi Bojan, I added the code you supplied into the custom css area of the theme and it had no effect… ? Any ideas?

    The color blue that the theme currently uses is one of the standard colors. We want to change it to Royal Blue (darker)

    Thanks

    Brad

    Hey again Brad,

    The code above is for single post pages titles.

    Sorry about that I assumed you got this changed since I saw blueish color there (I’m not very good with colors sorry).

    The code you’re looking to add to change the header is the following:

    body .menu-wrapper-bg {
        background: #2db4e2;
    }

    For top footer please try adding this:

    body .footer {
        background: #00acee;
    }

    For bottom part of footer:

    body .footer-copyright-wrapper {
        background: #017baa;
    }

    For buttons please add this:

    #page input.btnSubmit {
        background: #00acee;
    }
    
    #filters li.active {
        background: #2db4e2;
    }

    Replace the color hex values to display another color. You can use sites similar to this one to get hex value for the color of your choice: http://www.color-hex.com/

    If there are other places you need this changed please let me know. Adding screenshot would help a lot too 🙂

    Best regards,
    Bojan

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘How do I change the color scheme’ is closed to new replies.