Hi How can I centre align the 1st,2nd,3rd and 4th feature headings and the description Thanks in advance.
Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: .feature-content .feature-item h4 { text-align: center;} .feature-content .feature-item p { text-align: center;}
Can you also tell me how to centre align the right column description please ? ive tried tried fiddling around with the CSS as above but no luck.
Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: .bottom-feature .bottom-feature-right h1 { text-align: center; } .bottom-feature .bottom-feature-right .bottom-feature-right-wrapper p { text-align: center; }
For the description issue, paste the following code in your custom css Appearance -> Theme Options -> Styling Options -> Custom CSS Code: .bottom-feature .bottom-feature-right .bottom-feature-right-wrapper { text-align: center ! important; } This will solve your issue.