Logo Display
ThroughMyZoom
Registered Users Posts: 4 Big grins
I'm not quite sure how to ask this in search. My site is www.throughmyzoom.com. I want my logo on the front page where it is located now. But, I want "Through My Zoom" in text on all of the other pages.
Right now I have it in the header but that shows up on all of the pages.
Is it possible to do it the way I want.
Rick
Right now I have it in the header but that shows up on all of the pages.
Is it possible to do it the way I want.
Rick
0
Comments
Put you home page logo in the content section. Put the "other pages logo" in the header. You can then use CSS to hide the header section in your home page.
Images in the Backcountry
My SmugMug Customizations | Adding CSS to Your Site | SEO for the Photographer | Locate Your Page/Widget Number | SmugMug Help Desk
Add this to your theme's custom CSS section. If you don't know how, read the 'Adding CSS to Your Site' link in my signature. This should hide the header section only on the home page:
.sm-page-node-VXLw44 .sm-page-layout-region-header {display: none;}
.Images in the Backcountry
My SmugMug Customizations | Adding CSS to Your Site | SEO for the Photographer | Locate Your Page/Widget Number | SmugMug Help Desk
I got my logo on the front page like I want. But the CSS didn't seem to hide the header on my home page. Maybe I did something wrong?
Rick
Not sure where I got the
VXLw44
from, but that was wrong. You also added an extra period after the code, so remove this:.sm-page-node-VXLw44 .sm-page-layout-region-header {display: none;}.
Use this instead:
.sm-page-node-nmdthW .sm-page-layout-region-header {display: none;}
Images in the Backcountry
My SmugMug Customizations | Adding CSS to Your Site | SEO for the Photographer | Locate Your Page/Widget Number | SmugMug Help Desk
Thanks so much Mike! That did the trick. You're awesom.
Rick