button style

Home Forums Legacy Support Support queries Styling issues button style

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #7604
    unius
    Participant
    How can I insert a button that looks like this? I could not find this button in the short code. I just want my button to look like this because it looks really pretty (when i put my mouse on the button, it turns white)
    #7697
    Anshuman Sahu
    Keymaster
    Add this code in your wp-content/plugins/Wplms-customizer/wplms-cutomizer.php if (!function_exists('vibe_course_button')) { function vibe_course_button( $atts, $content = null ) { extract(shortcode_atts(array( 'id'   => '' ), $atts));   if(!is_numeric($id)) return;   ob_start(); the_course_button($id); $html = ob_get_clean(); return $html; } add_shortcode('course_button', 'vibe_course_button'); } And then use this shortcode :  [course_button id=" Course id "] Where Course id is the id of the course .
Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘button style’ is closed to new replies.