spicetify / cli

Command-line tool to customize Spotify client. Supports Windows, MacOS, and Linux.
https://spicetify.app
GNU Lesser General Public License v2.1
18.84k stars 735 forks source link

Persistent stock css. #47

Closed akshat46 closed 5 years ago

akshat46 commented 5 years ago

I am on Ubuntu 18.04. Everything went well with fresh installs of spotify(from .deb package as listed in the wiki) and spicetify. When I tried to change padding for Header__content-wrapper in ~/.config/spicetify/Themes/user.css some of the elements reverted to stock css. Specifically the header background's gradient and the header title style.

image

I have tried deleting spicetify config folder, and reinstalling spotify, and following the steps in "Basic Usage" section in wiki again but it didn't work. Also tried following:

/* ~/.config/spicetify/Themes/user.css */
.Header__background .Header__background-color{
    background-image: none !important;
}

in but it didn't work.

khanhas commented 5 years ago

This is CSS problem, it has nothing to do with Spicetify. You can try these kind of questions on Spectrum first, people with CSS knowledge can help you. Anyway, just put these in your CSS:

.Header__background-color {
    background-color: var(--modspotify_main_bg) !important;
    background-image: none !important;
}