• Resolved damian5000

    (@damian5000)


    I’m trying to make a simple change via child themes, but it’s not working out… I have this

    [please mark any posted codes: http://codex.wordpress.org/Forum_Welcome#Posting_Code ]

    /*
    Theme Name: silverorchid Child
    Version: 1.5.0
    Template: silverorchid
    */
    
    @import url("../silverorchid/style.css");
    
    a
    
    a, a:link { color: #036085; text-decoration: none}
    
    a:hover {
    	color: #07BA37;
    	-moz-transition: color 0.3s ease-in-out;
    	-webkit-transition: color 0.3s ease-in-out;
    	-o-transition: color 0.3s ease-in-out;
    	transition: color 0.3s ease-in-out;
    }

    but it’s not making the change…if i make this change in the parent theme, it’s all good, but the change in the child theme isn’t affecting it.

    what am i missing?

Viewing 3 replies - 1 through 3 (of 3 total)
  • the stray

    a

    below the @import line might be stopping the styles from getting applied;

    please post a live link to your site for more suggestions.

    A) Your theme needs to support a Child Theme.
    B) This forum only supports themes from the directory here.

    So, check with theme dev. if a Child Theme is supported, make sure if it is supported whether theme dev has any special instructions to do so, and then make sure Child Theme is activated…

    Thread Starter damian5000

    (@damian5000)

    okay… i wasn’t aware the parent theme needed to specially support child themes… i will contact him…
    cheers

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Child theme mods not showing up’ is closed to new replies.