How to change footer background color in nopCommerce

Many store owners like to use nopCommerce out of the box as it comes with a great user-friendly theme which has been designed very nicely and make the store site look very professional. But, at the same time, there are many store owners who do not prefer to use the default theme. Why? The reason is quite simple - If every store owner or developer will use same default theme, all the store sites based on nopCommerce will look quite similar.

In order to make your store site stand out as compared to other websites, you can make some changes that will customize the look and feel of your online store. 

Today, we will go over the process of changing footer background color in nopCommerce.

Go to: Nop.Web\Themes\DefaultClean\Content\css\styles.css

nopcommerce footer background


Open your style sheet "styles.css" and locate the following:

.footer {
    background-color: #eee;
    text-align: center;
}


As we can see in the css code, the background-color is mentioned as "#eee". Now, we can simply play around with different colors and change the footer background color.

Let's change it to "aqua":

/*********** FOOTER ***********/
 
.footer {
    background-color: aqua;
    text-align: center;
}


Here is the result:
nopcommerce footer background



Let's change it to "darkorange":

/*********** FOOTER ***********/
 
.footer {
    background-color: darkorange;
    text-align: center;
}


Here is the result:

nopcommerce footer background

A copy of this article is also available on Arvixe Blog.

About Author

Written By Lavish Kumar

Based out of New York, USA, Lavish Kumar is a full stack web developer by profession and founder of Striving Programmers, a trusted community for developers that offers a wealth of articles and forums to assist individuals with improving their software development skills.

Leave your comment