Neue Corporate Website / new Corporate Website

post released sites here made with phpwcms
aleggs
Posts: 34
Joined: Fri 28. May 2004, 12:30
Location: Bern, Switzerland
Contact:

Neue Corporate Website / new Corporate Website

Post by aleggs »

Hallo allerseits. Hier ist meine neue Firmenwebsite.

http://www.dmd2.net

Features:
- Graphical Menu, kombiniert mit dem table-basierten textual Menu
- Streaming-Features
- Anstrengendes Template Management
- Automatische Sprachauswahl
- 2 Sprachen

Bin gespannt auf Euer Feedback! :-) ein weiteres Mal hat sich PHPWCMS sehr flexibel gezeigt. Vom ursprünglichen PSD-basierten Design konnte ich über 90% umsetzen! Chapeau.

--

Hello everybody, here's my new corporate Website

http://www.dmd2.net

Features:
- Graphical Menu, combined with tablebased textual Menu
- Streaming-Features
- Challenging Template Management
- automatic Languageselection
- Two-Languages supported (not yet fully implemented)

I'm looking forward for your feedback :-) - another time PCPWCMS has met the high expectations to its flexibility. Almost 90% of the basic design (based on Photoshop Files) could be integrated.
--
Best regards, freundliche Grüsse

Alexander Dal Farra

http://www.dalfarra.ch
http://www.lidijaroos.com
Jari
Posts: 107
Joined: Thu 15. Apr 2004, 11:31
Location: Sweden
Contact:

Post by Jari »

I hate to see and say :lol: :lol: why don't anyone try to make the width so even surfers with 800 x 600 resolution can surf your website without side scrolling ?

It's so easy to change your screen to check with that resolution how it looks like :roll:
spirelli
Posts: 996
Joined: Tue 27. Jul 2004, 13:37
Location: London

Post by spirelli »

Jari, you are right!
Ben
Posts: 558
Joined: Wed 14. Jan 2004, 08:05
Location: Atlanta
Contact:

Navigation question

Post by Ben »

aleggs,

How did you build the navigation? It looks like it is probably hard-coded and that the top level nav uses images for the buttons. Are the sub-menus dynamically generated or hard-coded? It sure would be nice if {NAV_TABLE_COLUMN} would allow for a different look on main and sub navigation.
rushclub
Posts: 915
Joined: Tue 17. Feb 2004, 18:52

schön

Post by rushclub »

hello everybody,

i would like to say that i like the site very much. :D

rush
ssyfrig
Posts: 364
Joined: Tue 2. Mar 2004, 17:01
Location: Zürich / Switzerland
Contact:

Post by ssyfrig »

I like this site ! congratulation

, Sven
FN-Media
Posts: 67
Joined: Thu 13. Jan 2005, 13:23

Post by FN-Media »

Sehr sehr geil. :-)

Wenn ich eine kleine Kritik anbringen darf, folgend markiertes macht das Bild unruhig. Vllt. eine Nummer größer.

Image
bye Rene
aleggs
Posts: 34
Joined: Fri 28. May 2004, 12:30
Location: Bern, Switzerland
Contact:

Post by aleggs »

Jari wrote:I hate to see and say :lol: :lol: why don't anyone try to make the width so even surfers with 800 x 600 resolution can surf your website without side scrolling ?
Hi Jari. Yeah you're right. Did you discover that my screen is 819pixels in width btw? ;-)

As my site is targetted to businesses though, I am focussing on higher resolutions as I know that less than 10% of all site visitors (on a general, enduser focussed site) surf with 800x600 rez.

Thanks, Alex
--
Best regards, freundliche Grüsse

Alexander Dal Farra

http://www.dalfarra.ch
http://www.lidijaroos.com
aleggs
Posts: 34
Joined: Fri 28. May 2004, 12:30
Location: Bern, Switzerland
Contact:

Re: Navigation question

Post by aleggs »

Ben wrote:... and that the top level nav uses images for the buttons.
you've got it

Ben wrote:Are the sub-menus dynamically generated or hard-coded? It sure would be nice if {NAV_TABLE_COLUMN} would allow for a different look on main and sub navigation.
Well in fact it's a combination of {NAV_TABLE_COLUMN} and hardcoding PHP. I use a different template for every top-level-nav on which I include the PHP. File. Within that file, I have the {NAV_TABLE_COLUMN} with the right references.

Have a look at the "Kunden" section of the site:

Code: Select all

