Advertisement
firoze

Custom css for SMOF

Feb 15th, 2015
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. // custom css add for SMOF
  2.  
  3.  
  4.  
  5. <!--custom css-->
  6. <?php global $data; ?>
  7. <?php if($data['custom-css']): ?>
  8. <style type="text/css">
  9. <?php echo $data['custom-css']; ?>
  10. </style>
  11. <?php endif;?>
  12.  
  13.  
  14.  
  15.  
  16.  
  17. // custom css
  18. $of_options[] = array( "name" => "Custom Css",
  19. "type" => "heading"
  20. );
  21.  
  22. $of_options[] = array( "name" => "Custom CSS",
  23. "desc" => "Quickly add some CSS to your theme by adding it to this block.",
  24. "id" => "custom-css",
  25. "std" => "",
  26. "type" => "textarea"
  27. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement