What is the best way of making a multicolored background without adding in an image? The Next CEO of Stack OverflowWhen to use IMG vs. CSS background-image?How do I give text or an image a transparent background using CSS?Stretch and scale a CSS image in the background - with CSS onlyHow do I combine a background-image and CSS3 gradient on the same element?What characters can be used for up/down triangle (arrow without stem) for display in HTML?Vertical alignment of elements overlapping in IECSS: div expanding to window height, with margin-bottom fixedWhat is the best way to conditionally apply a class?Left padding on container when content of the article goes past the foldCannot display HTML string

How to count occurrences of text in a file?

Are there any limitations on attacking while grappling?

Why do remote companies require working in the US?

If the heap is initialized for security, then why is the stack uninitialized?

How to make a variable always equal to the result of some calculations?

Is "for causing autism in X" grammatical?

Limits on contract work without pre-agreed price/contract (UK)

Why is the US ranked as #45 in Press Freedom ratings, despite its extremely permissive free speech laws?

Contours of a clandestine nature

Why do professional authors make "consistency" mistakes? And how to avoid them?

What does convergence in distribution "in the Gromov–Hausdorff" sense mean?

Won the lottery - how do I keep the money?

What connection does MS Office have to Netscape Navigator?

Several mode to write the symbol of a vector

Is there an analogue of projective spaces for proper schemes?

Why has the US not been more assertive in confronting Russia in recent years?

Can I equip Skullclamp on a creature I am sacrificing?

Would this house-rule that treats advantage as a +1 to the roll instead (and disadvantage as -1) and allows them to stack be balanced?

Which tube will fit a -(700 x 25c) wheel?

MessageLevel in QGIS3

Different harmonic changes implied by a simple descending scale

How to solve a differential equation with a term to a power?

How did people program for Consoles with multiple CPUs?

Can we say or write : "No, it'sn't"?



What is the best way of making a multicolored background without adding in an image?



The Next CEO of Stack OverflowWhen to use IMG vs. CSS background-image?How do I give text or an image a transparent background using CSS?Stretch and scale a CSS image in the background - with CSS onlyHow do I combine a background-image and CSS3 gradient on the same element?What characters can be used for up/down triangle (arrow without stem) for display in HTML?Vertical alignment of elements overlapping in IECSS: div expanding to window height, with margin-bottom fixedWhat is the best way to conditionally apply a class?Left padding on container when content of the article goes past the foldCannot display HTML string










-2















I'm working on a mock website and have run into an issue. Here is the wix web page I am referencing. I want to scroll to the bottom of my web page and make multicolored div boxes that I can place my text over. Simply put, I can't figure it out. When I try making a div, it covers my background image. How was this done? Thanks in advance for your help.






<!doctype html>
<html lang="en">

<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">

<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">

<title>Keith Consulting</title>

<style>
body
background-image: url("https://66.media.tumblr.com/d0914fab2603665235669293d3b61c37/tumblr_os8sx9UAHb1slhhf0o1_1280.jpg");
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
background-position: bottom;
font: 15px/1.5, helvetica, sans-serif;


p,
h1,
h3
text-transform: capitalize;


.container
width: 80%;
margin: auto;
overflow: hidden;


/*--------------header----------------*/


header

background-color: cornflowerblue;
color: white;
padding-top: 30px;
min-height: 50px;
text-transform: capitalize;



header ul
padding: 0;
margin: 0;


header li
display: inline;
padding: 0 20px 0 20px;


header li a
color: blue;


header nav
float: right;
margin-top: 15px;


header #branding
float: left;
margin-bottom: 25px;


header #branding h1
margin: 0;


header .highlight,
header .current a
color: lavender


/*-------------------------------*/



</style>
</head>

<body>
<header>
<div class="container">
<div id="branding">
<h1>keith<span class="highlight"> consulting</span></h1>
</div>
<nav>
<ul>
<li class="current"><a href="#">home</a></li>
<li><a href="#">about</a></li>
<li><a href="#">services</a></li>
<li><a href="#">project</a></li>
<li><a href="#">clients</a></li>
<li><a href="#">contact</a></li>

</ul>
</nav>
</div>

</header>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
</body></html>












share|improve this question



















  • 1





    Why do you think it's a multicolored background rather than a series of elements all with different backgrounds?

    – Paulie_D
    Mar 21 at 17:11











  • I was just commenting on the appearance, I'm pretty sure its just a stack of colored divs on top of each other. I just don't know how it was done

    – Keith Segovia
    Mar 21 at 17:14















