projectdeeds
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Lawyeria Lite] Making feature boxes clickableIn order to change the link color, you must update the CSS. Add the styling to the style.css file of your child theme. More specifically, change the following:
#features .features-box a:link,#features .features-box a:hover,#features .features-box a:visitedForum: Themes and Templates
In reply to: [Lawyeria Lite] Making feature boxes clickableMake sure you’ve first created a child theme and are editing only files in the child theme folder.
Copy front-page.php from the lawyeria folder into your child theme folder. Edit the file and look for the div class features-box; there will be 3 of them, 1 for each image. Next, look for
echo '<h4>'Add your<a href="#">within the single quotes inside of the H4.Within the same if statement, the last line, you will see
echo '</h4>'. Modify that line toecho '</a></h4>'Forum: Themes and Templates
In reply to: [Lawyeria Lite] Making Featured Images clickableMake sure you’ve first created a child theme and are editing only files in the child theme folder.
Copy front-page.php from the lawyeria folder into your child theme folder. Edit the file and look for the div class features-box; there will be 3 of them, 1 for each image. Next, look for
echo '<h4>'Add your<a href="#">within the single quotes inside of the H4.Within the same if statement, the last line, you will see
echo '</h4>'. Modify that line toecho '</a></h4>'