Website cosmetics issue
Hi,
Seeing how quick my last concern has been fixed, I would like to point out another minor quirk in the design:
Using a browser width that is less than 1002px, a slight gap appears at the right edge of the main page:
View attachment 77
That is because the div unibar_container has a width of 1002px while everything else in the page is clamped at 992px.
So a simple workaround for this is replacing:
.unibar_container {
width: 1002px; -> change that to 992px
margin: 0 auto;
}
--------------------------------------- OLD CONTENT ---------------------------------------------
Hi,
I know it mustn't be the right section for that but the web programmers should add min-width: 992px; attribute to the body of the main site homepage, because the content bar is clamped at 992px while the header isn't, so when you have a browser width inferior to 992px you get this:
View attachment 53
...which I think you can workaround by adding a min-width attribute to the body.
Hi,
Seeing how quick my last concern has been fixed, I would like to point out another minor quirk in the design:
Using a browser width that is less than 1002px, a slight gap appears at the right edge of the main page:
View attachment 77
That is because the div unibar_container has a width of 1002px while everything else in the page is clamped at 992px.
So a simple workaround for this is replacing:
.unibar_container {
width: 1002px; -> change that to 992px
margin: 0 auto;
}
--------------------------------------- OLD CONTENT ---------------------------------------------
Hi,
I know it mustn't be the right section for that but the web programmers should add min-width: 992px; attribute to the body of the main site homepage, because the content bar is clamped at 992px while the header isn't, so when you have a browser width inferior to 992px you get this:
View attachment 53
...which I think you can workaround by adding a min-width attribute to the body.
Attachments
-
202.1 KB Views: 11
-
112.2 KB Views: 11
Last edited:


