Changing shortcode align in Wordpress -
i have next problem. when change shortcode position in tinymce editor doesn't change on page. here string tinymce:
<p style="text-align: center;">[title size="1"]title[/title]</p>
and here part of page's source:
<p style="text-align: center;"></p> <h1>title</h1>
as can see, not understandable me reason title not betwen p tags, can reason ?
h1 can't inside p. because h1 , p block elements. use span instead p
<span style="text-align: center;">[title size="1"]title[/title]</span>
Comments
Post a Comment