Welcome, Guest. Please login or register.
Did you miss your activation email?
May 24, 2012, 08:41:13 AM

Login with username, password and session length
Search:     Advanced search
Wollen Sie dem WebsiteBaker Team beitreten?
Nähere Informationen finden Sie unter hier und auf unserer neuen Webseite.
155442 Posts in 21702 Topics by 7731 Members
Latest Member: zvaigzdzius
* Home Help Search Login Register
Pages: [1]   Go Down
Print
Author Topic: Some sites i made two years ago (in a previous company :) )  (Read 1388 times)
iceat
Development Team
*****
Offline Offline

Posts: 97



WWW
« on: October 17, 2008, 09:57:46 AM »

http://www.franlis.be/

http://www.verastor.be/
Logged

Webdesign/-Development, Freelance

> http://www.medialoft.be
iceat
Development Team
*****
Offline Offline

Posts: 97



WWW
« Reply #1 on: October 17, 2008, 10:01:13 AM »

i now have my own company, here are some sites i made not long ago

http://www.vorm-en-inhoud.be/

http://www.steenbakkerijfloren.be/

http://www.zvcoepidus.be/
Logged

Webdesign/-Development, Freelance

> http://www.medialoft.be
tessed

Offline Offline

Posts: 91


WWW
« Reply #2 on: October 18, 2008, 05:35:34 PM »

Hi,

Here are my comments.

franlis.be: very profesional look and feel, i like it very much

verastor.be: the 4 words below "Waarom kiezen voor Verastor" are not aligned. The first word is more to the left than the rest. Except from this its very nice.

vorm-en-in-houd.be: i like the menu, is it dynamic or hard coded?

steenbakkerijfloren .be: i don't like the menu, but i do like the catalog. Its exatly what i need for a website i am about to work on, is it a module?

zvcoepidus.be: simpel and clear. Have you tried putting the logo on the header image?

Conclusion: good quality work.

Regards,

Tyronne

Logged

Webdesign: www.desse.nl
iceat
Development Team
*****
Offline Offline

Posts: 97



WWW
« Reply #3 on: October 20, 2008, 12:36:28 PM »

thanks!

verastor.be: it's the end user who wants to be creative i guess, i'd better send him an e-mail Smiley

vorm-en-inhoud.be: it's dynamic

steenbakkerijfloren .be:
- they wanted this clean and sober menu Smiley
- the catalog is a add-on i built for website baker. It's completely customizable, works with templates, can be used for all kinds of structured content, multilanguage, ... I'm working on a final version which i would like to launch shortly. If only I would have some more time Smiley

I'm planning to launch a module this week, i'll post it on the forum.

« Last Edit: October 20, 2008, 12:38:40 PM by iceat » Logged

Webdesign/-Development, Freelance

> http://www.medialoft.be
tessed

Offline Offline

Posts: 91


WWW
« Reply #4 on: October 20, 2008, 12:47:00 PM »

Hi,

Looking forward to using the module.

Regards,

Tyronne
Logged

Webdesign: www.desse.nl
mgeene

Offline Offline

Posts: 38


« Reply #5 on: April 25, 2012, 08:07:00 PM »

Hoi,

Ik zie dat je op http://www.verastor.be/pages/producten/rolluiktoebehoren.php gebruik maakt van het catalog module script, hoe heb je de subnavigatie gemaakt, ik ben op zoek naar precies dit uitklap menu, maar het lukt me gewoon niet dit te realiseren.

Kan je me hiermee helpen?
Onderstaand de code in view.php:

Code:
$query_cats = $database->query("SELECT * FROM `".TABLE_PREFIX."mod_catalogs_cats` WHERE active='1' AND parent='$parent' AND section_id='$section_id' ORDER BY position ASC");
 if($query_cats->numRows() > 0)
 {
echo "<ul class='categorie'>";
while($cat = $query_cats->fetchRow())
{

$query_link = $database->query("SELECT link FROM ".TABLE_PREFIX."pages WHERE page_id = '".PAGE_ID."' LIMIT 1");
  if($query_link->numRows() > 0) {
    $fetch_link = $query_link->fetchRow();
$hasta=0;
while ($hasta!=$posiciones)
{
$hasta=$hasta+1;
}

  echo "<li class='categorie'><a href=\"";
echo page_link($fetch_link['link']);
echo "?cat_id=".$cat["cat_id"]."\" >";
echo $cat['title'];
echo "</a></li>";
//echo "</ul>";
    }
  $query_sub_cats = $database->query("SELECT * FROM `".TABLE_PREFIX."mod_catalogs_cats` WHERE active='1' AND parent=".$cat['cat_id']." AND section_id='$section_id' ORDER BY position ASC");
  if($query_sub_cats->numRows() > 0)
  {
   $padre=$cat['cat_id'];
   $nuevas_posiciones=$posiciones+1;
   categories($database,$section_id,$padre,$nuevas_posiciones);
  }
 
}
 }
  echo "</ul>";
}

Alvast bedankt voor je reactie.

Groet,

Menno
Logged
Pages: [1]   Go Up
Print
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.16 | SMF © 2011, Simple Machines Valid XHTML 1.0! Valid CSS!