1

Anyone have a customisation or other solution to reduce the width of the navigation bar on an iPad? My screen has loads of room for bug listings and bug detail, but currently the navigation bar width means that 'content' is shrunk to a tiny font and I have to pinch-zoom every page to make it readable...

Seems a shame to have to resort to the mobile version when I have all these pixels to play with :-/

Fog Creek Case FC2070641

flag

2 Answers

2

I have been poking through the DOM and trying to force any element I can find that might be making it wide to be narrower without success. I have opened a case to have engineering take a look and will update here shortly.

What I've tried:

#tbFull { width: 800px; min-width: 800px; }
#mainArea { width: 800px; min-width: 800px; }
body { width: 800px; min-width: 800px; }
#pgListContainer { width: 800px; min-width: 800px; }
#bugGrid { width: 800px; min-width: 800px; }
#bugListContainer { width: 800px; min-width: 800px; }
#versionFooter { width: 800px; min-width: 800px; }
#tableContainer { width: 800px; min-width: 800px; }

table#bugGrid tbody { width: 800px; min-width: 800px; }
table#bugGrid tr { width: 800px; min-width: 800px; }
link|flag
0

I thought we created this customization for that very reason:

name:          Narrow menu
description:   Allow the menu to be very narrow
author:        Michel de Ruiter
version:       1.0.0.0

css:
#tbFull { min-width: 1em; }

But I was wrong: it doesn't help on iPads.

See also this customization.

link|flag
Thanks Michel - this certainly seems to work for window resizing in desktop browsers, however it does not seem to change the default width for the main menu when loading FogBugz on an iPad. Do you know if there is a 'preferred' width setting or similar which could be interfering here? – Matt Jun 1 at 8:26
Ah, you're right, it doesn't work (doesn't wrap) on iPads... We tried a lot as well but have not found a solution. – Michel de Ruiter Jun 5 at 20:54

Your Answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.