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

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -