Reply New Topic
2007/12/10 1:57:22
#1
Offline
Just popping in

Re: ImpressCMS Theme

james, looks great so far from the "view into source output". What I would add is a [html]label for the input(s).

after a quick look I ran into problems when the id of the single centercolums were assigned.

eg, I never get a "single-top-center-column" though both left and right centerblocks were not set. This is because the values are overwritten some lines below.

it is true that when both centerleft and centerright were empty normally this should be rendered as "single-top-center-column".

but, ... some lines below there is
<{elseif empty($xoops_clblocks) && !empty($xoops_ccblocks)}>
which is in this explecit situaton also true so the id of the centerblock will be rendered as "wide-top-right-column" only.

We can solve this situation copying the first block of lines (of the 3 blocks where the ids were assigned, not the blockoutput) below the 2 others (ctop centerblocks related)

So we get this instead:

<{if empty($xoops_ccblocks) && empty($xoops_crblocks)}>
<{assign var='tclc' value='single-top-left-column'}>
<{elseif empty($xoops_ccblocks) && !empty($xoops_crblocks)}>
<{assign var='tclc' value='wide-top-left-column'}>
<{assign var='tcrc' value='wide-top-right-column'}>
<{elseif !empty($xoops_ccblocks) && empty($xoops_crblocks)}>
<{assign var='tclc' value='wide-top-left-column'}>
<{assign var='tccc' value='wide-top-center-column'}>
<{else}>
<{assign var='tclc' value='top-left-column'}>
<{/if}>

<{if empty($xoops_clblocks) && empty($xoops_ccblocks)}>
<{assign var='tcrc' value='single-top-right-column'}>
<{elseif empty($xoops_clblocks) && !empty($xoops_ccblocks)}>
<{assign var='tcrc' value='wide-top-right-column'}>
<{assign var='tccc' value='wide-top-center-column'}>
<{elseif !empty($xoops_clblocks) && empty($xoops_ccblocks)}>
<{assign var='tcrc' value='wide-top-right-column'}>
<{assign var='tclc' value='wide-top-left-column'}>
<{else}>
<{assign var='tcrc' value='top-right-column'}>
<{/if}>



<{if empty($xoops_clblocks) && empty($xoops_crblocks)}>
<{assign var='tccc' value='single-top-center-column'}>
<{elseif empty($xoops_clblocks) && !empty($xoops_crblocks)}>
<{assign var='tccc' value='wide-top-center-column'}>
<{assign var='tcrc' value='wide-top-right-column'}>
<{elseif !empty($xoops_clblocks) && empty($xoops_crblocks)}>
<{assign var='tccc' value='wide-top-center-column'}>
<{assign var='tclc' value='wide-top-left-column'}>
<{else}>
<{assign var='tccc' value='top-center-column'}>
<{/if}>


this works for me in this situation. Same counts for the bottom centerblocks.

Or is it only me stupid?


what i would like to see in the source were hr's to devide the sections more clearly. we may hide them or make the "not visible" but we may (a)buse them to clear (repair) some "module templates output errors" using clear:something.


this for now!
keep on good work my friend
michael