-2















I'm working on a mock website and have run into an issue. Here is the wix web page I am referencing. I want to scroll to the bottom of my web page and make multicolored div boxes that I can place my text over. Simply put, I can't figure it out. When I try making a div, it covers my background image. How was this done? Thanks in advance for your help.






<!doctype html>
<html lang="en">

<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">

<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">

<title>Keith Consulting</title>

<style>
body
background-image: url("https://66.media.tumblr.com/d0914fab2603665235669293d3b61c37/tumblr_os8sx9UAHb1slhhf0o1_1280.jpg");
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
background-position: bottom;
font: 15px/1.5, helvetica, sans-serif;


p,
h1,
h3
text-transform: capitalize;


.container
width: 80%;
margin: auto;
overflow: hidden;


/*--------------header----------------*/


header

background-color: cornflowerblue;
color: white;
padding-top: 30px;
min-height: 50px;
text-transform: capitalize;



header ul
padding: 0;
margin: 0;


header li
display: inline;
padding: 0 20px 0 20px;


header li a
color: blue;


header nav
float: right;
margin-top: 15px;


header #branding
float: left;
margin-bottom: 25px;


header #branding h1
margin: 0;


header .highlight,
header .current a
color: lavender


/*-------------------------------*/



</style>
</head>

<body>
<header>
<div class="container">
<div id="branding">
<h1>keith<span class="highlight"> consulting</span></h1>
</div>
<nav>
<ul>
<li class="current"><a href="#">home</a></li>
<li><a href="#">about</a></li>
<li><a href="#">services</a></li>
<li><a href="#">project</a></li>
<li><a href="#">clients</a></li>
<li><a href="#">contact</a></li>

</ul>
</nav>
</div>

</header>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
</body></html>












share|improve this question



















  • 1





    Why do you think it's a multicolored background rather than a series of elements all with different backgrounds?

    – Paulie_D
    Mar 21 at 17:11











  • I was just commenting on the appearance, I'm pretty sure its just a stack of colored divs on top of each other. I just don't know how it was done

    – Keith Segovia
    Mar 21 at 17:14













-2












-2








-2








I'm working on a mock website and have run into an issue. Here is the wix web page I am referencing. I want to scroll to the bottom of my web page and make multicolored div boxes that I can place my text over. Simply put, I can't figure it out. When I try making a div, it covers my background image. How was this done? Thanks in advance for your help.






<!doctype html>
<html lang="en">

<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">

<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">

<title>Keith Consulting</title>

<style>
body
background-image: url("https://66.media.tumblr.com/d0914fab2603665235669293d3b61c37/tumblr_os8sx9UAHb1slhhf0o1_1280.jpg");
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
background-position: bottom;
font: 15px/1.5, helvetica, sans-serif;


p,
h1,
h3
text-transform: capitalize;


.container
width: 80%;
margin: auto;
overflow: hidden;


/*--------------header----------------*/


header

background-color: cornflowerblue;
color: white;
padding-top: 30px;
min-height: 50px;
text-transform: capitalize;



header ul
padding: 0;
margin: 0;


header li
display: inline;
padding: 0 20px 0 20px;


header li a
color: blue;


header nav
float: right;
margin-top: 15px;


header #branding
float: left;
margin-bottom: 25px;


header #branding h1
margin: 0;


header .highlight,
header .current a
color: lavender


/*-------------------------------*/



</style>
</head>

<body>
<header>
<div class="container">
<div id="branding">
<h1>keith<span class="highlight"> consulting</span></h1>
</div>
<nav>
<ul>
<li class="current"><a href="#">home</a></li>
<li><a href="#">about</a></li>
<li><a href="#">services</a></li>
<li><a href="#">project</a></li>
<li><a href="#">clients</a></li>
<li><a href="#">contact</a></li>

</ul>
</nav>
</div>

</header>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
</body></html>












share|improve this question
















I'm working on a mock website and have run into an issue. Here is the wix web page I am referencing. I want to scroll to the bottom of my web page and make multicolored div boxes that I can place my text over. Simply put, I can't figure it out. When I try making a div, it covers my background image. How was this done? Thanks in advance for your help.






<!doctype html>
<html lang="en">

<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">

<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">

<title>Keith Consulting</title>

<style>
body
background-image: url("https://66.media.tumblr.com/d0914fab2603665235669293d3b61c37/tumblr_os8sx9UAHb1slhhf0o1_1280.jpg");
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
background-position: bottom;
font: 15px/1.5, helvetica, sans-serif;


