Skip to main content

Modifying Website Design for Other Devices

Comments

8 comments

  • jonh
    There is an item in there that can't get smaller than currently set. Use the inspector and highlight each item until you find what pushing it out. You can also start with a responsive framework instead of doing this from scratch - Top 10 Front-End Frameworks of 2018 - KeyCDN
    0
  • cPanelLauren
    Great advice @jonh - let us know if that information helps @buckibooster
    0
  • buckibooster
    There is an item in there that can't get smaller than currently set. Use the inspector and highlight each item until you find what pushing it out. You can also start with a responsive framework instead of doing this from scratch -
    0
  • Infopro
    You might do better to find a forum related to this sort of thing for assistance with this. This thread, your website coding issues, has no relationship to cPanel. There are lots of forums and tutorials and videos to be had via google:
    0
  • buckibooster
    You might do better to find a forum related to this sort of thing for assistance with this. This thread, your website coding issues, has no relationship to cPanel. There are lots of forums and tutorials and videos to be had via google:
    0
  • APatchworkBoy
    When you resize down, margin-left: 10% + left: 10% + main table width (80%) + margin-right: 10% = 110% (for starters). I'd echo the above. You're using tables to layout your page, whereas there is no semantically tabular content on your page. Where you've got the header and footers split with colspans applied, these will not collapse down from inline-cells to vertical blocks, and the images contained aren't resizing down with % widths (& height to auto), so the table will never collapse narrower than the size of the image in those rows plus the size of the adjacent colspan'd column. Even with your header and footer rows removed, the smallest the table will collapse as it stands is 420px, due to the width of the content on the Chorus Members tab, whose sub-table cannot collapse down from inline-rows into vertical blocks. Your tab row limits the table from collapsing below 620px unless removed. You should be moving towards using a CSS grid structure - see
    0
  • Infopro
    You can see which one you fall into.

    Indeed. Still, if I wanted to know how to fix web design issues with my website, I'd be visiting a forum on that topic. Happy Holidays to you! :)
    0
  • buckibooster
    When you resize down, margin-left: 10% + left: 10% + main table width (80%) + margin-right: 10% = 110% (for starters). I'd echo the above. You're using tables to layout your page, whereas there is no semantically tabular content on your page. Where you've got the header and footers split with colspans applied, these will not collapse down from inline-cells to vertical blocks, and the images contained aren't resizing down with % widths (& height to auto), so the table will never collapse narrower than the size of the image in those rows plus the size of the adjacent colspan'd column. Even with your header and footer rows removed, the smallest the table will collapse as it stands is 420px, due to the width of the content on the Chorus Members tab, whose sub-table cannot collapse down from inline-rows into vertical blocks. Your tab row limits the table from collapsing below 620px unless removed. You should be moving towards using a CSS grid structure - see
    0

Please sign in to leave a comment.