Subject Poster Date
     ImpressCMS Theme marcan 2007/12/5 5:28:55
       Re: ImpressCMS Theme davidl2 2007/12/5 16:33:44
       Re: ImpressCMS Theme studioc 2007/12/5 23:01:50
       Re: ImpressCMS Theme JMorris 2007/12/6 4:04:42
         Re: ImpressCMS Theme snow 2007/12/6 22:27:14
           Re: ImpressCMS Theme davidl2 2007/12/6 22:39:49
           Re: ImpressCMS Theme davidl2 2007/12/6 22:54:34
       Re: ImpressCMS Theme studioc 2007/12/6 22:50:41
       Re: ImpressCMS Theme JMorris 2007/12/7 5:06:31
         Re: ImpressCMS Theme davidl2 2007/12/7 5:13:20
           Re: ImpressCMS Theme GibaPhp 2007/12/13 2:11:42
             Re: ImpressCMS Theme davidl2 2007/12/13 3:56:36
       Re: ImpressCMS Theme nekro 2007/12/7 9:45:24
         Re: ImpressCMS Theme snow 2007/12/7 10:17:38
           Re: ImpressCMS Theme JMorris 2007/12/7 10:52:07
           Re: ImpressCMS Theme skenow 2007/12/7 11:31:58
             Re: ImpressCMS Theme snow 2007/12/7 15:02:10
               Re: ImpressCMS Theme JMorris 2007/12/7 15:17:20
                 Re: ImpressCMS Theme Tom 2007/12/7 16:02:45
                   Re: ImpressCMS Theme snow 2007/12/7 17:44:46
                     Re: ImpressCMS Theme JMorris 2007/12/7 17:52:03
                       Re: ImpressCMS Theme Predator 2007/12/8 8:37:50
                         Re: ImpressCMS Theme davidl2 2007/12/8 8:46:02
                           Re: ImpressCMS Theme Predator 2007/12/8 8:58:42
                             Re: ImpressCMS Theme JMorris 2007/12/8 13:06:42
                               Re: ImpressCMS Theme JMorris 2007/12/9 9:34:23
       Re: ImpressCMS Theme studioc 2007/12/9 23:12:12
       Re: ImpressCMS Theme studioc 2007/12/10 1:57:22
       Re: ImpressCMS Theme JMorris 2007/12/10 16:13:42
       Re: ImpressCMS Theme JMorris 2007/12/10 20:21:22
       Re: ImpressCMS Theme wtravel 2007/12/12 15:30:14
       Re: ImpressCMS Theme JMorris 2007/12/12 19:27:32
         Re: ImpressCMS Theme davidl2 2007/12/13 4:54:57
           Re: ImpressCMS Theme snow 2007/12/13 9:22:37
             Re: ImpressCMS Theme marcan 2007/12/13 10:03:27
               Re: ImpressCMS Theme davidl2 2007/12/13 10:05:03
               Re: ImpressCMS Theme incama 2007/12/13 10:18:29
       Re: ImpressCMS Theme marcan 2007/12/12 22:37:04
         Re: ImpressCMS Theme aph3x 2007/12/13 0:30:33
           Re: ImpressCMS Theme incama 2007/12/13 1:29:52
       Re: ImpressCMS Theme JMorris 2007/12/13 10:44:25
       Re: ImpressCMS Theme marcan 2007/12/13 11:16:39
       Re: ImpressCMS Theme studioc 2007/12/13 11:29:43
       Re: ImpressCMS Theme marcan 2007/12/15 7:34:28
         Re: ImpressCMS Theme snow 2007/12/15 9:58:34
           Re: ImpressCMS Theme nekro 2007/12/15 11:27:27
             Re: ImpressCMS Theme sato-san 2007/12/15 11:36:56
               Re: ImpressCMS Theme davidl2 2007/12/15 11:55:40
             Re: ImpressCMS Theme marcan 2007/12/17 19:52:43
       Re: ImpressCMS Theme davidl2 2007/12/18 14:07:39
         Re: ImpressCMS Theme davidl2 2007/12/18 18:11:07
         Re: ImpressCMS Theme snow 2007/12/18 18:11:17
           Re: ImpressCMS Theme davidl2 2007/12/18 18:12:31
       Re: ImpressCMS Theme nekro 2007/12/18 18:39:09
         Re: ImpressCMS Theme davidl2 2007/12/18 18:45:49
           Re: ImpressCMS Theme marcan 2007/12/19 5:15:38
             Re: ImpressCMS Theme davidl2 2007/12/19 5:33:40
               Re: ImpressCMS Theme snow 2007/12/19 21:20:27
                 Re: ImpressCMS Theme davidl2 2007/12/19 21:31:54
                   Re: ImpressCMS Theme snow 2007/12/20 6:51:10
                     Re: ImpressCMS Theme davidl2 2007/12/20 6:53:02
                       Re: ImpressCMS Theme snow 2007/12/21 0:11:45
                         Re: ImpressCMS Theme davidl2 2007/12/21 1:25:36
                           Re: ImpressCMS Theme davidl2 2007/12/21 2:46:28
                             Re: ImpressCMS Theme snow 2007/12/21 4:45:07
                               Re: ImpressCMS Theme davidl2 2007/12/21 4:58:30
                                 Re: ImpressCMS Theme marcan 2007/12/21 8:44:41
                                   Re: ImpressCMS Theme marcan 2007/12/21 8:53:37
       Re: ImpressCMS Theme debianus 2007/12/21 11:28:14
       Re: ImpressCMS Theme kurak_bu 2007/12/21 11:54:54
       Re: ImpressCMS Theme nekro 2007/12/22 8:10:49
         Re: ImpressCMS Theme skenow 2007/12/22 8:47:23
         Re: ImpressCMS Theme snow 2007/12/22 9:12:30
           Re: ImpressCMS Theme snow 2007/12/22 9:58:42
             Re: ImpressCMS Theme skenow 2007/12/22 11:32:46
       Re: ImpressCMS Theme kurak_bu 2007/12/23 0:58:09
         Re: ImpressCMS Theme davidl2 2007/12/23 3:49:56
           Re: ImpressCMS Theme snow 2007/12/23 8:46:57
             Re: ImpressCMS Theme davidl2 2007/12/23 9:15:19
               Re: ImpressCMS Theme davidl2 2007/12/23 9:27:48
                 Re: ImpressCMS Theme davidl2 2007/12/23 10:00:35
       Re: ImpressCMS Theme kurak_bu 2007/12/23 9:11:23
       Re: ImpressCMS Theme Vaughan 2007/12/23 12:05:19
         Re: ImpressCMS Theme davidl2 2007/12/23 14:15:10
           Re: ImpressCMS Theme thomas 2008/1/2 21:23:55
             Re: ImpressCMS Theme thomas 2008/1/2 23:19:28
Reply New Topic extras
 Previous Topic   Next Topic
You can view topic.
You can start a new topic.
You can reply to posts.
You cannot edit your posts.
You cannot delete your posts.
You cannot add new polls.
You cannot vote in polls.
You cannot attach files to posts.
You can post without approval.