While implementing jquery-steps, I have encountered a minor issue with the responsiveness of the step tabs. The horizontal implementation is working well overall, but the tabs do not stack as intended in the example provided. As a result, when resizing the window, the step tabs become very small and unreadable.
The examples on the developer site are all on one page, making it difficult to determine the appropriate CSS to address this issue.
I would appreciate any assistance:
<!DOCTYPE html>
<!--[if lt IE 7]> <html lang="en" xmlns="http://www.w3.org/1999/xhtml" class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html lang="en" xmlns="http://www.w3.org/1999/xhtml" class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html lang="en" xmlns="http://www.w3.org/1999/xhtml" class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html lang="en" xmlns="http://www.w3.org/1999/xhtml" class="no-js"> <!--<![endif]-->
<!-- More HTML code here -->
In the `jquery.steps.css` file, I made an adjustment from changing the width of the steps list items to ensure consistency:
.wizard > .steps > ul > li
{
width: 20%;
}
This change was necessary to align the 5th step correctly within the wizard navigation.
Your insights and suggestions are greatly appreciated.
JP