This is my Screenshot, with "relative sizes":
http://home.arcor.de/immun/Peggy/olympus_font_size.jpg" target="_blank
Mozilla with Default Text Configuration
When I use my mothers notebook (Internet Explorer 6.x, default settings) it`s the same!
Olympus theme for 2x
- SHS`
- Registered User
- Posts: 1628
- Joined: Wed Jul 04, 2001 9:13 am
- Location: The Boonies, Hong Kong
- Contact:
Re: Olympus theme for 2x
The C in CSS stands for "Cascading"... so when such "oddities" occur, it's actually the author of the stylesheet not being aware how relative font-sizes filter down through the cascade.Peggy wrote: This is my Screenshot, with "relative sizes":
http://home.arcor.de/immun/Peggy/olympus_font_size.jpg" target="_blank
Mozilla with Default Text Configuration
When I use my mothers notebook (Internet Explorer 6.x, default settings) it`s the same!
Jonathan “SHS`” Stanley • 史德信
phpBB™ 3.1.x, Bug/Security trackers
phpBB™ Bertie Bear 3.0 — prosilver Edition! • Asking Questions The Smart Way
phpBB™ 3.1.x, Bug/Security trackers
phpBB™ Bertie Bear 3.0 — prosilver Edition! • Asking Questions The Smart Way
Re: Olympus theme for 2x
I have updated this style for phpBB-2.0.20. I also removed some uneeded code from a phpbb mod that was installed.
So here it is:
So here it is:
- Attachments
-
- Olympus.zip
- The updated Olympus style for phpBB-2.0.20
- (219.99 KiB) Downloaded 395 times
Re: Olympus theme for 2x
The design of templates has become so much easier with the release of phpBB3 (Beta). The ability to subdivide complex files into different elements not only assist building but also makes porting easier…
It is entirely possible to divide each html file into basic elements and include different elements to create excellent looking pages…
Here is a one possible representation of a portal_body (similar to index_body)
This code is an example of a standard index(portal) used in the Kiss Portal
Resulting in the images attached…
Mike
It is entirely possible to divide each html file into basic elements and include different elements to create excellent looking pages…
Here is a one possible representation of a portal_body (similar to index_body)
Code: Select all
<!-- IDTAG index_body starts -->
<!-- INCLUDE overall_header.html -->
<div align="center">
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<!-- INCLUDE blocks_all.html -->
<!-- INCLUDE block_index_top.html -->
<!-- INCLUDE block_announcements.html -->
<!-- INCLUDE main_forums.html -->
<!-- INCLUDE block_time_zone.html -->
<!-- INCLUDE block_php_support_sites.html -->
<!-- IF S_DISPLAY_ONLINE_LIST -->
<!-- INCLUDE block_whos_on_line.html -->
<!-- ENDIF -->
<!-- IF S_DISPLAY_BIRTHDAY_LIST -->
<!-- INCLUDE block_birthday.html -->
<!-- ENDIF -->
<!-- INCLUDE statistics.html -->
<!-- IF not S_USER_LOGGED_IN -->
<!-- INCLUDE block_log_in_out.html -->
<!-- ENDIF -->
<!-- INCLUDE block_images_explain.html -->
</tr>
</table>
<br />
<!-- INCLUDE overall_footer.html -->
<!-- IDTAG index_body ends -->
Resulting in the images attached…
Mike
- Attachments
-
- phpbbire1.jpg (51.04 KiB) Viewed 6409 times
-
- phpbbire2.jpg (114.22 KiB) Viewed 1100 times
Mods: Forum Icons Enhancement, Kiss Portal Engine
Links: Kiss Portal Engine (dev site) Stargate Portal (archive site) ...
Styles: Technika
Links: Kiss Portal Engine (dev site) Stargate Portal (archive site) ...
Styles: Technika
-
- Registered User
- Posts: 3
- Joined: Thu Jan 29, 2004 8:29 pm
- Contact:
Re: Olympus theme for 2x
Code: Select all
--- olympus-old/olympus.css 2006-05-24 03:02:00.000000000 -0500
+++ olympus/olympus.css 2006-06-18 23:30:28.000000000 -0500
@@ -140,5 +140,5 @@ a.nav:hover { text-decoration: underlin
/* titles for the topics: could specify viewed link colour too */
-p.topictitle { margin: 1px 0px; display: inline; font-size: 65%; font-weight: bold; }
+.topictitle { margin: 1px 0px; display: inline; font-size: 80%; font-weight: bold; }
/*.topictitle { font-weight: bold; font-size: 11px; color : #000000; }
...
Re: Olympus theme for 2x
Thanks for that, I'll update the zip later