Looking for help: Uniformizing the ScummVM webpages
Moderator: ScummVM Team
-
- Posts: 63
- Joined: Sat Feb 14, 2009 8:43 am
- Location: Australia
-
- Posts: 63
- Joined: Sat Feb 14, 2009 8:43 am
- Location: Australia
Sometimes the forum/wiki design breaks if there is too many characters expanding the table. These should fix the forum by limiting the maximum width of an image, make sure the logo in the top left only takes up the size of the image and make sure the width of a table stays inside. This should fix all the problems that occur in pages like http://forums.scummvm.org/viewtopic.php ... c&start=15
/forum/trunk/SVMDesign/overall_header.tpl
/forum/trunk/SVMDesign/SVMDesign.css
/forum/trunk/SVMDesign/overall_header.tpl
Code: Select all
29c29
< <td><img src="templates/SVMDesign/images/logo_phpVB2.gif" width="199" height="65" alt="ScummVM logo"></td>
---
> <td width="199"><img src="templates/SVMDesign/images/logo_phpVB2.gif" width="199" height="65" alt="ScummVM logo"></td>
70c70
< <td colspan="4">
---
> <td colspan="4" style="max-width: 750px">
Code: Select all
148a149,150
>
> img { max-width: 900px; } /* This will limit how wide an img tag can be so it doesn't spoil the theme. */
I actually see no problem on that page, it looks just fine for me in FireFox... Maybe you can describe problem you are seeing, post a screenshot, and tell us which browser it occurs in?billwashere wrote:Sometimes the forum/wiki design breaks if there is too many characters expanding the table. These should fix the forum by limiting the maximum width of an image, make sure the logo in the top left only takes up the size of the image and make sure the width of a table stays inside. This should fix all the problems that occur in pages like http://forums.scummvm.org/viewtopic.php ... c&start=15
-
- Posts: 63
- Joined: Sat Feb 14, 2009 8:43 am
- Location: Australia
Also, in the wiki, there's an odd footnote in all pages. E.g. in the front page, there's this:
Retrieved from "http://wiki.scummvm.org/index.php/Main_Page"
-
- Posts: 63
- Joined: Sat Feb 14, 2009 8:43 am
- Location: Australia
bill, very nice, a definite improvement over the current tabs (and might be interesting to have this in the doxygen skin, too. Once the design is finalized, I mean).
As it is, I am not quite happy with how the "Edit", "History" etc. tabs fuse completely together.
While I personally have no strong preference regarding split or non-split tabs, I *do* like to have some visual separation between tabs. That could be a gap, but it could also be an alteration in shading (say an embossing effect) or a thick border). Google Image search makes it easy to find many examples. E.g. this page might give some inspiration for tab designs: http://deluxe-tabs.com/templates/
I am totally open regarding the search bar. If you can make mockups / versions either way for comparison, that might help; otherwise, at least from my point of view, just pick one and focus on making it look good .
As it is, I am not quite happy with how the "Edit", "History" etc. tabs fuse completely together.
While I personally have no strong preference regarding split or non-split tabs, I *do* like to have some visual separation between tabs. That could be a gap, but it could also be an alteration in shading (say an embossing effect) or a thick border). Google Image search makes it easy to find many examples. E.g. this page might give some inspiration for tab designs: http://deluxe-tabs.com/templates/
I am totally open regarding the search bar. If you can make mockups / versions either way for comparison, that might help; otherwise, at least from my point of view, just pick one and focus on making it look good .
Personnaly I like the split tabs. I also agree with Fingolfin regarding the visual separation of the tabs. On that topic Eugene noted in another thread (see here) that ScummVM does not draw the tabs correctly now following a change in the Theme Engine. In that thread he also posted a picture of how it looked before that change and you can clearly see that the tabs have a clear visual separation compared to how they look now.
billwashere, any news on this? I really liked your mockup, and it would be very cool to finalize the Wiki theme and enable it for everybody by default. I have been using the current version as my default Wiki theme for some time now. The tabs are really the only thing I'd like to see improved ; everything else is minor, I think.
-
- Posts: 63
- Joined: Sat Feb 14, 2009 8:43 am
- Location: Australia
Which version of IE are you referring to? What kind of bug are you experiencing?billwashere wrote:sorry about the long wait, a bit busy over xmas and has finely settled down.
Is a print screen of the tabs
issue:
not working in ie
no border on the left side of the tab
Could you show the (CSS/HTML) code you used for this? People might be able to find the issue (e.g. personally, I have experience in fixing CSS bugs in web page designs I make, as IE can be a pain with CSS). Luckily, IE9 is supposed to have a better support of CSS layouts, so it should behave well...
-
- Posts: 63
- Joined: Sat Feb 14, 2009 8:43 am
- Location: Australia
New skin is here - http://scummvm.comlu.com/ScummModern-0.06.zip
this is a screenshot of ie6 in a vm
this is a screenshot of ie6 in a vm
I did a quick test, and with the following change in ie6.css, I fixed the issues I had in IE6:
I couldn't reproduce the float issue you're showing in the picture, but I used the HTML that's already on the server with your CSS... It seems like a float drop, so I suppose you're setting a large width of the tab container? Try setting it 1-2% smaller, IE has issues with width - it adds extra margins, thereby causing float drops (which is why a 1-2% smaller width prevents these).
Check here:
http://www.positioniseverything.net/exp ... argin.html
Perhaps it could also be one of these two IE bugs?
http://www.positioniseverything.net/exp ... ndent.html
http://www.positioniseverything.net/exp ... oxbug.html
As a side note, you're missing tab_b.png (defined in DIV.tabs)
Code: Select all
DIV.tabs A {
padding-bottom : 0px;
padding-top : 0px;
text-decoration : none !important;
font-size : x-small !important;
cursor : pointer;
}
Check here:
http://www.positioniseverything.net/exp ... argin.html
Perhaps it could also be one of these two IE bugs?
http://www.positioniseverything.net/exp ... ndent.html
http://www.positioniseverything.net/exp ... oxbug.html
As a side note, you're missing tab_b.png (defined in DIV.tabs)