Example #1
0
function silesia_direct_styles()
{
    include get_template_directory() . '/style.php';
    echo '<style type="text/css">
    #header .triangle {border-left: 7px solid #' . nattywp_get_coptions('t_slide_background_color') . ';}
  </style>';
}
Example #2
0
            echo nattywp_get_coptions($controls[$i]['name']);
            if (isset($controls[$i]['important']) && $controls[$i]['important']) {
                echo '!important';
            }
            ?>
;
	}
<?php 
            break;
        case 'font-size':
            ?>
	<?php 
            echo $controls[$i]['selector'];
            ?>
 {
		font-size: <?php 
            echo nattywp_get_coptions($controls[$i]['name']);
            ?>
px<?php 
            if (isset($controls[$i]['important']) && $controls[$i]['important']) {
                echo '!important';
            }
            ?>
;
	}
<?php 
            break;
    }
}
?>
</style>