Coffeewebsite responsive

post released sites here made with phpwcms
Post Reply
vectrus
Posts: 7
Joined: Sun 19. Nov 2006, 14:46
Location: Den Haag Netherlands
Contact:

Coffeewebsite responsive

Post by vectrus »

http://www.dekleinekoffiebranderij.nl

In dutch and english. Still have some problems with language switching and proper language source code for ranking. But the template is fully responsive.

Julius
nameless1
Posts: 878
Joined: Sun 27. Apr 2008, 23:22

Re: Coffeewebsite responsive

Post by nameless1 »

nice.

why do you remove copyright information in head?
User avatar
juergen
Moderator
Posts: 4556
Joined: Mon 10. Jan 2005, 18:10
Location: Weinheim
Contact:

Re: Coffeewebsite responsive

Post by juergen »

just played around with the shop. ........ a big wow. A big plus for the js driven part of the shop and the processing state bar with text.

Not so much persons remaining as co author ;)
User avatar
santscho
Posts: 1442
Joined: Mon 2. Apr 2007, 08:56
Location: Schweiz

Re: Coffeewebsite responsive

Post by santscho »

The logo on top is not responsive. This would be very easy to solve.

Code: Select all

<img class="headerlogo" alt="De Kleine Koffiebranderij" title="De Kleine Koffiebranderij"  src="/picture/kleine-koffiebranderij-logo.jpg"/>
Then the CSS with automatic image scaling at breakpoint for mobile device:

Code: Select all

@media screen {

.headerlogo {
	float: left;
}

}

@media screen and ( max-width: 480px) {

.headerlogo {
	width: 100%;
	height: auto;
}

}

Schon Konfuzius sagte: "Sei kein YAML-Lappen". YAML-phpwcms-Integration auf http://www.yaml.phpwcms.org
Post Reply