Jump to content

Change Font Color on Checkout (5-Steps)


Maxima

Recommended Posts

I am using a dark Black color Background for my store

Now the problem is

 

During some steps at Checkout the font color is dark and as the background is already BLACK

The font is almost impossible to read

 

Please tell me how can i change the Font Color on Checkout.

Link to comment
Share on other sites

The best and easy way to do it is to change table background like this:

 

table {
margin-bottom: 30px;
background: #fff;
}
 
That code is in yourtheme/css/global.css around line 5777. But  that only will change first row background.
 
In the other hand, if you  want only to change all the background in that div (table) you must create a rule to class order-detail-content in global.css, better at the bottom so that you know where you have added it.
 
If you want to change font colour, as font colour default is been applied, you must create a css rule for text elements inside that class order-detail-content( a and its states, cart-ref, etc)
 
I suggest you to test all the changes using your browser's code inspector, so that you can test before applying any modifications (changes there are not permanent and are lost with a page recharge)
 
 
Hope this helps!
Edited by nutxlago (see edit history)
Link to comment
Share on other sites

Thanks nutxlago for your responce,

 

I think the arrows in my last images have complecated the prolem more, my apologies..

 

I just want to change font color

of Product description and instructions in these steps

 

just checkout these images

 

Can you please define how specifically can i identify these lines to change its font color in global.css

 

 

post-735798-0-88085700-1411671070_thumb.jpg

post-735798-0-05915900-1411671074_thumb.jpg

Link to comment
Share on other sites

That text is formed by a link, which is formatted by default for all your store.

 

You can change it in global.css around line 5797

 

.product-name a {

font-size: 17px;
line-height: 23px;
color: #3a3939;

But that changement is going to change the color for all the products name's links in the whole store.

 

 If you want to change only that link and sku text in the checkout process, you will need to add css rules to the order-detail-content class(or in td.cart_description )

 

Just go to global.css bottom and add:

 

.order-detail-content a {

color:#fff;

 

/*changing the sku style */

 

span.cart-ref {

color:#fff;

}

 

If nothing changes, perhaps another rule called afterwards is replacing the rule. If so, add !important to the rule like in this example:

 

.order-detail-content a {

color:#fff !important;

 
 
I have not made the test, but if you do not get the desired changement,let me know and I will paste here tested css code.
Link to comment
Share on other sites


Maxima you must edit yourtheme/css/global.css (in mine is around line 5772, so in yours - as you use bootstrap- should be near that line)


Change:


 


.table {

margin-bottom: 30px;

}

 

 

with:

 


.table {

margin-bottom: 30px;

background: #fff;

}


 


 


Then, recharge the page to see the changes. After you have checked,do not forget to enable css compression and cache again. 



  •  
  • Like 1
Link to comment
Share on other sites

Hello

 

I don't have exactly the same problem, but in payment step 5 page, i need to modify the price with VAT, see my topic in : http://www.prestashop.com/forums/topic/364233-correction-paiement-etape-5/?do=findComment&comment=1814399

 

do you know how can i do?

 

thanks.

 

Cycleelcyc, I suggest you to open a new thread with your problem as I am afraid it is not related to Maximas's. Making that, you will get help for your problem easily.

Link to comment
Share on other sites

×
×
  • Create New...