• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

plesk 10 skins and interface management

Hello,
If you mean the default skin you can use the following solution

Code:
#page #navbar li {
	margin: 0;
	vertical-align: top;
}
#page #navbar a {
	margin-left: 1px;
}
#page #navbar .nav-users {
	display: none;
}
 
Hello,
If you mean the default skin you can use the following solution

Code:
#page #navbar li {
	margin: 0;
	vertical-align: top;
}
#page #navbar a {
	margin-left: 1px;
}
#page #navbar .nav-users {
	display: none;
}
Yes I have the default skin, I added your code in my /default/css/customer/custom.css file and no effect, "Users" tab is always available in old browsers ...
 
Last edited:
Hello, Mickael.
Try to refresh browser with ctrl+f5 to clear cache. May be old styles were cached. I check this code in IE6, 7, 8 and it works. Try to check with developer tools in IE (or in other browsers) that the code is really applied.
 
Hello, Mickael.
Try to refresh browser with ctrl+f5 to clear cache. May be old styles were cached. I check this code in IE6, 7, 8 and it works. Try to check with developer tools in IE (or in other browsers) that the code is really applied.
indeed, an another part in custom.css broke your code. Ty very much guys, your CSS2 modification works on all browsers ;)
 
Back
Top