html - Make text above the gradient -
how have text ("welcome mane frame radio") above gradient specify in css (jumbotron:after class)?
let bg image on body this:
body { background-image: url('http://znc.mane-frame.com/static/silverleaf.png'); background-repeat: no-repeat; background-attachment: fixed; }
then use gradient jumbotron's background, this:
.jumbotron { display: block; margin: 0 auto; position: relative; background: linear-gradient(to bottom, rgba(255, 26, 2, 0.2) 0%, rgba(127, 13, 1, 1) 100%); }
now don't need jumbotron:after
anymore.
Comments
Post a Comment