Page 1 of 1
Coffeewebsite responsive
Posted: Sat 13. Jul 2013, 11:52
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
Re: Coffeewebsite responsive
Posted: Sat 13. Jul 2013, 20:20
by nameless1
nice.
why do you remove copyright information in head?
Re: Coffeewebsite responsive
Posted: Sun 14. Jul 2013, 06:09
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
Re: Coffeewebsite responsive
Posted: Tue 15. Oct 2013, 12:34
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;
}
}