p,
h1,
h3
text-transform: capitalize;


.container
width: 80%;
margin: auto;
overflow: hidden;


/*--------------header----------------*/


header

background-color: cornflowerblue;
color: white;
padding-top: 30px;
min-height: 50px;
text-transform: capitalize;



header ul
padding: 0;
margin: 0;


header li
display: inline;
padding: 0 20px 0 20px;


header li a
color: blue;


header nav
float: right;
margin-top: 15px;


header #branding
float: left;
margin-bottom: 25px;


header #branding h1
margin: 0;


header .highlight,
header .current a
color: lavender


/*-------------------------------*/



</style>
</head>

<body>
<header>
<div class="container">
<div id="branding">
<h1>keith<span class="highlight"> consulting</span></h1>
</div>
<nav>
<ul>
<li class="current"><a href="#">home</a></li>
<li><a href="#">about</a></li>
<li><a href="#">services</a></li>
<li><a href="#">project</a></li>
<li><a href="#">clients</a></li>
<li><a href="#">contact</a></li>

</ul>
</nav>
</div>

</header>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
</body></html>








<!doctype html>
<html lang="en">

<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">

<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">

<title>Keith Consulting</title>

<style>
body
background-image: url("https://66.media.tumblr.com/d0914fab2603665235669293d3b61c37/tumblr_os8sx9UAHb1slhhf0o1_1280.jpg");
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
background-position: bottom;
font: 15px/1.5, helvetica, sans-serif;


p,
h1,
h3
text-transform: capitalize;


.container
width: 80%;
margin: auto;
overflow: hidden;


/*--------------header----------------*/


header

background-color: cornflowerblue;
color: white;
padding-top: 30px;
min-height: 50px;
text-transform: capitalize;



header ul
padding: 0;
margin: 0;


header li
display: inline;
padding: 0 20px 0 20px;


header li a
color: blue;


header nav
float: right;
margin-top: 15px;


header #branding
float: left;
margin-bottom: 25px;


header #branding h1
margin: 0;


header .highlight,
header .current a
color: lavender


/*-------------------------------*/



</style>
</head>

<body>
<header>
<div class="container">
<div id="branding">
<h1>keith<span class="highlight"> consulting</span></h1>
</div>
<nav>
<ul>
<li class="current"><a href="#">home</a></li>
<li><a href="#">about</a></li>
<li><a href="#">services</a></li>
<li><a href="#">project</a></li>
<li><a href="#">clients</a></li>
<li><a href="#">contact</a></li>

</ul>
</nav>
</div>

</header>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
</body></html>





<!doctype html>
<html lang="en">

<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">

<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">

<title>Keith Consulting</title>

<style>
body
background-image: url("https://66.media.tumblr.com/d0914fab2603665235669293d3b61c37/tumblr_os8sx9UAHb1slhhf0o1_1280.jpg");
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
background-position: bottom;
font: 15px/1.5, helvetica, sans-serif;


p,
h1,
h3
text-transform: capitalize;


.container
width: 80%;
margin: auto;
overflow: hidden;


/*--------------header----------------*/


header

background-color: cornflowerblue;
color: white;
padding-top: 30px;
min-height: 50px;
text-transform: capitalize;



header ul
padding: 0;
margin: 0;


header li
display: inline;
padding: 0 20px 0 20px;


header li a
color: blue;


header nav
float: right;
margin-top: 15px;


header #branding
float: left;
margin-bottom: 25px;


header #branding h1
margin: 0;


header .highlight,
header .current a
color: lavender


/*-------------------------------*/



</style>
</head>

<body>
<header>
<div class="container">
<div id="branding">
<h1>keith<span class="highlight"> consulting</span></h1>
</div>
<nav>
<ul>
<li class="current"><a href="#">home</a></li>
<li><a href="#">about</a></li>
<li><a href="#">services</a></li>
<li><a href="#">project</a></li>
<li><a href="#">clients</a></li>
<li><a href="#">contact</a></li>

</ul>
</nav>
</div>

</header>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
</body></html>






html css bootstrap-4






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 21 at 17:10









Paulie_D

75.6k96790




75.6k96790










asked Mar 21 at 17:03









Keith SegoviaKeith Segovia

176




