Jump to content

[SOLVED] Pages not loading correctly, font size issues..


Recommended Posts

Hi,

 

I'm currently using PS v1.4.6.2, recently the following pages started loading with issues such as the font size being completely incorrect (larger then normal);

 

My Account-->Order History

My Account-->Merchandise Returns

My Account-->Credit Slips

My Account-->My Vouchers

Check-out Page

 

Please see the attached images which show the font size and in some cases such as the check-out page, the totals appear incomplete and the decimal values do not appear.

 

Could someone please point me in the right direction to resolve this issue?

 

 

Thanks!

post-899-0-08832000-1357648990_thumb.jpg

post-899-0-89274900-1357648996_thumb.jpg

post-899-0-79396900-1357649003_thumb.jpg

post-899-0-03608400-1357649018_thumb.jpg

post-899-0-73907700-1357649026_thumb.jpg

Edited by claudio (see edit history)
Link to comment
Share on other sites

A simple fix, as far as the cart is concerned, would be to simply add 'font-size: .9em' to the class '.std thead th' as follows

 

Original

.std thead th {
   color: #333333;
   font-weight: bold;
   height: 24px;
   text-align: left;
   white-space: nowrap;
}

 

Corrected

.std thead th {
   color: #333333;
   font-size: 0.9em;
   font-weight: bold;
   height: 24px;
   text-align: left;
   white-space: nowrap;
}

 

Of course, change the font size to what you like best.

 

Hope that helps!

 

Marty Shue

Link to comment
Share on other sites

Thanks Marty, I added the line but the change didn't reflect (force compile on, cache off and browser cache cleared). I also tried replacing the original global.css file from my theme which I kept since I purchased it almost 2 years ago and that didn't help either. If for example I load the default PS theme, then all is well so it's definitely something to do with the theme.. :-s

Link to comment
Share on other sites

Thanks Marty, I added the line but the change didn't reflect (force compile on, cache off and browser cache cleared).

 

Not sure what to tell you then. It worked just fine for me while on your site. You might try adding !important to the CSS I gave you just to make sure another rule is not overriding the font size.

 

Without further access to your site that is all I can think of.

 

Marty Shue

Link to comment
Share on other sites

×
×
  • Create New...