I liked the new jupiter WHM interface, the old one looked almost like '90s and it was messy.
Anyway, what I hated was the blue sidebar background color so I made some simple changes to CSS and applied to my Firefox UserContent.css and I wanted to share with you in case you like it.
Anyway, what I hated was the blue sidebar background color so I made some simple changes to CSS and applied to my Firefox UserContent.css and I wanted to share with you in case you like it.
Code:
@-moz-document domain('yourdomain.net){
.jupiter-main-content {
padding: 1% !important;
}
@media (min-width: 1200px) {
.col-lg-10 {
width: 95% !important;
}
.col-lg-offset-1 {
margin-left: 2.5% !important;
}
}
body {
font-size: 16px !important;
}
:root {
--cp-primary-color: #364f84 !important;
}
}