Hello, First of all, thanks for the great themes! I am wondering how I can change the text and or remove the text from the Feature Heading Link. It currently displays as "read more" and would like to change this for some and delete it for others. I found a way to do this by changing the front-page.php but would prefer to just add this to custom css. If there is not a way to do this let me know. Thanks!
Hello, This is not possible with custom css code because you want to do it only for the particular column. The only possible way is to edit front-page.php file present in your theme directory to fulfill your requisition.
Hello, Go to front-page.php present in your theme directory and remove the code given below Code: <?php if (get_option('inkthemes_link1') != '') { ?> <a href="<?php echo get_option('inkthemes_link1'); ?>">read more </a> <?php } else { ?> <a href="#">read more </a> <?php } ?> Check image for reference Use same process for others also.