Page 12 of 54 FirstFirst ... 2101112131422 ... LastLast
Results 111 to 120 of 535
  1. #111
    Join Date
    Nov 2008
    Posts
    69
    Plugin Contributions
    0

    Default Re: Footer Menu Support Thread


  2. #112
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Footer Menu Support Thread

    Quote Originally Posted by jeskremer View Post
    is there any additional script(s) associated with the bookmark link?

  3. #113
    Join Date
    Nov 2008
    Posts
    69
    Plugin Contributions
    0

    Default Re: Footer Menu Support Thread

    Yes...

    It is in the tpl_header.php:

    HTML Code:
    <script type="text/javascript">
    
    /***********************************************
    * Bookmark site script- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
    * This notice MUST stay intact for legal use
    * Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
    ***********************************************/
    
    /* Modified to support Opera */
    function bookmarksite(title,url){
    if (window.sidebar) // firefox
    	window.sidebar.addPanel(title, url, "");
    else if(window.opera && window.print){ // opera
    	var elem = document.createElement('a');
    	elem.setAttribute('href',url);
    	elem.setAttribute('title',title);
    	elem.setAttribute('rel','sidebar');
    	elem.click();
    } 
    else if(document.all)// ie
    	window.external.AddFavorite(url, title);
    }
    </script>

  4. #114
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Footer Menu Support Thread

    Quote Originally Posted by jeskremer View Post
    Yes...

    It is in the tpl_header.php:

    HTML Code:
    <script type="text/javascript">
    
    /***********************************************
    * Bookmark site script- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
    * This notice MUST stay intact for legal use
    * Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
    ***********************************************/
    
    /* Modified to support Opera */
    function bookmarksite(title,url){
    if (window.sidebar) // firefox
    	window.sidebar.addPanel(title, url, "");
    else if(window.opera && window.print){ // opera
    	var elem = document.createElement('a');
    	elem.setAttribute('href',url);
    	elem.setAttribute('title',title);
    	elem.setAttribute('rel','sidebar');
    	elem.click();
    } 
    else if(document.all)// ie
    	window.external.AddFavorite(url, title);
    }
    </script>
    Its in the wrong place then.

    It should be in the <head> </head> section of the site.

    The easiest way to accomplish that is to

    create a new php document (jscript_bookmark.php) copy the script into that file. save it. and then upload to your server

    includes/templates/YOUR_TEMPLATE/jscript/jscript_bookmark.php

  5. #115
    Join Date
    Nov 2008
    Posts
    69
    Plugin Contributions
    0

    Default Re: Footer Menu Support Thread

    I have made that change.

  6. #116
    Join Date
    Jun 2009
    Posts
    617
    Plugin Contributions
    0

    Default Re: Footer Menu Support Thread

    Hi,

    Need some help getting the styling right with this great mod!

    Just looking to get the whole thing centered correctly, I believe its a bit off (to the left).

    Here is the css, I have made changes to it (changes marked by comments) - trying to get the styling right!

    Code:
    #footer {
    	clear:both;
    	margin:5em 0em 0em 0em; /*0*/
    	text-align: center; /*added code*/
    	}
    	
    /*
    #navSuppWrapper {
    	margin: 10px 5px 0;
    	padding: 0;
    	background:none;
    	font-weight: bold;none
    	}
    */
    	
    dl {  /*Adjust the height and width of the menu*/
    	/*margin:5px 160px 3px 160px;/*0 0 3px 0*/
    	margin:5px auto 3px auto;/*added*/
    	padding:0 auto;/*0*/
    	clear:both;
    	height:125px;/*79px */
    	width:75%;/*100%*/
    	color: #005599; /*added code*/
    	background-color: #d7d7d7;/*added eeeeee*/
    	border:0px solid #000;/*added*/
    	vertical-align:middle;/*added*/
    	}
    	
    dt {
    	margin-bottom:.3em;
    	/*font-weight:bold;*/
    	}
    dd { /*Column width of the menu - currently set for 4 columns*/
    	margin:0 25px;/*0*/
    	padding:0 auto;/*0*/
    	float:left;
    	width:18%;/*24.3%*/
    	color: #005599; /*added code*/
    	}
    ul {
    	margin:0;
    	padding:0;
    	list-style: none;
    	}
    li {
    	margin:0;
    	padding:0;
    	}
    li a {
    	margin:0;
    	padding-left:3.5em;
    	display:block;
    	/*text-decoration:underline;/*added*/
    	}
    	
    li a:hover {
    	color: #005599;
    	/*text-decoration:underline;/*added*/
    	}
    .menuTitle {
    	margin:0;
    	padding-top:0.5em;/*added*/
    	padding-bottom:0.5em; /*.3*/
    	padding-left:2.5em;/*added 0.8em*/
    	text-align:left;/*center*/
    	font-size:1.3em; /*1.2em*/
    	font-weight: bold;/*added*/
    	color: #000000;/*added ff6600*/
    	/*border:1px solid #000;/*added*/
    	}
    	
    .first, .second, .third , .four{
    	/*border:1px dotted #000;/*added*/
    	vertical-align:middle;/*added*/
    	margin-left:2em;/*added*/
    	/*border-right:1px dotted #000;*/
    	}
    	
    #siteinfoLegal {
        margin: 0 auto;
    	padding: .5em 0 0;
    	font-size: 1.2em; /*0.9em*/
    	text-align:center;
    	width:100%;
    	line-height:normal;
    	clear:both;
    }
    #siteinfoLegal a {
    	padding: 0 0.5em 1.5em 0.5em;/*0 0.5em 1.5em 0.5em*/
    	color: #000059; /*000*/
    	text-decoration: underline; /*added code*/
    	font-weight:normal; /*bold*/
    	white-space: nowrap;
    	}
    	
    #siteinfoLegal a:hover {
    	color: #005599; /*000
    	background: #EAC27C;*/
    	}
    Thanks for all help.
    Thank you,
    autoace

  7. #117
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Footer Menu Support Thread

    Quote Originally Posted by autoace View Post
    Hi,

    Need some help getting the styling right with this great mod!

    Just looking to get the whole thing centered correctly, I believe its a bit off (to the left).

    Here is the css, I have made changes to it (changes marked by comments) - trying to get the styling right!

    Code:
    #footer {
    	clear:both;
    	margin:5em 0em 0em 0em; /*0*/
    	text-align: center; /*added code*/
    	}
    	
    /*
    #navSuppWrapper {
    	margin: 10px 5px 0;
    	padding: 0;
    	background:none;
    	font-weight: bold;none
    	}
    */
    	
    dl {  /*Adjust the height and width of the menu*/
    	/*margin:5px 160px 3px 160px;/*0 0 3px 0*/
    	margin:5px auto 3px auto;/*added*/
    	padding:0 auto;/*0*/
    	clear:both;
    	height:125px;/*79px */
    	width:75%;/*100%*/
    	color: #005599; /*added code*/
    	background-color: #d7d7d7;/*added eeeeee*/
    	border:0px solid #000;/*added*/
    	vertical-align:middle;/*added*/
    	}
    	
    dt {
    	margin-bottom:.3em;
    	/*font-weight:bold;*/
    	}
    dd { /*Column width of the menu - currently set for 4 columns*/
    	margin:0 25px;/*0*/
    	padding:0 auto;/*0*/
    	float:left;
    	width:18%;/*24.3%*/
    	color: #005599; /*added code*/
    	}
    ul {
    	margin:0;
    	padding:0;
    	list-style: none;
    	}
    li {
    	margin:0;
    	padding:0;
    	}
    li a {
    	margin:0;
    	padding-left:3.5em;
    	display:block;
    	/*text-decoration:underline;/*added*/
    	}
    	
    li a:hover {
    	color: #005599;
    	/*text-decoration:underline;/*added*/
    	}
    .menuTitle {
    	margin:0;
    	padding-top:0.5em;/*added*/
    	padding-bottom:0.5em; /*.3*/
    	padding-left:2.5em;/*added 0.8em*/
    	text-align:left;/*center*/
    	font-size:1.3em; /*1.2em*/
    	font-weight: bold;/*added*/
    	color: #000000;/*added ff6600*/
    	/*border:1px solid #000;/*added*/
    	}
    	
    .first, .second, .third , .four{
    	/*border:1px dotted #000;/*added*/
    	vertical-align:middle;/*added*/
    	margin-left:2em;/*added*/
    	/*border-right:1px dotted #000;*/
    	}
    	
    #siteinfoLegal {
        margin: 0 auto;
    	padding: .5em 0 0;
    	font-size: 1.2em; /*0.9em*/
    	text-align:center;
    	width:100%;
    	line-height:normal;
    	clear:both;
    }
    #siteinfoLegal a {
    	padding: 0 0.5em 1.5em 0.5em;/*0 0.5em 1.5em 0.5em*/
    	color: #000059; /*000*/
    	text-decoration: underline; /*added code*/
    	font-weight:normal; /*bold*/
    	white-space: nowrap;
    	}
    	
    #siteinfoLegal a:hover {
    	color: #005599; /*000
    	background: #EAC27C;*/
    	}
    Thanks for all help.
    Link to your site?

  8. #118
    Join Date
    Jun 2009
    Posts
    617
    Plugin Contributions
    0

    Default Re: Footer Menu Support Thread

    Quote Originally Posted by clydejones View Post
    Link to your site?
    Clyde,

    Sorry, forgot this one important piece of info!

    Here you go, http://www.a u t o m o t i v e a c e.com

    I have to replace my ssl, so you may get a warning about that - working on it!

    Thanks for your help
    Thank you,
    autoace

  9. #119
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Footer Menu Support Thread

    Quote Originally Posted by autoace View Post
    Clyde,

    Sorry, forgot this one important piece of info!

    Here you go, http://www.a u t o m o t i v e a c e.com

    I have to replace my ssl, so you may get a warning about that - working on it!

    Thanks for your help
    seems your site is down.

  10. #120
    Join Date
    Jan 2010
    Posts
    12
    Plugin Contributions
    0

    help question Re: Footer Menu Support Thread

    A adding the footer menu (which looks awesome) it aligned my sidebox text to the center. I've removed the files 4 now & my sidebox content is no longer centered. Thus we know the source of the issue.

    Has anyone ever resolved this?

 

 
Page 12 of 54 FirstFirst ... 2101112131422 ... LastLast

Similar Threads

  1. v154 Flexible Footer Menu Multilingual [Support Thread]
    By rbarbour in forum All Other Contributions/Addons
    Replies: 130
    Last Post: 1 Jun 2025, 02:18 PM
  2. Hebrew Support - latest release [Support Thread]
    By eranariel in forum Addon Language Packs
    Replies: 20
    Last Post: 23 Apr 2025, 08:49 AM
  3. Category Tab Simple Dropdown Menu 1.3.9 Support Thread
    By dbltoe in forum All Other Contributions/Addons
    Replies: 46
    Last Post: 30 Mar 2024, 06:12 PM
  4. adding links to top menu and footer menu
    By satrina in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 7 Nov 2012, 10:17 PM
  5. Easy way to edit header/top menu, footer menu, and sidebar menu?
    By templar2 in forum Templates, Stylesheets, Page Layout
    Replies: 8
    Last Post: 30 Jun 2009, 11:14 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR