Advertisement
Guest User

Untitled

a guest
Mar 1st, 2015
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. <?php function Ciusan_NBar(){ global $options; $options = get_option('Ciusan_NBar');
  2. if($options['CNB_Showing']=='yes'){ ?>
  3. <div class="Ciusan_NBar" style=" <?php if($options[CNB_FixedBar]=='yes'){echo 'position: fixed;';}elseif($options[CNB_FixedBar] == 'no'){echo 'position: absolute;'; } ?>!important;">
  4. <input id="hide" type="radio" name="bar" value="hide">
  5. <input id="show" type="radio" name="bar" value="show" checked="checked">
  6.  
  7. <label for="hide">hide</label>
  8. <label for="show">show</label>
  9.  
  10. <div class="Ciusan_NText"><?php echo $options['CNB_Content']; ?></div>
  11. </div>
  12. <?php }} ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement