-
AuthorPosts
-
August 17, 2014 at 9:18 pm #305495
I am trying to add this site seal on my child theme.
How would I go about that?August 18, 2014 at 11:55 am #305663Hey deerstonedevelopment!
Please refer to my post here – https://kriesi.at/support/topic/adding-a-logoimage-to-the-right-of-the-header/#post-304859
Regards,
YigitAugust 18, 2014 at 6:58 pm #305917I DID the following in the post the recommended
echo avia_logo(AVIA_BASE_URL.’images/layout/logo.png’, $addition, ‘strong’, true);
echo “<div class=’header-custom-image’></div>”;After I inserted this in the site I got the following error
Parse error: syntax error, unexpected ‘class’ (T_CLASS), expecting ‘,’ or ‘;’ in /home/deerstone/public_html/clclawncare/wp-content/themes/enfold/includes/helper-main-menu.php on line 103
This is a SEO SITE SEAL with a backlink to the clients BBB Review site. So its not just an an Image. How do I get this code to work properly?
- This reply was modified 10 years, 3 months ago by deerstonedevelopment. Reason: this is the code
August 18, 2014 at 7:34 pm #305936Hi!
Please paste the code you have inserted in http://pastebin.com/ and post the link here
Best regards,
YigitAugust 18, 2014 at 9:35 pm #305994August 19, 2014 at 4:29 am #306065Hey!
Thank you for the info.
Please use this on functions.php:
function ava_add_seal() { ?> <div class="header-seal"><a target="_blank" title="CLC Landscape & Irrigation BBB Business Review" href="http://www.bbb.org/wyoming-and-northern-colorado/business-reviews/landscape-contractors/clc-landscape-irrigation-in-windsor-co-46013758/#bbbonlineclick"><img alt="CLC Landscape & Irrigation BBB Business Review" style="border: 0;" src="http://seal-wynco.bbb.org/seals/blue-seal-280-80-clc-landscape-irrigation-46013758.png" /></a> </div> <?php } add_action('ava_main_header','ava_add_seal');
Use this on Quick CSS to adjust the position of the seal:
.header-seal { position: absolute; right: 0; top: 0; }
Regards,
IsmaelAugust 19, 2014 at 6:27 am #306116Ok THis is what I have in my Functions file right now
what is the correct syntax for both functions to work?
- This reply was modified 10 years, 3 months ago by deerstonedevelopment.
August 19, 2014 at 6:40 am #306121I figured it out Thank you for all of your support! ;)
-
AuthorPosts
- The topic ‘How TO add BBB Accredited Site seal In Header’ is closed to new replies.