How do I left align the title, text and button on the sliders? URL: http://webworxworld.com/client-demo9/
Hi, Please paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard Code: .salesdetails { float: left; } .salesdetails .button_wrapper { float: left; margin-left: -355px; } .salesdetails h1 { float: left; } .salesdetails p { float: left; text-align: left; } Hope it will fix your issue
Now it goes all the way left overlapping side area... How do I make it look like demo site, where they are left aligned but in line with logo and website body for the edges?
Hi, Replace the previously given block of code with the below code: Code: .salesdetails { float: left; } It should work.