Quote Originally Posted by Boggled View Post
Hi Derek

Try the fix I posted here and see if that helps:
http://www.zen-cart.com/forum/showpo...&postcount=172
Without sounding all gushy, that worked a treat, it was where to put the tags which confused me and being a non PHP/HTML/CSS expert in any way shape or form this was what I needed - You Legend!


As far as your Twitter and Facebook link problems...

When looking at the coding, they are both referencing: <a href="blingthemes">

Your code:
Code:
<!--BOF footer menu display-->
<dl>
<span id="social-media">
<a href="blingthemes">
<img src="includes/templates/all_business/im ages/twitter.png" class="twitter-image" alt="twitter link"/>
</a>
<a href="blingthemes">
</span>
<br class="clearBoth"/>
<!--EOF footer menu display-->
Original Code:
Code:
<!--BOF footer menu display-->
<dl>
<span id="social-media">
<a href="http://www.twitter.com/picaflorazul">
<img src="includes/templates/all_business/im ages/twitter.png" class="twitter-image" alt="twitter link"/>
</a>
<a href="http://www.facebook.com/picaflor-azul#!/profile.php?id=100000413665171">
</span>
<br class="clearBoth"/>
<!--EOF footer menu display-->
The two files it should be pulling this info from are:

includes/languages/english/extra_definitions/all_business/footer_menu_defines.php (approx line 56)
Code:
define('TWITTER', 'http://www.twitter.com/picaflorazul');
define('FACEBOOK','http://www.facebook.com/picaflor-azul#!/profile.php?id=100000413665171');
includes/templates/all_business/common/tpl_footer_menu.php (approx line 24)
Code:
<span id="social-media">
<a href="<?php echo TWITTER; ?>"><img src="includes/templates/all_business/im
ages/twitter.png" class="twitter-image"  alt="twitter link" /></a>
<a href="<?php echo FACEBOOK; ?>"><img src="includes/templates/all_busin
ess/images/facebook.png" class="facebook-image"  alt="facebook link" /></a>
</span>

<br class="clearBoth" />
Try doing a search with the Developers Took Kit for "blingthemes" and see if you can find where it's being referenced. I suspect that is the root of your problem.
Ok so I looked at this again this morning and went on the hunt in my FTP program to see if there was any files that perhaps didn't look right or out of context with Anne's theme, low and behold I clicked on web/includes/extra_configures and in there was a file named estoreparameters.php, after downloading this and opening it up in my text editor it was full of Twitter/Youtube define statements and was obviously causing a conflict!!

Well all I can say is many thanks to Yourself and Anne for the help, I have managed to get 6 months into this without asking any questions and soley using the search function but had come to the stage where my eyes could not handle anymore!!


Once again Many Thanks