Could you provide me with the Custom CSS code to remove the slider text, but keep the button and left justify it? Thanks in advance.
Hello, Please paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: .salesdetails h1 { display: none !important; } .salesdetails p { display: none !important; } Thanks, Praveen
Thanks for the info. The text is now removed, but the button did not move. Can you provide the custom CSS to justify it to the right and bottom? Thanks in advance.
Hello, Please paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: .sl-slide-inner { bottom: 10%; left: 35%; } @media only screen and (max-width: 960px) and (min-width: 767px){ .sl-slide-inner { bottom: 10% !important; left: 25% !important; } } Thanks, Praveen