bootswatch icon indicating copy to clipboard operation
bootswatch copied to clipboard

Fading bottom border

Open PurpleFox32 opened this issue 2 years ago • 2 comments

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?

PurpleFox32 avatar Jun 19 '22 22:06 PurpleFox32

What I mean by remove it is remove it for the project that I am working on. Not the overall theme.

PurpleFox32 avatar Jun 19 '22 22:06 PurpleFox32

Hi @PurpleFox32,

To remove the background gradient:

body {
  background-image: none;
}

To make it fixed:

body {
   background-attachment: fixed;
}

thomaspark avatar Sep 15 '22 14:09 thomaspark