<table border="1" style="border-collapse: collapse" width="162" id="table1" cellpadding="0" height="98" bordercolor="#D4D4D4">
	<tr>
		<td height="15">
		<a href="index.php?news" onMouseOver="if (document.images) document.news.src='img/navigation/deu/news_active.gif';" onMouseOut= "if (document.images) document.news.src= 'img/navigation/deu/news.gif';"><img src="img/navigation/deu/news.gif" name=news border=0 width=160 height=15></a></td>	
       </tr>	
	<tr>
		<td height="15">
		<a href="index.php?produkte" onMouseOver="if (document.images) document.produkte.src='img/navigation/deu/produkte_active.gif';" onMouseOut= "if (document.images) document.produkte.src= 'img/navigation/deu/produkte.gif';"><img src="img/navigation/deu/produkte.gif" name=produkte border=0 width=160 height=15></a></td>	
        </tr>	
	<tr>
		<td height="15">
		<a href="index.php?kunden"><img src="img/navigation/deu/kunden_open.gif" name=kunden border=0 width=160 height=15></a>
		<img src='img/navigation/deu/open_shadow.gif'>{NAV_TABLE_COLUMN:6}</td>
       </tr>	
	<tr>	
		<td height="15">
		<a href="index.php?firma" onMouseOver="if (document.images) document.firma.src='img/navigation/deu/firma_active.gif';" onMouseOut= "if (document.images) document.firma.src= 'img/navigation/deu/firma.gif';"><img src="img/navigation/deu/firma.gif" name=firma border=0 width=160 height=15></a></td>	
        </tr>
	<tr>
		<td height="15">
		<a href="index.php?kontakt" onMouseOver="if (document.images) document.kontakt.src='img/navigation/deu/kontakt_active.gif';" onMouseOut= "if (document.images) document.kontakt.src= 'img/navigation/deu/kontakt.gif';"><img src="img/navigation/deu/kontakt.gif" name=kontakt border=0 width=160 height=15></a></td>	
        </tr>	
</table>
It's been quite a tough job to set this up, but once done it's working very well.
--
Best regards, freundliche Grüsse

Alexander Dal Farra

http://www.dalfarra.ch
http://www.lidijaroos.com
aleggs
Posts: 34
Joined: Fri 28. May 2004, 12:30
Location: Bern, Switzerland
Contact:

Post by aleggs »

FN-Media wrote:Sehr sehr geil. :-)
Thanks! :D
Wenn ich eine kleine Kritik anbringen darf, folgend markiertes macht das Bild unruhig. Vllt. eine Nummer größer.
meinst du, die Schriften sollten eine Nummer grösser sein?

Danke
--
Best regards, freundliche Grüsse

Alexander Dal Farra

http://www.dalfarra.ch
http://www.lidijaroos.com
bachi
Posts: 308
Joined: Fri 6. Aug 2004, 17:52
Location: Western Styria, AUSTRIA
Contact:

Post by bachi »

ich finde deine Site wunderschön... :D

Endlich mal wieder eine Site mit Stil in der "Hall of Fame" ,gg
Sie ist wirklich super sauber ausgearbeitet, allerdings könnten die GT- Header wirklich eine spur größer sein.
Marc-Andre
Posts: 10
Joined: Tue 25. Jan 2005, 13:38

Navigation

Post by Marc-Andre »

Kannst du uns diese Navigation als TUTORIAL geben! *BITTE*

Ich versuche genau etwas in diesem Stil zu verwirklichen, bin aber (glaube ich) an die Grenzen gelangt!

Könnte unbedingt Hilfe gebrauchen, und diese Seite als Tut. bzw. Navigation wäre echt ein GESCHENK für alle phpwcms´ler :!: :!: :!:

Gruß Marc-Andre
Jojo0815
Posts: 8
Joined: Thu 9. Jun 2005, 12:58

Post by Jojo0815 »

Infos zur Erstellung der Navigation fänd ich ja auch prima ;-)
Sieht klasse aus!
cyrano
Posts: 1598
Joined: Sat 31. Jan 2004, 18:33
Location: Stuttgart
Contact:

Post by cyrano »

nice and well done work.

except one thing: usinf firefox and click in german language site to english content goes to english but not navigation.

just in my browser?
Gruß/ regards cyrano
--------------------------------------------------------
templates -> http://www.128.weitzelmedia.de
planepix -> http://www.planepix.de
XING -> https://www.xing.com/profile/Thomas_Weitzel3
User avatar
Kosse
Posts: 1066
Joined: Thu 9. Sep 2004, 12:08
Location: Brussels, Belgium
Contact:

Post by Kosse »

@cyrano: only 1 page in english, look at bottom were he says that english is not available yet... (I'm also using FF ;)

@allegs:
I like your design, clean, easy to navigate, good job! Looks pro.

Cheers
Post Reply