Some minor help please

JoeSalmiJoeSalmi Registered Users Posts: 177 Major grins
edited October 13, 2008 in SmugMug Support
I am helping a friend fix her site and I have run into some errors, I was wondering if someone could give me a hand real quick.

her site is http://magenmarie.smugmug.com/

And here is my problems:

1. I have 2 of the same footers, but I need the top one to stay there while the bottom one needs to go find a new home somewhere else.

2. From the home page if you scroll down you see a big space with a broken picture or something in it, I need to remove that.

3. In the links area at the top I need to adjust the area at which the mouse is able to click it.

4. when you click on the galleries link it like you get a copy of the homepage.

FWIW I used the info from this site.

http://mikelane.smugmug.com/

Comments

  • jfriendjfriend Registered Users Posts: 8,097 Major grins
    edited October 10, 2008
    JoeSalmi wrote:
    I am helping a friend fix her site and I have run into some errors, I was wondering if someone could give me a hand real quick.

    her site is http://magenmarie.smugmug.com/

    And here is my problems:

    1. I have 2 of the same footers, but I need the top one to stay there while the bottom one needs to go find a new home somewhere else.

    2. From the home page if you scroll down you see a big space with a broken picture or something in it, I need to remove that.

    3. In the links area at the top I need to adjust the area at which the mouse is able to click it.

    4. when you click on the galleries link it like you get a copy of the homepage.

    FWIW I used the info from this site.

    http://mikelane.smugmug.com/

    You have a variety of duplicate code in the page. Without seeing your control panel, it's kind of hard to figure out what is making it do that. If you could post the contents here of your custom header, custom footer and bio boxes from the control panel, that might help see what's going on.

    Another option to let us see what's going on would be to put an HTML comment at the start and end of your bio, custom header and custom footer. This would let us see more clearly what you are putting in the page and what Smugmug is putting in the page. They can be of the form:

    <!-- Start My Bio -->

    Your Bio HTML here

    <!-- End My Bio -->

    <!-- Start My Custom Header -->

    your custom header HTML here

    <!-- End My Custom Header -->


    <!-- Start My Custom Footer -->

    your custom footer HTML here

    <!-- End My Custom Footer -->
    --John
    HomepagePopular
    JFriend's javascript customizationsSecrets for getting fast answers on Dgrin
    Always include a link to your site when posting a question
  • JoeSalmiJoeSalmi Registered Users Posts: 177 Major grins
    edited October 10, 2008
    Where do you see duplicate codes? I just searched each section and I'm not seeing any dup codes.
  • AllenAllen Registered Users Posts: 10,015 Major grins
    edited October 10, 2008
    JoeSalmi wrote:
    I am helping a friend fix her site and I have run into some errors, I was wondering if someone could give me a hand real quick.

    her site is http://magenmarie.smugmug.com/

    And here is my problems:

    1. I have 2 of the same footers, but I need the top one to stay there while the bottom one needs to go find a new home somewhere else.
    ...
    You have to name the new footer a different name and hide the real one with CSS.

    <div id="my_cobrand_footer">
    ...
    ...
    </div>
    Al - Just a volunteer here having fun
    My Website index | My Blog
  • AllenAllen Registered Users Posts: 10,015 Major grins
    edited October 10, 2008
    An ID can only be used on a page one time and you can't use a new ID that's a default Smugmug ID.
    I don't think the feeds div will work, it's generated, so will have to move the original one.
    <div id="my_cobrand_footer" class="nav" style="visibility: visible; display: block;">
            <div id="my_footer" class="nav" style="visibility: visible; display: block;">
                <span class="text">Powered by 
                   <a href="http://www.smugmug.com/?referrer=gDwyUkSMwKWdI" class="nav">SmugMug
                   </a>
                </span> |
                <span class="loginLink">
                   <a href="http://www.smugmug.com/logout.mg?goTo=http%3A%2F%2Fmagenmarie.smugmug.com%2F" class="nav">Logout
                   </a> | </span>
                <span class="cartlink_footer">
                   <a href="https://secure.smugmug.com/cart" class="nav">Shopping Cart
                   </a> | </span>
                <span class="text">Portions © 2008 SmugMug, Inc.
                </span>
            </div>
       [color=red] <div id="my_feeds" class="nav">
          <div id="my_allFeeds">
               </div>[/color]
        </div>
    </div>    
    
    Something like this maybe. The feeds will have to be different to move the original one.
    #footer .nav,
    #feeds,
    #cobrand_footer .nav {display:none !important;}
    
    #my_cobrand_footer {width:800px; padding:5px 10px; margin:0 auto; 
       border:solid #dadada; border-width:1px 0 0; position:relative;}
    
    #my_cobrand_footer .nav,
    #my_cobrand_footer .text {font:7pt verdana, arial, sans-serif;}
    
    #my_cobrand_footer #my_footer {margin:0; padding:0; width:800px; 
       text-align:left; font:7pt verdana, arial sans-serif; color:#dadada;}
    
    [color=red]#my_cobrand_footer #my_feeds {width:16px; height:16px; 
       position:absolute; top:0; right:10px; visibility:hidden;}
    
    #my_cobrand_footer #my_feeds a img {visibility:visible;}
    
    #my_cobrand_footer #my_feeds #my_allFeeds {background:#111; 
       color:#dadada; border:1px solid #666; visibility:visible; position:absolute; 
       right:0; top:25px; margin:0; padding:0; width:20em; height:42px 
       !important;}
    
    #my_cobrand_footer #my_feeds .feedLine {margin:0; border:0;}[/color]
    
    Al - Just a volunteer here having fun
    My Website index | My Blog
  • JoeSalmiJoeSalmi Registered Users Posts: 177 Major grins
    edited October 10, 2008
    okay I got it by removing the

    #footer .nav, at the top of your code and it now shows up.
  • JoeSalmiJoeSalmi Registered Users Posts: 177 Major grins
    edited October 10, 2008
    okay I also got rid of the flash at the bottom of the screen, Now I just need to fix the slideshow in the galleries section and the links at the tops of the pages.
  • JoeSalmiJoeSalmi Registered Users Posts: 177 Major grins
    edited October 11, 2008
    Anyone have any other ideas?

    I think it has something to do with the css code here:
    Removed code, I got it
    
  • JoeSalmiJoeSalmi Registered Users Posts: 177 Major grins
    edited October 11, 2008
    Okay I have one more problem that I DO NOT know why it's doing it... Allen I hope you can help me with this one...

    Can you tell me why I see the flash slideshow on the main page and on the gallery page?

    http://magenmarie.smugmug.com/galleries

    Here is what I have in the CSS


    .galleries #bioBox {display: none;}
    .galleries #userbio {display: none;}
    .galleries #bioBox #userBio {display: none;}
    

    And it's still showing
  • AllenAllen Registered Users Posts: 10,015 Major grins
    edited October 12, 2008
    JoeSalmi wrote:
    Okay I have one more problem that I DO NOT know why it's doing it... Allen I hope you can help me with this one...

    Can you tell me why I see the flash slideshow on the main page and on the gallery page?

    http://magenmarie.smugmug.com/galleries

    Here is what I have in the CSS


    .galleries #bioBox {display: none;}
    .galleries #userbio {display: none;}
    .galleries #bioBox #userBio {display: none;}
    
    And it's still showing
    Don't see it now, fix it?
    Al - Just a volunteer here having fun
    My Website index | My Blog
  • JoeSalmiJoeSalmi Registered Users Posts: 177 Major grins
    edited October 12, 2008
    Well I thought I fixed it, I added the css to hide the bio in the galleries but for some reason it's still showing it there. Anywhere else I should look to correct this?
  • AllenAllen Registered Users Posts: 10,015 Major grins
    edited October 12, 2008
    JoeSalmi wrote:
    Well I thought I fixed it, I added the css to hide the bio in the galleries but for some reason it's still showing it there. Anywhere else I should look to correct this?
    Perhaps you need to re-visit this tutor, I don't see the javascript for the hack on the site.
    Al - Just a volunteer here having fun
    My Website index | My Blog
  • JoeSalmiJoeSalmi Registered Users Posts: 177 Major grins
    edited October 12, 2008
    Allen wrote:
    Perhaps you need to re-visit this tutor, I don't see the javascript for the hack on the site.


    Aghhhj yes I knew it was something like that, I removed it last night for something but never put it back. Do you see anything in the CSS that stands out that would make the public galleries not show up?
  • AllenAllen Registered Users Posts: 10,015 Major grins
    edited October 12, 2008
    JoeSalmi wrote:
    Aghhhj yes I knew it was something like that, I removed it last night for something but never put it back. Do you see anything in the CSS that stands out that would make the public galleries not show up?
    I see them on your galleries page. What's missing?
    Al - Just a volunteer here having fun
    My Website index | My Blog
  • JoeSalmiJoeSalmi Registered Users Posts: 177 Major grins
    edited October 12, 2008
    Allen wrote:
    I see them on your galleries page. What's missing?


    Are you looking on this site:
    http://magenmarie.smugmug.com/galleries

    For some reason they are not coming up.
  • AllenAllen Registered Users Posts: 10,015 Major grins
    edited October 12, 2008
    JoeSalmi wrote:
    Are you looking on this site:
    http://magenmarie.smugmug.com/galleries

    For some reason they are not coming up.
    I think your galleries box is hiding in your control panel. Go there under the
    homepage tab and click "show".
    Al - Just a volunteer here having fun
    My Website index | My Blog
  • JoeSalmiJoeSalmi Registered Users Posts: 177 Major grins
    edited October 13, 2008
    Allen wrote:
    I think your galleries box is hiding in your control panel. Go there under the
    homepage tab and click "show".


    HAHAHAHA okay now I feel stupid, here I was looking through the CSS and I was getting frustrated beyond beliefs. Thanks for pointing that out to me Allen..

    Now that I am done with her site I would like to see if you can spot the issue on my site, josephsalmi.com

    I need to center the navbar and fix the "client proofing" field. Suggestions?
Sign In or Register to comment.