Hi,
In my homepage, I would like to set up the first caption of my slider (easy slider) as my H1 of this page.
However, when trying to do so (adding the H1 tag into my caption field), I loose the CSS of my caption, because the caption itself is defined as H2 apparently….
Any Idea how I can configure that?
Please let me know!
Thanks!
Hi Lev!
Could you provide us with a link to the site in question so that we can take a closer look please?
Regards,
Rikard
Hey!
You could just copy/paste the CSS you have already into this block:
h2.avia-caption-title{
/* YOUR CSS UNDER THIS LINE */
}
Best regards,
Rikard
I exactly did that! take a look at my screenshot (of my quick CSS): http://screencast.com/t/Fv3O2IAJ3u
And it still does not work!! look screenshot of my website: http://screencast.com/t/924ZUDDzEjJ
PLEASE HELP BECAUSE IT IS REALLY CRUCIAL !!!!!!
Thank You !
And this is how I’ve inserted it inside my caption (of my slide)
http://screencast.com/t/NJ12i4dZ85O
Please advice !!!!
Thanks
Hey!
That won’t work, HTML content will be stripped. If you want to have your caption to be an h1 instead of an h2 you’d need to edit /enfold/config-templatebuilder/avia-shortcodes/slideshow.php, change line 788:
if(trim($title) != "") $title = "<h2 {$title_styling} class='avia-caption-title' $markup_name>".trim(apply_filters('avf_slideshow_title', $title))."</h2>";
To:
if(trim($title) != "") $title = "<h1 {$title_styling} class='avia-caption-title' $markup_name>".trim(apply_filters('avf_slideshow_title', $title))."</h1>";
Best regards,
Josue
Thanks!
Its work…