Guest Posted August 21, 2014 Share Posted August 21, 2014 Hi Somehow the "panel" where you can select how to sort shos OK in FF, Opera , Google shows the way I would expect, but in IE goes of the page to the right. Im not sure where the width of this panel is altered. Here's a couple of screenshots which show what Im trying to explain. (this one shows the yellow wrapper where the "panel" extends of the page in IE) Anyone any thoughts how I might correct this. Many thanks Grandpa Link to comment Share on other sites More sharing options...
Guest Posted August 21, 2014 Share Posted August 21, 2014 Hi Somehow the "panel" where you can select how to sort shos OK in FF, Opera , Google shows the way I would expect, but in IE goes of the page to the right. Im not sure where the width of this panel is altered. Here's a couple of screenshots which show what Im trying to explain. Screenshot - 21_08_2014 , 3_39_32 p.m..jpg Screenshot - 21_08_2014 , 3_41_01 p.m..jpg (this one shows the yellow wrapper where the "panel" extends of the page in IE) Anyone any thoughts how I might correct this. Many thanks Grandpa I have included the following in user.css, which seems to sort the problem out, but Im unsure that this is the correct way to do it. .form-control {width:92%;} Cheers Grandpa Link to comment Share on other sites More sharing options...
De Dokta Posted August 21, 2014 Share Posted August 21, 2014 Hi, You should not do this, because it may have implications for all areas that are tagged with form-control. Simply adding a line break fixed the issue for me. index.php: echo '<div>' . tep_draw_form('filter', FILENAME_DEFAULT, 'get') . '<p align="right">' . TEXT_SHOW . ' '; ==> echo '<div>' . tep_draw_form('filter', FILENAME_DEFAULT, 'get') . '<p align="right">' . TEXT_SHOW . '<br />'; J.J. Link to comment Share on other sites More sharing options...
Guest Posted August 21, 2014 Share Posted August 21, 2014 @@De Dokta Hi JJ Many thanks for that. Didn't think the way I did it would be correct, Cheers Grandpa Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.