WebsiteBaker Logo
  • *
  • Templates
  • Help
  • Add-ons
  • Download
  • Home
*
Welcome, Guest. Please login or register.

Login with username, password and session length
 

News


WebsiteBaker 2.13.6 is now available!


Will it continue with WB? It goes on! | Geht es mit WB weiter? Es geht weiter!
https://forum.websitebaker.org/index.php/topic,32340.msg226702.html#msg226702


The forum email address board@websitebaker.org is working again
https://forum.websitebaker.org/index.php/topic,32358.0.html


R.I.P Dietmar (luisehahne) and thank you for all your valuable work for WB
https://forum.websitebaker.org/index.php/topic,32355.0.html


* Support WebsiteBaker

Your donations will help to:

  • Pay for our dedicated server
  • Pay for domain registration
  • and much more!

You can donate by clicking on the button below.


  • Home
  • Help
  • Search
  • Login
  • Register

  • WebsiteBaker Community Forum »
  • General Community »
  • WebsiteBaker Website Showcase »
  • Finally Settled on a CMS for My Personal Site
  • Print
Pages: [1]   Go Down

Author Topic: Finally Settled on a CMS for My Personal Site  (Read 8241 times)

ProSam

  • Guest
Finally Settled on a CMS for My Personal Site
« on: June 22, 2007, 05:17:26 PM »
After test driving a few CMS' I finally decided to stick with good ole WB. I wanted to test the waters of other CMS' and I some where too complicated and others just didn't cut it. WB is just perfect for most of my needs. I've built several sites with WB and don't think I'll be stopping anytime soon.

Here it is: http://www.prodzynes.com/ I used a template and modified it. I wish I had the time to build one from the ground up but I just don't.

Let me know what you think. :mrgreen:
Logged

Eki

  • Guest
Re: Finally Settled on a CMS for My Personal Site
« Reply #1 on: June 22, 2007, 05:36:57 PM »
Just looked at it, and also some of the sites you build with WB look really great !!!
Logged

Offline GRID8400

  • Posts: 119
  • Gender: Male
  • It's all about design!
    • KEY2DESIGN
Re: Finally Settled on a CMS for My Personal Site
« Reply #2 on: June 22, 2007, 05:57:43 PM »
looks nice.
Some good stuff in your portfolio also.
Just one remark:

I would try to loose the horizontal scrollbar in your right container.
by putting in your CSS:

overflow: -moz-scrollbars-vertical;
overflow-x: hidden;
overflow-y: scroll;

IMHO...
Logged
Our WB websites: KEY2DESIGN & KEY2PICTURE

ProSam

  • Guest
Re: Finally Settled on a CMS for My Personal Site
« Reply #3 on: June 22, 2007, 06:39:45 PM »
Quote from: grid8400 on June 22, 2007, 05:57:43 PM
I would try to loose the horizontal scrollbar in your right container.
by putting in your CSS:

overflow: -moz-scrollbars-vertical;
overflow-x: hidden;
overflow-y: scroll;

IMHO...

Great idea but something is not looking right.

In both IE7 and FF2 areas where no scrollbar was being shown, now there is one. See below:

 
How do I get rid of that blank scrollbar.
Logged

ProSam

  • Guest
Re: Finally Settled on a CMS for My Personal Site
« Reply #4 on: June 22, 2007, 06:53:25 PM »
One other thing I can't figure out is why the menu is laying out backwards. Shouldn't Home be first and then the rest of the menu options? The template is like this by default.

How do I fix that?

I think I can edit this snippet but don't know how.

