Is it possible to add a text/email link after the credit card logos I have put at the bottom of my front page (right after Paypal logo)?
http://www.stitchpersonal.com/
Thank You!
Is it possible to add a text/email link after the credit card logos I have put at the bottom of my front page (right after Paypal logo)?
http://www.stitchpersonal.com/
Thank You!
Hi,
Please make a backup and then open up the file footer.php located in the main theme folder and find lines 31-32 which looks like
}
echo "</div></div>";
Please insert the code below *between* line 31 and line 32.
echo '<a href = "mailto:your-email@your-domain.com">YOUR EMAIL</a>';
Please change your-email to your real email. and change YOUR EMAIL to what you want the link to display.
The final version of the code should look like the code below, with new lines 31,32,33.
}
echo '<a href = "mailto:your-email@your-domain.com">YOUR EMAIL</a>';
echo "</div></div>";
--------Off Topic
This css will stop the bottom of your home page from jumping every time the product slider moves. Please add it to the end of quick css or the end of your /css/custom.css file.
#top.home .products {
height: 292px !important;
}
Thanks,
Nick
Thank You so much!!! Those things really helped! You guys are the best. It shows up and everything, but do you know of a way to make it more center aligned with the logo area? I only ask this because I know that is going to be my client's next question, lol. Here is the link again: http://www.stitchpersonal.com/
Hi,
Most designers either put a link like that, all the way on the bottom of the page, or they add it to the contact page since that's where most visitors today expect to find such information. If I was you , I would remove that ugly link which is an eyesore compared to your very professional looking logo, color scheme and customization of the theme.
You can use an icon which people are familiar with such as Google Icon Search Results. This way at least it will match the other images.
By the way, you can still add or remove additional images without bothering the mail link. If you want to use an image instead, just upload it using Media area in the admin section and grab the image link from that area too. then instead of the code I gave you , you can use the code below with substituting the image url and your email for the filler below:
echo '<a href="mailto:your-email@your-domain.com"><img src="http://www.url-to-image.com/image.png" /></a>';
If you want to keep the link as is, you still need to change your actual email in the code I gave your before, so please look at the line of code again and replace:
your-email@your-domain.com
---Code to do what you asked
To vertically center the text link you have at the moment , please add the code below to quick css
#top .footer-logos .container {
line-height: 71px;
}
Thanks,
Nick
Thank you, I agree the text was ugly, I replaced it with an Icon. Many thanks for all your help. I have never had a company be so responsive and great with customer service. Thank you again!
Hi!
Glad that Nick could help you :)
Best regards,
Peter
This topic has been closed to new replies.