Is there any short code for this theme? I want to add a read more button on the left feature section. Thanks
Hello, Go to the Appearance > Theme Options > Homepage Feature Area panel in your dashboard and paste the code given below, at the bottom of Left Feature Description section. Code: <a href="Enter Your Link Address Here" class="read_more">Read More</a> See the image for reference Now, Paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: a.read_more { background: red; padding: 10px; border-radius: 10px; } In place of "red" you can put your color or color code. You can adjust the value of "padding" and "border-radius" respectively as per your requirement.