Code: [Select]
<?php show_menu(1,0,-1,true,&#39;<li>[a][menu_title][/a]</li>&#39;,&#39;&#39;,&#39;&#39;,&#39;&#39;,&#39;&#39;,&#39;&#39;); ?>I tried changing true to false switching around the 1's and 0's but nothing.
Logged

Offline kweitzel

  • WebsiteBaker Org e.V.
  • **
  • Posts: 6983
  • Gender: Male
Re: Finally Settled on a CMS for My Personal Site
« Reply #5 on: June 22, 2007, 07:39:09 PM »
The "backwards" menu comes with the float:right;" of the CSS ... you could either float the containing DIV instead of the LI's or put the pages backwards in the page administration ;-)

The scrollbar comes with the content ... if the content is even 1 px longer than the available space, it comes up. A bit of content optimisation required there.

cheers

Klaus
Logged

ProSam

  • Guest
Re: Finally Settled on a CMS for My Personal Site
« Reply #6 on: June 22, 2007, 08:51:49 PM »
Quote from: kweitzel on June 22, 2007, 07:39:09 PM
The scrollbar comes with the content ... if the content is even 1 px longer than the available space, it comes up. A bit of content optimisation required there.
Sorry Klaus but you are mistaken.

As I mentioned, and is shown in the image above. Before I added the styles grid8400 suggested there were no Blank scroll bars in eitherIE7 or FF2. As soon as I added the styles the Blank Scroll bar appeared. The styles did get rid of the annoying horizontal scroll bars but at somewhat of a price. I do not like that blank scroll bar at all.

Here is a full image of the before and after shots.

With the style you see and empty scroll bar


Without the styles there is no scroll bar and what you see is the actual content in the container.


And this is what the scroll bar looks like when it actually has to scroll


In regards to the menu, why would the float put the menu items in reverse order? I don't get it.
Logged

ProSam

  • Guest
Re: Finally Settled on a CMS for My Personal Site
« Reply #7 on: June 22, 2007, 09:22:26 PM »
Quote from: kweitzel on June 22, 2007, 07:39:09 PM
The "backwards" menu comes with the float:right;" of the CSS ... you could either float the containing DIV instead of the LI's or put the pages backwards in the page administration ;-)

I tried reordering the menu in the admin, that worked but it also made my Contact page the homepage. Not good.

But putting the float on the containing div fixed it. Thanks Klaus.
« Last Edit: June 22, 2007, 09:26:42 PM by ProSam »
Logged

Offline GRID8400

  • Posts: 119
  • Gender: Male
  • It's all about design!
    • KEY2DESIGN
Re: Finally Settled on a CMS for My Personal Site
« Reply #8 on: June 22, 2007, 10:06:15 PM »

If the content fits in the declareded space you can use:

overflow-y: auto;

Scrollbar only shows up when needed then ...

(i believe.. i think.. not really sure hahahahaha :)
Logged
Our WB websites: KEY2DESIGN & KEY2PICTURE

ProSam

  • Guest
Re: Finally Settled on a CMS for My Personal Site
« Reply #9 on: June 23, 2007, 01:06:32 AM »
Quote from: grid8400 on June 22, 2007, 10:06:15 PM
overflow-y: auto;

that did it. thanks man
Logged

Offline GRID8400

  • Posts: 119
  • Gender: Male
  • It's all about design!
    • KEY2DESIGN
Re: Finally Settled on a CMS for My Personal Site
« Reply #10 on: June 23, 2007, 10:15:25 AM »
Quote from: ProSam on June 23, 2007, 01:06:32 AM
Quote from: grid8400 on June 22, 2007, 10:06:15 PM
overflow-y: auto;

that did it. thanks man

You are welcome :)

Btw go check my first WB site I am building now please on:

http://www.voidsolutions.nl/cms/

Feedback you can give on:
http://forum.WebsiteBaker.org/index.php/topic,6584.0.html

Cheers!
:D

Logged
Our WB websites: KEY2DESIGN & KEY2PICTURE

  • Print
Pages: [1]   Go Up
  • WebsiteBaker Community Forum »
  • General Community »
  • WebsiteBaker Website Showcase »
  • Finally Settled on a CMS for My Personal Site
 

  • SMF 2.0.19 | SMF © 2017, Simple Machines
  • XHTML
  • RSS
  • WAP2