Adjustment to dropdown on profile page
Hi guys
I came across a wee styling issue tonight on the user profile page. Here is the fix...
On lines
896 and
898 respectively in your
style.css file
change:
.regular-dropdown { border: 1px solid #bbbbbb; margin-bottom: 10px; padding-left: 8px; color: #505050; min-width: 244px; }
.form-table .regular-dropdown, .order-summary select { border: 1px solid #bbbbbb; padding: 7px; width: 250px; }
disp1.jpg
to:
.regular-dropdown { border: 1px solid #bbbbbb; margin-bottom: 10px; padding-left: 8px; color: #505050;
min-width: 242px; }
.form-table .regular-dropdown, .order-summary select { border: 1px solid #bbbbbb;
padding: 8px 0 0 10px !important; width: 250px !important; }
disp2.jpg
Typical, when you fix one thing something else breaks. Anyway, I hope this doesn't break anything else
Sarah