-
AuthorPosts
-
March 4, 2016 at 7:39 am #593147
I need to use square brackets in the title of a caption in the fullscreen slider. But it seems that the brackets mess up the code.
for instance if I put this text [brackets], next time I open I get this code in the caption text:
‘ custom_title_size=” custom_content_size=” caption_pos=’caption_bottom’ link_apply=” link=’lightbox’ link_target=” button_label=’Click me’ button_color=’light’ link1=’manually,http://’ link_target1=” button_label2=’Click me’ button_color2=’light’ link2=’manually,http://’ link_target2=” font_color=” custom_title=” custom_content=” overlay_opacity=’0.5′ overlay_color=” overlay_pattern=” overlay_custom_pattern=”]I tried with several plugins like Raw HTML without any luck.
This is the site
thanks
March 5, 2016 at 6:32 am #593650Hi galluzzino!
Please use html ascii http://www.ascii.cl/htmlcodes.htm
[ will be [ ; (note : remove space before ; )
] will be ] ; (note : remove space before ; )
Regards,
Vinay KashyapMarch 5, 2016 at 3:03 pm #593736Thanks Vinay,
I have already tried that trick. Unfortunately doesn’t work. Enfold translates those codes into square brackets and then execute that strange code. Is there anyway enfold can treat square brackets just as square brackets?
All the best
Galluzzino
March 5, 2016 at 10:48 pm #593810Hi!
There is hardly an other solution, because the area is coded to translate any shortcode to actually HTML output, I am afraid.
You will have to use a different way for it to work, or try addbefore the brackets word but that IF it works, it will also add some styling. Regards, Basilis
March 5, 2016 at 11:23 pm #593812Sorry Basils,
I don’t understand. What so you mean by “add before the brackets word but that IF it works, it will also add some styling.”
What shall I add before the brackets?
I need to use square brackets and it will be a serious short coming for a paying theme, to not to allow to use standard keyboard characters.Galluzzino.
March 7, 2016 at 12:06 pm #594234Hey!
Please use a pseudo icon to the titles as mentioned in the below link
Best regards,
Vinay KashyapMarch 11, 2016 at 3:18 pm #596903At the end I have solved it with css:
.squarebrackets:before {
content: ‘[‘;
}
.squarebrackets:after {
content: ‘]’;
}and then <span class=”squarebrackets”>text in brackets</span>
-
AuthorPosts
- The topic ‘Square brackets in caption title of the fullscreen slider.’ is closed to new replies.