Jump to content

Add Carrier Page Too Short For Carriers with Too Many Rates


Recommended Posts

My carrier has $0.25 increments for every additional 10g. This means that I have to enter a lot of weights and cents in the Add Carrier page. However, the Add Carrier page is too short and has no scrollbar so the number of rates I can enter is limited.

 

I've attached a pic to illustrate.

 

I tried to solve this problem by pushing my Chrome browser some distance outside my monitor and then pulling the side still in the frame of my monitor to expand it. However, that only worked for a few more rates.

 

Is there a better way to do this or do I have to create a new carrier for the rates I couldn't enter?

post-657795-0-23162700-1380828547_thumb.jpg

Link to comment
Share on other sites

I partially solved this issue by adding a horizontal scrollbar to the relevant container in admin.css:

#carrier_wizard.swMain .stepContainer {
  display:block;
  position: relative;
  margin: 0;
  padding:0;       
  overflow:hidden;
  clear:both;
  overflow-x:scroll; /*This line adds a horizontal scrollbar.*/
}

This created another problem. The Add New Range button remained on the far left while I scrolled to the far, far, far right. So, I fixed its position in admin.css:

#carrier_wizard .new_range, #carrier_wizard .validate_range {
float: left;
position: fixed;      /*This fixes the position of the Add New Range button*/
margin: 35px 0 0 10px;
width: 130px;}

This solution somehow pushed the button up to the middle of the page and left it there but at least now it follows my scrollbar.

 

I'm not a professional coder so these are terribly inept fixes. But, just in case other non-coders can't find proper help, these might do temporarily, I suppose.

 

Let me know if there's a better way to enter postage rates because entering 25-35 cents per 10 grams is really tedious.

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

×
×
  • Create New...