Options

Rename/translate "Browse" in breadcrumb

PixalPixal Registered Users Posts: 6 Big grins
edited August 12, 2015 in SmugMug Customization
Is there a way to change the word "Browse" in the breadcrumb of the Browse Page? I have a title on this page, in German like the rest of my site, and like to have a matching breadcrumb. And I don't want to hide the breadcrumb. I'm fine with tweaking the CSS.

Comments

  • Options
    tomnovytomnovy Registered Users Posts: 1,101 SmugMug Employee
    edited August 12, 2015
    Hi Pixal,

    At the moment you cannot rename the BROWSE page - but you could create a new folder on your account and call it anything that you like → place all galleries and subfolders to that new folder and use it instead of using the BROWSE section. I have similar setup here:

    http://www.photom.me/Personal-Work

    I have a folder that is called PERSONAL WORK - which has all galleries that I want to display in this section. I just added it to my navigation bar and thats it :)
    SmugMug Support Hero | Customizer | My SmugMug site - http://www.photom.me | Customization Portal - https://portal.photom.me
  • Options
    pilotdavepilotdave Registered Users Posts: 785 Major grins
    edited August 12, 2015
    Pixal wrote: »
    Is there a way to change the word "Browse" in the breadcrumb of the Browse Page? I have a title on this page, in German like the rest of my site, and like to have a matching breadcrumb. And I don't want to hide the breadcrumb. I'm fine with tweaking the CSS.

    Here's the CSS code that will do it:

    .sm-breadcrumb li:nth-child(3) h1 {

    visibility: hidden;
    position:relative;

    }

    .sm-breadcrumb li:nth-child(3) h1:after {
    display:inline-block;
    position: absolute;
    top: 0;
    left: 0;
    content: "Page Title";
    width:200px;
    visibility:visible;
    }

    Change the "Page Title" text to whatever you want. You may not need the width line or might need to tweak the number to fit your title and your site.

    Dave
Sign In or Register to comment.