• Hi i’m using the Minimalist theme and it has the option to allow users to change the color with one simple click.

    however i’m trying to find it so that the default color it displays is black not white.

Viewing 3 replies - 1 through 3 (of 3 total)
  • roberthq

    (@roberthqprintsnet)

    Yeah, or to change the colors at all. How do you do that? Can’t do in the menu settings, shows up fine at the bottom sample in the control panel, but not on the site.

    As well, adding “color:#666666;” to anyplace in the css will also reflect no change.

    Any ideas?
    RRG

    There are thousands of WordPress themes – which means that many people won’t be familiar with your particular theme. So a link to your site where people can see the theme might result in more responses.

    There is this code in header.php:

    <link rel="stylesheet" type="text/css" href="<?php bloginfo('stylesheet_url'); ?>" />
    <link rel="stylesheet" type="text/css" href="<?php bloginfo('stylesheet_directory'); ?>/styles/white.css" title="white" />
    <link rel="alternate stylesheet" type="text/css" href="<?php bloginfo('stylesheet_directory'); ?>/styles/black.css" title="black" />
    <link rel="alternate stylesheet" type="text/css" href="<?php bloginfo('stylesheet_directory'); ?>/styles/blue.css" title="blue" />
    <link rel="alternate stylesheet" type="text/css" href="<?php bloginfo('stylesheet_directory'); ?>/styles/green.css" title="green" />
    <link rel="alternate stylesheet" type="text/css" href="<?php bloginfo('stylesheet_directory'); ?>/styles/grey.css" title="grey" />

    And all you need to do is switch /styles/white.css with styles/black.css, as well as switching the titles. That way black is at the top, and white is an ‘alternative’ stylesheet.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Minimalist Theme’ is closed to new replies.