www.gnuelps.de
www.gnuelps.de
Here my first phpWCMS-project: http://www.gnuelps.de/index.php
Any sugestions?
I'm testing many things and i must say, phpWCMS is a wonderfull cms.
Any sugestions?
I'm testing many things and i must say, phpWCMS is a wonderfull cms.
Rainer G. aus H.
http://www.BunteReisebilder.de
My phpWCMS-projects:
http://www.gnuelps.de
http://qvpage.gnuelps.de
http://www.BunteReisebilder.de
My phpWCMS-projects:
http://www.gnuelps.de
http://qvpage.gnuelps.de
oh - seriously cool
wow I like that transition!
Im on slow dial up the site loads FAST - I like the effect you have used to transition pages, it is very easy on the eyes.
The gallery is slick
A bit more work on the css to integrate evrything into a common look and this is going to be a top showcase site IMHO
hoping compliments will get me some help in integrating a gallery script ;0)
Im on slow dial up the site loads FAST - I like the effect you have used to transition pages, it is very easy on the eyes.
The gallery is slick
A bit more work on the css to integrate evrything into a common look and this is going to be a top showcase site IMHO
hoping compliments will get me some help in integrating a gallery script ;0)
thanks in advance.
visit my stockphotography portfolio
visit my stockphotography portfolio
nice look
Hi,
Your site looks very pleasant. Some links evokes small movements of all page to the left or right. Maybe it's a matter of Firefox I'm using...
However efect is great and what's most important navigation is very simple.
I'm rookie in this topic so I'd like to ask you a question?
How did you make one menu in header and second in left column?
Regards,
Jack
Your site looks very pleasant. Some links evokes small movements of all page to the left or right. Maybe it's a matter of Firefox I'm using...
However efect is great and what's most important navigation is very simple.
I'm rookie in this topic so I'd like to ask you a question?
How did you make one menu in header and second in left column?
Regards,
Jack
The header menu is very simple. It's a replacement-tag from phpWCMS: {BREADCRUMB}
The left runs also with an replacement-tag from phpWCMS, but with own code (and help from here) to calculate the right submenu.
Look here:
http://www.phpwcms.de/forum/viewtopic.php?t=5760
Code: Select all
<div style="text-align:center; padding:3px 0px 3px 0px; margin:0;" class="breadcrumb">{BREADCRUMB}</div>
Look here:
http://www.phpwcms.de/forum/viewtopic.php?t=5760
Rainer G. aus H.
http://www.BunteReisebilder.de
My phpWCMS-projects:
http://www.gnuelps.de
http://qvpage.gnuelps.de
http://www.BunteReisebilder.de
My phpWCMS-projects:
http://www.gnuelps.de
http://qvpage.gnuelps.de
Re: nice look
I see what you mean. I will see to optimize this for firefox (opera, mozilla,...)sabum wrote: ...
Your site looks very pleasant. Some links evokes small movements of all page to the left or right. Maybe it's a matter of Firefox I'm using...
...
Rainer G. aus H.
http://www.BunteReisebilder.de
My phpWCMS-projects:
http://www.gnuelps.de
http://qvpage.gnuelps.de
http://www.BunteReisebilder.de
My phpWCMS-projects:
http://www.gnuelps.de
http://qvpage.gnuelps.de
Re: nice look
The effect comes from the scrollbars. Many sides are small and have no scrollbars, the other have the scrollbar.Rainer G wrote:I see what you mean. I will see to optimize this for firefox (opera, mozilla,...)sabum wrote: ...
Your site looks very pleasant. Some links evokes small movements of all page to the left or right. Maybe it's a matter of Firefox I'm using...
...
Rainer G. aus H.
http://www.BunteReisebilder.de
My phpWCMS-projects:
http://www.gnuelps.de
http://qvpage.gnuelps.de
http://www.BunteReisebilder.de
My phpWCMS-projects:
http://www.gnuelps.de
http://qvpage.gnuelps.de
Ok, dann antworte ich auch mal in Deutsch
Diesen Code z. B. in die linke Hälfte bugsieren:
Es wird solange die Schleife durchlaufen, bis die parent_id beim Hauptmenü angelangt ist, die davor gemerkte id ist dann die gesuchte.
Die IF-Abfrage verhindert, dass aus dem Grundmenü heraus das linke Menü angezeigt wird. In den anderen Fällen werden nur die entsprechenden Submenüs angezeigt.
Diesen Code z. B. in die linke Hälfte bugsieren:
Code: Select all
<?php
$id = $GLOBALS['content']['cat_id'];
$parent_id=$GLOBALS['content']['struct'][$id]['acat_struct'];
While ($parent_id<>0){
$id=$parent_id;
$parent_id=$GLOBALS['content']['struct'][$id]['acat_struct'];
}
if ($id > 0) {
echo '{NAV_TABLE_COLUMN:'.$id.'}';
}
?>
Die IF-Abfrage verhindert, dass aus dem Grundmenü heraus das linke Menü angezeigt wird. In den anderen Fällen werden nur die entsprechenden Submenüs angezeigt.
Rainer G. aus H.
http://www.BunteReisebilder.de
My phpWCMS-projects:
http://www.gnuelps.de
http://qvpage.gnuelps.de
http://www.BunteReisebilder.de
My phpWCMS-projects:
http://www.gnuelps.de
http://qvpage.gnuelps.de
Ja genau in den gewünschten Bereich des Templates.
oder als externe PHP-Datei mittels:
{PHP:./deinpfad/nav.php}
So kannst du das in mehreren Templates benutzen, brauchst es aber nur einmal ändern (dann allerdings mit einem externen Editor).
oder als externe PHP-Datei mittels:
{PHP:./deinpfad/nav.php}
So kannst du das in mehreren Templates benutzen, brauchst es aber nur einmal ändern (dann allerdings mit einem externen Editor).
Rainer G. aus H.
http://www.BunteReisebilder.de
My phpWCMS-projects:
http://www.gnuelps.de
http://qvpage.gnuelps.de
http://www.BunteReisebilder.de
My phpWCMS-projects:
http://www.gnuelps.de
http://qvpage.gnuelps.de