Jump to content

Change color 5 steps box in the cart


Recommended Posts

hello

 

you theme is probably non-default one or default with some customization.

by default you can change colors on images: https://localhost/1550b/themes/default/img/step_current.gif

and: https://localhost/1550b/themes/default/img/step_current_span.gif

Hello Vekia,

 

Correct, i'm using a theme that I bought here on Prestashop.

well so i'm at themes/mytheme/img/ and I can see the files you mentioned, with what program should I open them? now it opens in internet explorer but instead of that its red, they are yellow. 

Link to comment
Share on other sites

can you share url to your website?

i will check it, you probably use some modifications (or different theme - i mean your theme is in different directory)

Yes, you can check my site here: www.bazendeal.nl

thanks for your help

Link to comment
Share on other sites

text color is defined in css styles, you can change it there

global.css located in your theme directory, by default near line 443

ul.step li a, ul.step li.step_current span, ul.step li.step_current_end span {
display: inline-block;
padding: 8px 10px 12px;
color: #000;
background: url(../img/step_current_span.gif) no-repeat center bottom transparent;
}

change color: #000; param to any other you want

Link to comment
Share on other sites

text color is defined in css styles, you can change it there

global.css located in your theme directory, by default near line 443

ul.step li a, ul.step li.step_current span, ul.step li.step_current_end span {
display: inline-block;
padding: 8px 10px 12px;
color: #000;
background: url(../img/step_current_span.gif) no-repeat center bottom transparent;
}

change color: #000; param to any other you want

 

I couldn't change the red color but I changed the text color to white, so it looks much better now instead of black text on red box.

Thanks alot for your help.

Link to comment
Share on other sites

Yes I was wondering too, it stays red.

I changed two colors to FFFFFF = white

Look here:

 

/* CART steps *********************************************************************** */
.ul#order_step { }
ul.step {
list-style-type:none;
margin-bottom:30px;
height:52px;
width:700px
}
ul.step li {
float:left;
height:52px;
width:140px;
text-align:center;
text-transform:uppercase;
background:url(../images/step_4.png) no-repeat center bottom transparent
}
ul.step li a, ul.step li.step_current span {
display:inline-block;
padding:8px 10px 12px;
color:#FFFFFF;
background:url(../images/step_2.png) no-repeat center bottom transparent
}
ul.step li.step_current {
font-weight:bold;
background:url(../images/step_1.png) no-repeat center bottom transparent
}
ul.step li.step_todo span {
display:inline-block;
padding:8px 10px 6px;
color:#FFFFFF;
text-shadow:0 1px 0 #fff;
background:#eee
}
ul.step li.step_done {
font-weight:bold;
background:url(../images/step_3.png) no-repeat center bottom transparent
}
ul.step li#step_end {background:url(../images/step_4.png) no-repeat center bottom transparent}
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...