I would like the copy on my home page to be left justified instead of centered. But can't figure out how to do this. Could you please help? I also have an ul in the home page but the spacing is too wide. How can I fix this as well. Thank you!
Hello, Can you please share the link of your website and also indicate the exact place which you have to justify and reduce the spacing.
Hi Harmeet, The link is: http://www.soulsbyaccounting.com/ However, I have an under Contruction plug in so not sure you'll be able to see the actual page. I've attached a screen print just in case. The area is the homepage copy, beneath the slider area. I'd like to have the copy left justified and less space between H2, H3 and the UL. No space between the lines of the UL as in the attached copy. Hope this helps. Thank you! Sherry Via Firebug, it appears the location is at: <html class="cufon-active cufon-ready" lang="en-US"> <head> <body class="home page page-id-6 page-template-default logged-in admin-bar customize-support" background="http://www.soulsbyaccounting.com/wp-content/uploads/2013/02/darknavyblue.jpg"> </html>
Go to js > custom.js present in your theme directory and remove the code given below Code: //Cufon replacement Cufon.replace('h1')('h2')('h3')('h4')('h5')('h6'); Now, paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: .content-info center { text-align: left; line-height: 35px; } this will solve your issue.