Ok, the breadcrumbs are already there, they are being covered by the top fixed menu bar.
The easiest solution is to add
margin-top: 50px to the div with id
content-wrapperI'm using this userstyle:
https://userstyles.org/styles/139743- Code: Select all
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("potplayer.daum.net") {
/* disallow menu bar wrap if it doesn't fit into window */
.navbar-fixed-top
{
max-height: 55px;
}
/* move everything else down */
#content-wrapper
{
margin-top: 55px;
}
}
Or userscript (you should NOT use both userscript and userstyle at the same time!):
https://greasyfork.org/en/scripts/29732 ... readcrumbs- Code: Select all
// ==UserScript==
// @name PotPlayer forum breadcrumbs
// @namespace V@no
// @description Add breadcrumbs on PotPlayer's forum
// @include https://potplayer.daum.net/forum/*
// @updateURL https://greasyfork.org/scripts/29732-potplayer-forum-breadcrumbs/code/PotPlayer%20forum%20breadcrumbs.user.js
// @version 1.1
// @grant none
// ==/UserScript==
var inToolbar = true; //show it at top toolbar? (true or false)
var bc = document.getElementsByClassName("btn-breadcrumb"),
style = document.createElement("style"),
css;
inToolbar = inToolbar && bc.length && document.getElementById("search");
if (inToolbar)
{
//set link on logo to home page
document.getElementsByClassName("navbar-header")[0].getElementsByTagName("a")[0].setAttribute("href", "../");
//insert breadcrumbs to top toolbar
document.getElementById("search").parentNode.insertBefore(bc[0], document.getElementById("search").nextSibling);
css = function(){/*
/* center breadcrumbs in the toolbar *//*
.btn-breadcrumb
{
margin-top: 8px;
margin-left: -10px;
}
/* move everything else down *//*
#content-wrapper
{
margin-top: 40px;
}
*/};
}
else
{
css = function(){/*
/* disallow menu bar wrap if it doesn't fit into window *//*
.navbar-fixed-top
{
max-height: 50px;
}
/* move everything else down *//*
#content-wrapper
{
margin-top: 50px;
}
/* make breadcrumbs at fixed position so it always visible *//*
.btn-breadcrumb
{
position: fixed;
z-index: 9999;
}
*/};
}
style.innerHTML = css.toString().slice(14,-3).replace(/\*\/\/\*/g, "*/");
document.getElementsByTagName("head")[0].appendChild(style);
The result is:
Admins, please fix this in forum's stylesheet.