bootswatch
bootswatch copied to clipboard
Fading bottom border
I love the Vapor Bootstrap theme a lot but the only issue I have is the blue fading effect on the page. I am not saying get rid of it completely but is there a way to remove it or force it to stay at the bottom of the screen at all times no matter the screen size?
What I mean by remove it is remove it for the project that I am working on. Not the overall theme.
Hi @PurpleFox32,
To remove the background gradient:
body {
background-image: none;
}
To make it fixed:
body {
background-attachment: fixed;
}