176







  • 1





    Why do you think it's a multicolored background rather than a series of elements all with different backgrounds?

    – Paulie_D
    Mar 21 at 17:11











  • I was just commenting on the appearance, I'm pretty sure its just a stack of colored divs on top of each other. I just don't know how it was done

    – Keith Segovia
    Mar 21 at 17:14












  • 1





    Why do you think it's a multicolored background rather than a series of elements all with different backgrounds?

    – Paulie_D
    Mar 21 at 17:11











  • I was just commenting on the appearance, I'm pretty sure its just a stack of colored divs on top of each other. I just don't know how it was done

    – Keith Segovia
    Mar 21 at 17:14







1




1





Why do you think it's a multicolored background rather than a series of elements all with different backgrounds?

– Paulie_D
Mar 21 at 17:11





Why do you think it's a multicolored background rather than a series of elements all with different backgrounds?

– Paulie_D
Mar 21 at 17:11













I was just commenting on the appearance, I'm pretty sure its just a stack of colored divs on top of each other. I just don't know how it was done

– Keith Segovia
Mar 21 at 17:14





I was just commenting on the appearance, I'm pretty sure its just a stack of colored divs on top of each other. I just don't know how it was done

– Keith Segovia
Mar 21 at 17:14












1 Answer
1






active

oldest

votes


















0














Maybe this could help you? https://www.solodev.com/blog/web-design/how-to-create-a-parallax-hero-image.stml



If you want make elements semi-transparent (if that is what you mean by "multicolored") then you can use rgba color.






share|improve this answer























  • Thanks for that link, I'm definitely going to bookmark that and use if for my next project. Sorry for the confusion, my problem is already solved but I meant to ask how to add blocks of color in different sections in the background.

    – Keith Segovia
    Mar 22 at 13:36











Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55285674%2fwhat-is-the-best-way-of-making-a-multicolored-background-without-adding-in-an-im%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









0














Maybe this could help you? https://www.solodev.com/blog/web-design/how-to-create-a-parallax-hero-image.stml



If you want make elements semi-transparent (if that is what you mean by "multicolored") then you can use rgba color.






share|improve this answer























  • Thanks for that link, I'm definitely going to bookmark that and use if for my next project. Sorry for the confusion, my problem is already solved but I meant to ask how to add blocks of color in different sections in the background.

    – Keith Segovia
    Mar 22 at 13:36















0














Maybe this could help you? https://www.solodev.com/blog/web-design/how-to-create-a-parallax-hero-image.stml



If you want make elements semi-transparent (if that is what you mean by "multicolored") then you can use rgba color.






share|improve this answer























  • Thanks for that link, I'm definitely going to bookmark that and use if for my next project. Sorry for the confusion, my problem is already solved but I meant to ask how to add blocks of color in different sections in the background.

    – Keith Segovia
    Mar 22 at 13:36













0












0








0







Maybe this could help you? https://www.solodev.com/blog/web-design/how-to-create-a-parallax-hero-image.stml



If you want make elements semi-transparent (if that is what you mean by "multicolored") then you can use rgba color.






share|improve this answer













Maybe this could help you? https://www.solodev.com/blog/web-design/how-to-create-a-parallax-hero-image.stml



If you want make elements semi-transparent (if that is what you mean by "multicolored") then you can use rgba color.







share|improve this answer












share|improve this answer



share|improve this answer










answered Mar 22 at 11:25









Martin KrejčíMartin Krejčí

163




163












  • Thanks for that link, I'm definitely going to bookmark that and use if for my next project. Sorry for the confusion, my problem is already solved but I meant to ask how to add blocks of color in different sections in the background.

    – Keith Segovia
    Mar 22 at 13:36

















  • Thanks for that link, I'm definitely going to bookmark that and use if for my next project. Sorry for the confusion, my problem is already solved but I meant to ask how to add blocks of color in different sections in the background.

    – Keith Segovia
    Mar 22 at 13:36
















Thanks for that link, I'm definitely going to bookmark that and use if for my next project. Sorry for the confusion, my problem is already solved but I meant to ask how to add blocks of color in different sections in the background.

– Keith Segovia
Mar 22 at 13:36





Thanks for that link, I'm definitely going to bookmark that and use if for my next project. Sorry for the confusion, my problem is already solved but I meant to ask how to add blocks of color in different sections in the background.

– Keith Segovia
Mar 22 at 13:36



















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55285674%2fwhat-is-the-best-way-of-making-a-multicolored-background-without-adding-in-an-im%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

은진 송씨 목차 역사 본관 분파 인물 조선 왕실과의 인척 관계 집성촌 항렬자 인구 같이 보기 각주 둘러보기 메뉴은진 송씨세종실록 149권, 지리지 충청도 공주목 은진현