cancel
Showing results for 
Search instead for 
Did you mean: 

Fixing account dashboard column layout

SOLVED

Fixing account dashboard column layout

Hello, thank you always for your help. I have a question about  account dashboard layout.

I don't know why but its recent orders column layout is strange like the picture below("ship to" column is too big and because of it "view" button column is too small. Which file and how should I fix?

overview.PNG

2 ACCEPTED SOLUTIONS

Accepted Solutions

Re: Fixing account dashboard column layout

Hi Mayfil,

Check history.phtml file

Filepath:- app/design/frontend/Your_Package/Your_Theme/Template/sales/order/history.phtml

Replace below code

<col />

with 

<col  width="1"/>

ex:- 

<table class="data-table orders" id="my-orders-table">
<col width="1" />
<col width="1" />
<col width="1" />
<col width="1" />
<col width="1" />
<col width="1" />

View solution in original post

Re: Fixing account dashboard column layout

Hello Magikvishal,

 

Thank you for your answer.

My theme doesn't have history.phtml file and

the theme support advised me to check app/design/frontend/base/default/template/sales/order folder.

I found that the code was like below! That's why my layout was strange.

 

<table class="data-table orders" id="my-orders-table">
<col width="1" />
<col width="1" />
<col />
<col width="1" />
<col width="1" />
<col width="1" />

 

I changed the third col from "<col />" to  "<col width="1" />".

I also found the column code in recent.phtml was the same. I fixed it, too.

 

Thank you very much for your advice!

 

View solution in original post

2 REPLIES 2

Re: Fixing account dashboard column layout

Hi Mayfil,

Check history.phtml file

Filepath:- app/design/frontend/Your_Package/Your_Theme/Template/sales/order/history.phtml

Replace below code

<col />

with 

<col  width="1"/>

ex:- 

<table class="data-table orders" id="my-orders-table">
<col width="1" />
<col width="1" />
<col width="1" />
<col width="1" />
<col width="1" />
<col width="1" />

Re: Fixing account dashboard column layout

Hello Magikvishal,

 

Thank you for your answer.

My theme doesn't have history.phtml file and

the theme support advised me to check app/design/frontend/base/default/template/sales/order folder.

I found that the code was like below! That's why my layout was strange.

 

<table class="data-table orders" id="my-orders-table">
<col width="1" />
<col width="1" />
<col />
<col width="1" />
<col width="1" />
<col width="1" />

 

I changed the third col from "<col />" to  "<col width="1" />".

I also found the column code in recent.phtml was the same. I fixed it, too.

 

Thank you very much for your advice!