I have a client for which I will be significantly modifying one of the color stylesheets. Is there a way to create and name an entire new stylesheet and have it be available under the dropdown color selection in the admin back end, under Theme Options > Styling Options > Theme Stylesheet? I created a new one in the same css directory, but it doesn't automatically pick it up. Thanks!
Hello, Go to Funtions > theme-option.php present in your theme directory and call your new color stylesheet there. For example If your new color stylesheet name is "orange.css" Then, add the following code given below in your theme-options.php Code: "orange" => "orange", Sending image for reference
Hi Gourav- Thanks for the quick reply. I'm curious, will this edit get overwritten when we update the theme? If so, I guess I'll just have to do a child theme, yes?
Hello, You have to create all these changes manually again when you update your Theme because child theme only works with the parent directory , it will not work with the sub directory (i.e Funtions > theme-option.php). So, we would like to suggest you that you have to save all your changes in the file on your system and always replace them after updating the theme.