Page 36 of 54 FirstFirst ... 26343536373846 ... LastLast
Results 351 to 360 of 535
  1. #351
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: Footer Menu Support Thread

    You can hard-code the list height by adding to your stylesheet_footer_menu

    #navSuppWrapper ul {height:10.0em;}

    This will need to be adjusted to fit the number of links in the tallest column.

  2. #352

    Default Re: Footer Menu Support Thread

    I have finally figured out my footer and thought I had it perfect but it's not lol. http://www.frompropertorocker.com

    It looks great (at least on my end) in Firefox and IE. Chrome it looks horrible. lol

    How do I fix it so it shows up better in Chrome without it making it look horrible in the other two?

    Thanks in advance!

  3. #353
    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 nolsowski View Post
    I have finally figured out my footer and thought I had it perfect but it's not lol. http://www.frompropertorocker.com

    It looks great (at least on my end) in Firefox and IE. Chrome it looks horrible. lol

    How do I fix it so it shows up better in Chrome without it making it look horrible in the other two?

    Thanks in advance!
    You might want to put the following inside a div as indicated; style the div as follows:

    .social {
    clear:both;
    width:100%;
    }

    <div class="social">
    <span id="social-media">

    <a href="http://www.twitter.com/From_Proper"><img src="includes/templates/alysa_rounded/images/twitter.png" class="twitter-image" alt="twitter link" /></a>
    <a href="http://www.facebook.com/fromproper"><img src="includes/templates/alysa_rounded/images/facebook.png" class="facebook-image" alt="facebook link" /></a>
    </span>

    <span id="paypal-logo">
    <a href="https://www.paypal.com/us/verified/pal=frompropertorocker%40gmail.com"><img src="includes/templates/alysa_rounded/images/paypal.gif" class="paypal-image" alt="paypal link" /></a>
    </span>
    </div>

  4. #354
    Join Date
    May 2010
    Posts
    222
    Plugin Contributions
    0

    Default Re: Footer Menu Support Thread

    Quote Originally Posted by gjh42 View Post
    You can hard-code the list height by adding to your stylesheet_footer_menu

    #navSuppWrapper ul {height:10.0em;}

    This will need to be adjusted to fit the number of links in the tallest column.
    Perfect!

    Thank you for the help.

  5. #355

    Default Re: Footer Menu Support Thread

    Quote Originally Posted by clydejones View Post
    You might want to put the following inside a div as indicated; style the div as follows:

    .social {
    clear:both;
    width:100%;
    }

    <div class="social">
    <span id="social-media">

    <a href="http://www.twitter.com/From_Proper"><img src="includes/templates/alysa_rounded/images/twitter.png" class="twitter-image" alt="twitter link" /></a>
    <a href="http://www.facebook.com/fromproper"><img src="includes/templates/alysa_rounded/images/facebook.png" class="facebook-image" alt="facebook link" /></a>
    </span>

    <span id="paypal-logo">
    <a href="https://www.paypal.com/us/verified/pal=frompropertorocker%40gmail.com"><img src="includes/templates/alysa_rounded/images/paypal.gif" class="paypal-image" alt="paypal link" /></a>
    </span>
    </div>
    Thank you! I will give it a shot.

  6. #356

    Default Re: Footer Menu Support Thread

    Quote Originally Posted by clydejones View Post
    You might want to put the following inside a div as indicated; style the div as follows:

    .social {
    clear:both;
    width:100%;
    }

    <div class="social">
    <span id="social-media">

    <a href="http://www.twitter.com/From_Proper"><img src="includes/templates/alysa_rounded/images/twitter.png" class="twitter-image" alt="twitter link" /></a>
    <a href="http://www.facebook.com/fromproper"><img src="includes/templates/alysa_rounded/images/facebook.png" class="facebook-image" alt="facebook link" /></a>
    </span>

    <span id="paypal-logo">
    <a href="https://www.paypal.com/us/verified/pal=frompropertorocker%40gmail.com"><img src="includes/templates/alysa_rounded/images/paypal.gif" class="paypal-image" alt="paypal link" /></a>
    </span>
    </div>
    Okay brain fart lol. Where would I put this code?

  7. #357
    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 nolsowski View Post
    Okay brain fart lol. Where would I put this code?
    I'm guessing you made modifications to tpl_footer_menu.php

    The css change would be made to stylesheet_footer_menu.css

  8. #358

    Default Re: Footer Menu Support Thread

    Quote Originally Posted by clydejones View Post
    I'm guessing you made modifications to tpl_footer_menu.php

    The css change would be made to stylesheet_footer_menu.css
    Yep I did make modifications in the tpl_footer. I added the code to the stylesheet_footer_menu and I am lost now. I can't even get them to where they were before.

    Oh I added it to my test site here http://frompropertorocker.com/fptr_t...php?main_page=

  9. #359
    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 nolsowski View Post
    Yep I did make modifications in the tpl_footer. I added the code to the stylesheet_footer_menu and I am lost now. I can't even get them to where they were before.

    Oh I added it to my test site here http://frompropertorocker.com/fptr_t...php?main_page=
    This does not go in the stylesheet_footer_menu.css but in tpl_footer_menu.php
    Code:
    <div class="social">
    <span id="social-media">
    
    <a href="http://www.twitter.com/From_Proper"><img src="includes/templates/alysa_rounded/images/twitter.png" class="twitter-image" alt="twitter link" /></a>
    <a href="http://www.facebook.com/fromproper"><img src="includes/templates/alysa_rounded/images/facebook.png" class="facebook-image" alt="facebook link" /></a>
    </span>
    
    <span id="paypal-logo">
    <a href="https://www.paypal.com/us/verified/pal=frompropertorocker%40gmail.com"><img src="includes/templates/alysa_rounded/images/paypal.gif" class="paypal-image" alt="paypal link" /></a>
    </span>
    </div>
    This goes in the stylesheet_footer_menu.css
    .social {
    clear:both;
    width:100%;

  10. #360

    Default Re: Footer Menu Support Thread

    Quote Originally Posted by clydejones View Post
    This does not go in the stylesheet_footer_menu.css but in tpl_footer_menu.php
    Code:
    <div class="social">
    <span id="social-media">
    
    <a href="http://www.twitter.com/From_Proper"><img src="includes/templates/alysa_rounded/images/twitter.png" class="twitter-image" alt="twitter link" /></a>
    <a href="http://www.facebook.com/fromproper"><img src="includes/templates/alysa_rounded/images/facebook.png" class="facebook-image" alt="facebook link" /></a>
    </span>
    
    <span id="paypal-logo">
    <a href="https://www.paypal.com/us/verified/pal=frompropertorocker%40gmail.com"><img src="includes/templates/alysa_rounded/images/paypal.gif" class="paypal-image" alt="paypal link" /></a>
    </span>
    </div>
    This goes in the stylesheet_footer_menu.css
    .social {
    clear:both;
    width:100%;
    Ok got them where they need to be. How do I get it so it looks good in Chrome now?

 

 
Page 36 of 54 FirstFirst ... 26343536373846 ... 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