Zen Follower
- Join Date:
- Sep 2008
- Posts:
- 397
- Plugin Contributions:
- 0
How to put SSL logo under right sidebox?
Hello,
Which file can I install SSL logo on page footer? or under right sidebox(outside)?
Thanks in advance.
Views: 2,942
Zen Follower
Hello,
Which file can I install SSL logo on page footer? or under right sidebox(outside)?
Thanks in advance.
Black Belt
Which file can I install SSL logo on page footer?
tpl_footer.php
or under right sidebox(outside)?
Get module "blank side box" module and place it into this
Zen Follower
kobra:
tpl_footer.php
Get module "blank side box" module and place it into this
Where can I get the module "blank side box"?
I'm newer, sorry keep asking.
Thanks a lot.
Black Belt
Where can I get the module "blank side box"?
In the free software addons link at the top of this page
Totally Zenned
What SSL logo is it?
If it's a Godaddy, there is a Godaddy sidebox in the free add-ons.
I use this on my site, then HIDE the box features such as borders and header with a style declaration display:none.
New Zenner
Thanks for this great info, very helpful when I (as a non-programmer) was trying to figure out how to include the godaddy seal in one of the sideboxes.
Quick question, though -- where do I put display:none? In the file godaddy_defines.php, under define?
Zen Follower
fairestcape:
What SSL logo is it?
If it's a Godaddy, there is a Godaddy sidebox in the free add-ons.
I use this on my site, then HIDE the box features such as borders and header with a style declaration display:none.
I added/uploaded this file (tpl_godaddy_plus.php)
to my site. Where can I activate it from admin? also how to display:none?
Thanks in advance.
New Zenner
You activate it in the layout boxes controller under the tools heading in your admin. I'm still trying to figure out where display:none goes -- don't do what I asked above, that will hide your entire page. ha.
Read the attached text file, too, you'll need to add the following files:
/includes/languages/english/extra_definitions/YOUR_TEMPLATE/godaddy_defines.php
/includes/modules/sideboxes/YOUR_TEMPLATE/godaddy.php
/includes/modules/templates/YOUR_TEMPLATE/sideboxes/tpl_godaddy.php
Zen Follower
groel:
You activate it in the layout boxes controller under the tools heading in your admin. I'm still trying to figure out where display:none goes -- don't do what I asked above, that will hide your entire page. ha.
Read the attached text file, too, you'll need to add the following files:
/includes/languages/english/extra_definitions/YOUR_TEMPLATE/godaddy_defines.php
/includes/modules/sideboxes/YOUR_TEMPLATE/godaddy.php
/includes/modules/templates/YOUR_TEMPLATE/sideboxes/tpl_godaddy.php
SSL logo Work now. I still need to find out how to delete the sidebox border. Thank you!
Totally Zenned
Using fairestcape's example, you would add this declaration to the stylesheet:
#godaddyHeading {
display: none;
}
Link to your site would be helpful.
New Zenner
bobdog:
Using fairestcape's example, you would add this declaration to the stylesheet:
#godaddyHeading {
display: none;
}Link to your site would be helpful.
I added the above code to my stylesheet, but there is still a border. Is there another line of code to eliminate that completely? Site is https://www.vermontdesignsunlimited.com.
Thanks!
Greg
Zen Follower
bobdog:
Using fairestcape's example, you would add this declaration to the stylesheet:
#godaddyHeading {
display: none;
}Link to your site would be helpful.
I don't know which file and where should I put it on?
Black Belt
hara:
I don't know which file and where should I put it on?
bobdog:Using fairestcape's example, you would add this declaration to the stylesheet:
To your templates' stylesheet.css
Zen Follower
Yes, heading is gone by putting the following:
#godaddyHeading {
display: none;
}
BUT THE SIDEBOX BORDERS STILL THERE. HOW TO DELETE BORDERS ALSO?
Zen Follower
All are normal on Firefox browser. However,
A problem found. SSL logo is unclickable on IE browser.
Also my site self align to left screen on IE after installing SSL logo in sidebox. Any advising would be appreciated.
Totally Zenned
hara:
Yes, heading is gone by putting the following:
#godaddyHeading {
display: none;
}BUT THE SIDEBOX BORDERS STILL THERE. HOW TO DELETE BORDERS ALSO?
#godaddy.leftBoxContainer {border: none;}
PS: if you use Firefox with Web Developer Toolkit Add-on, you'll save yourself a lot of headaches!
New Zenner
Thanks, fairestcape -- I really appreciate your help!
Zen Follower
Hello,
I am having the same issue in that I cannot seem to figure out how to het the GoDaddy seal to appear in the GoDaddy box?
I checked the above post but I am missing something. The GoDaddy box is enabled and it shows up as "Secured" but with no cert?
I Dunno?
Totally Zenned
4thwave:
Hello,
I am having the same issue in that I cannot seem to figure out how to het the GoDaddy seal to appear in the GoDaddy box?I checked the above post but I am missing something. The GoDaddy box is enabled and it shows up as "Secured" but with no cert?
I Dunno?
You need to collect the cert code from godaddy first - login to godaddy and go to your SSL certificates. Follow links to SITE SEAL.
The part of the code you need will have the following format:
https://seal.godaddy.com/getSeal?sealID=603982494071f8c61f12710b91e37cc117c3f03487793072649923782
Then, in includes/templates/YOUR_TEMPLATE/sideboxes/tpl_godaddy.php , there is a line that reads:
$content .= '<script type="text/javascript" src="LINK FOR YOUR GODADDY SEAL GOES HERE"></script>';
You then need to INSERT THE STRIP OF CODE where it tells you... so you get...
$content .= '<script type="text/javascript" src="https://seal.godaddy.com/getSeal?sealID=603982494071f8c61f12710b91e37cc117c3f03487793072649923782"></script>';
Tell staff why this post should be reviewed.