Dont use too many shortcodes inside single post or page. When you do this the post will be displayed with blank content. If you want to use lot of shortcodes include the following 2 lines of your wordpress index file right after the php delaration.
ini_set(‘pcre.backtrack_limit’, 1000000);
ini_set(‘pcre.recursion_limit’, 1000000);
If the content is not displayed after adding those 2 lines, try changing the values(1000000) to higher or lower value depend on your requirements. It’s important to note that assigning higher values will increase the loading time. So use this wisely.
Sometimes when you add shortcodes one after another, wordpress will automatically assign line breaks. Start the shortcode right after the previous shortcode code to remove unwanted breaks.
Problem
[header type='un_text_small' color='blue'] I Need to Resolve a Problem [/header]
[header type='un_text_medium' color='blue'] I Need to Resolve a Problem [/header]
Solution
[header type='un_text_small' color='blue'] I Need to Resolve a Problem [/header] [header type='un_text_medium' color='blue'] I Need to Resolve a Problem [/header]
After using the shortcodes if your layout is not aligned properly, try changing margins and widths until you get the correct layout.
