Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #281554

    Hi Team!

    I like the H3 special heading code style… with the thin line behind it, as wide as the column.
    Now I would like to have the same heading above my texts in my content slider.

    Could you provide me some code please?

    Like to hearing from you soon!

    Best regards,
    Ronald

    #281875

    Hi Ronald,

    Open /config-templatebuilder/avia-shortcodes/contentslider.php and look for lines 344-346:

                        $output .= !empty($title) ? "<h3 class='slide-entry-title entry-title' $markup>" : '';
                        $output .= (!empty($link) && !empty($title)) ? "<a href='{$link}' $blank title='".esc_attr($title)."'>".$title."</a>" : $title;
                        $output .= !empty($title) ? '</h3>' : '';
    

    Replace them by this:

                        $output .= !empty($title) ? "<div style='margin-top: 0;' class='av-special-heading av-special-heading-h3'><h3 class='av-special-heading-tag slide-entry-title entry-title' $markup>" : '';
                        $output .= (!empty($link) && !empty($title)) ? "<a href='{$link}' $blank title='".esc_attr($title)."'>".$title."</a>" : $title;
                        $output .= !empty($title) ? '</h3><div class="special-heading-border"><div class="special-heading-inner-border"></div></div>' : '';
    

    Regards,
    Josue

    #282393

    Hi Josue,

    Thank you very much!!!

    Best regards,
    Ronald

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘av-special-heading-tag style to slide-entry-title’ is closed to new replies.