RE: Background as header images. 03-28-2017, 06:28 AM
#10
(03-28-2017, 06:10 AM)Synthx Wrote:(03-28-2017, 05:59 AM)Ender Wrote:(03-28-2017, 04:58 AM)Jiggly Wrote: My god I forgot how many times the theme has changed.
I am not aware of a method to change it, but I've never tried. Perhaps Zenith can enlighten us?
Code:body {
background-image: url("https://sinister.ly/images/sinister2/header/4.png");
}
@Synthx Just get stylish and use this as a style.
Cant get Stylish with the main browser I use, I use Brave
You should be able to use the chrome web store, as it's based on chromium.
https://chrome.google.com/webstore/detai...leoegfcffe
I think a darker body background might look better
Like this:
Code:
body {
background-image: linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5) ), url("https://sinister.ly/images/sinister2/header/4.png");
}
Not completely sure, I'm gonna play around some more.
EDIT:
[spoiler]
This is the best I have so far:
Code:
body {
background-image: linear-gradient( rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0) ), url("https://sinister.ly/images/sinister2/header/4.png");
}
.header {
background: url("https://sinister.ly/images/sinister2/header/4.png");
border-bottom: unset;
}
(This post was last modified: 03-28-2017, 06:33 AM by Blink.)