Rename/translate "Browse" in breadcrumb
Pixal
Registered Users Posts: 6 Big grins
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.
0
Comments
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
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