31
snow77
Re: Getting rid of /xoops
  • 2007/9/29 6:42

  • snow77

  • Just can't stay away

  • Posts: 864

  • Since: 2003/7/23


+1, meaning that I agree with the last current actions (biteronboard, skenow, nekro).

(OOPS, sorry does +1 mean getting erased from the forums, last time it did)
www.polymorphee.com
www.xoopsdesign.com



32
snow77
Re: Xoops Monogamy? : )
  • 2007/9/29 6:18

  • snow77

  • Just can't stay away

  • Posts: 864

  • Since: 2003/7/23


geshh your crazy, monogamy is only something I and maybe some other believe for the relationship with their husband or wife.

This is work, there's valuable code everywhere.

XOOPS is just what it is.
www.polymorphee.com
www.xoopsdesign.com



33
snow77
Re: Mr. Theme = P.O.d
  • 2007/9/21 19:08

  • snow77

  • Just can't stay away

  • Posts: 864

  • Since: 2003/7/23


That's right.

A basic theme.html framework could look like this, anyone can use it:

<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'>
<
html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<{$xoops_langcode}>" lang="<{$xoops_langcode}>">
<
head>
<!-- 
Theme name -->
    <{
assign var=theme_name value=$xoTheme->folderName}>
<!-- 
Title and meta -->
    <
title><{if $xoops_pagetitle !=''}><{$xoops_pagetitle}> : <{/if}><{$xoops_sitename}></title>
    <
meta http-equiv="content-type" content="text/html; charset=<{$xoops_charset}>" />    
    <
meta name="robots" content="<{$xoops_meta_robots}>" />
    <
meta name="keywords" content="<{$xoops_meta_keywords}>" />
    <
meta name="description" content="<{$xoops_meta_description}>" />
    <
meta name="rating" content="<{$xoops_meta_rating}>" />
    <
meta name="author" content="<{$xoops_meta_author}>" />
    <
meta name="copyright" content="<{$xoops_meta_copyright}>" />
    <
meta name="generator" content="XOOPS" />
<!-- 
Favicon -->
    <
link rel="shortcut icon" type="image/ico" href="<{xoImgUrl icons/favicon.ico}>" />
    <
link rel="icon" type="image/png" href="<{xoImgUrl icons/icon.png}>" />
<!-- 
Sheet Css -->
    <
link rel="stylesheet" type="text/css" media="all" title="Style sheet" href="<{xoImgUrl css/style.css}>" />
<!-- 
Module Header -->
<{
$xoops_module_header}>
</
head>
<
body id="<{$xoops_dirname}>" class="<{$xoops_langcode}>">
<{if 
$xoBlocks.canvas_left and $xoBlocks.canvas_right}><{assign var=columns_layout value='threecolumns-layout'}>
<{elseif 
$xoBlocks.canvas_left}><{assign var=columns_layout value='leftcolumn-layout'}>
<{elseif 
$xoBlocks.canvas_right}><{assign var=columns_layout value='rightcolumn-layout'}>
<{/if}>
<
div id="xo-canvas"<{if $columns_layout}> class="<{$columns_layout}>"<{/if}>>
  <!-- 
Start header -->
    <
div id="xo-header">
        <
div id="xo-headerlogo"><a href="<{xoAppUrl /}>" title=""><img src="<{xoImgUrl img/logo.png}>" alt="<{$xoops_sitename}>" /></a></div>
        <
div id="xo-headerbanner"><{$xoops_banner}></div>
        <
div id="xo-globalnav">&nbsp;</div>
    </
div>  <!-- End header -->
  
<!-- 
Start Main Content Area -->
<
div id="xo-canvas-content">
    
    <!-- 
Start Left Column -->
    <{if 
$xoBlocks.canvas_left}>
    <
div id="xo-canvas-leftcolumn">
    <{foreach 
item=block from=$xoBlocks.canvas_left}><{includeq file="$theme_name/theme_blockleft.html"}><{/foreach}>
    </
div>
    <{/if}><!-- 
End Left Column -->    
    
    <!-- 
Start Right Column -->
    <{if 
$xoBlocks.canvas_right}>
    <
div id="xo-canvas-rightcolumn">
    <{foreach 
item=block from=$xoBlocks.canvas_right}><{includeq file="$theme_name/theme_blockright.html"}><{/foreach}>
    </
div>
     <{/if}><!-- 
End Right Column -->
     
    <
div id="xo-page">
    <!-- 
Start Center Column -->
            <!-- 
Display center blocks if any -->
            <{if 
$xoBlocks.page_topleft or $xoBlocks.page_topcenter or $xoBlocks.page_topright}>
            <
div  id="xo-topblocks">
                    <
div id="xo-topcenterblocks">
                    <{foreach 
item=block from=$xoBlocks.page_topcenter}><{includeq file="$theme_name/theme_blockcenter_c.html"}><{/foreach}>
                    </
div>
                    <
div id="xo-topleftblocks">
                    <{foreach 
item=block from=$xoBlocks.page_topleft}><{includeq file="$theme_name/theme_blockcenter_l.html"}><{/foreach}>
                    </
div>
                    <
div id="xo-toprightblocks">
                    <{foreach 
item=block from=$xoBlocks.page_topright}><{includeq file="$theme_name/theme_blockcenter_r.html"}><{/foreach}>
                    </
div>
                    </
div><!-- End xo-topblocks -->
            <{/if}><!-- 
End display center blocks -->

            <{if 
$xoops_contents}>
            <
div class="xo-content"><{$xoops_contents}></div>
            <{/if}>

            <!-- 
Start center bottom blocks loop -->
            <{if 
$xoBlocks.page_bottomleft or $xoBlocks.page_bottomright or $xoBlocks.page_bottomcenter}>
            <
div id="xo-bottomblocks">
                <{if 
$xoBlocks.page_bottomcenter}>
                    <
div id="xo-bottomcenterblocks">
                    <{foreach 
from=$xoBlocks.page_bottomcenter item=block}><{include file="$theme_name/theme_blockcenter_c.html"}><{/foreach}>
                    </
div>
                    <{/if}>
                    <{if 
$xoBlocks.page_bottomleft or $xoBlocks.page_bottomright}>
                    <
div id="xo-bottomleftblocks">
                    <{foreach 
from=$xoBlocks.page_bottomleft item=block}><{include file="$theme_name/theme_blockcenter_l.html"}><{/foreach}>
                    </
div>
                    <
div id="xo-bottomrightblocks">
                    <{foreach 
from=$xoBlocks.page_bottomright item=block}><{include file="$theme_name/theme_blockcenter_r.html"}><{/foreach}>
                    </
div>
                    <{/if}>
            </
div><!-- End xo-bottom-block -->
            <{/if}><!-- 
End center bottom blocks loop -->

    </
div> <!-- end xo-page -->
    
</
div> <!-- End xo-canvas-content -->

<!-- 
Start footer -->
<
div id="xo-footer">
<
a href="https://xoops.org/" title=""><img src="<{xoImgUrl img/poweredby.gif}>" alt="XOOPS" /></a>
</
div>
<!-- 
end Footer -->
</
div> <!-- end xo-canvas -->
</
body>
</
html>


I believe you can distribute how you want the creative end result, which is the graphical design rendered by the css layout.
www.polymorphee.com
www.xoopsdesign.com



34
snow77
Re: bassmanthemes.com is closing.
  • 2007/9/19 1:39

  • snow77

  • Just can't stay away

  • Posts: 864

  • Since: 2003/7/23


Thanks for what you've been doing.

I'll suggest for your themes to be mirrored to www.bassmanthemes.com from the XOOPS addons site, since you'll be finding a confident person to keep it alive.
www.polymorphee.com
www.xoopsdesign.com



35
snow77
Re: bassmanthemes.com is closing.
  • 2007/9/19 0:26

  • snow77

  • Just can't stay away

  • Posts: 864

  • Since: 2003/7/23


Is there any objection into adding these themes to the XOOPS addons downloads site community members are building and is being discussed at www.xoopsinfo.com (a question just for Bassman)?

As a significative opensource contribution I think they should be added there before getting lost, conserving all credits of the original author, Bassman.
www.polymorphee.com
www.xoopsdesign.com



36
snow77
Re: How to use smarty plugin "xoAppUrl" and "xoImgUrl"?
  • 2007/8/9 6:34

  • snow77

  • Just can't stay away

  • Posts: 864

  • Since: 2003/7/23


Quote:
It took me three days to figure out that code above was incorrect.


Where, when and what is the code that is working wrong?

xoImgUrl and xoAppUrl have been working fine for me with or without slash.

If there is a rule of when to use the slash and when not. The developers of XOOPS should know about the "architecture" to give a better response. But I'm not sure where you'll get a response of the architecture... probably at the sourceforge forums.
www.polymorphee.com
www.xoopsdesign.com



37
snow77
Re: Problems whit themes
  • 2007/8/9 5:49

  • snow77

  • Just can't stay away

  • Posts: 864

  • Since: 2003/7/23


To install Geometric red you:

1. Download the zip: 03a_geometeric_red.zip
2. Extract the contents of the zip
3.Inside the folder XOOPS theme take the folder geometric_red and upload the folder and all it's contents to the themes folder of your XOOPS root
4. Go to the administration panel > system >preferences > general settings and select it as your default theme.
www.polymorphee.com
www.xoopsdesign.com



38
snow77
Re: Morphogenesis, a theme template for designers
  • 2007/8/5 21:07

  • snow77

  • Just can't stay away

  • Posts: 864

  • Since: 2003/7/23


Here is a visual diagram layout I once did. It will show you all the sectors and every style is based on this classification.

(click the image for larger view)
Resized Image

Credits to Leo and Skalpa whom made the initial layout.

I also realized that the download link to Morphogenesis v.1 is missing from the news section because it was an image link and now the image doesn't exist, I'll try to fix that, meanwhile here is the link to download

Morphogenesis V1 download (no registration required).

Lately I've been building all the themes using the Morphogenesis xhtml with the predefined id's and it's very flexible. It could be that I release a version 1.1, where I have redistributed the styles in the stylesheets and simplified it a bit more.
www.polymorphee.com
www.xoopsdesign.com



39
snow77
Re: Confused with menus and content
  • 2007/8/4 1:44

  • snow77

  • Just can't stay away

  • Posts: 864

  • Since: 2003/7/23


For content I would advise the two most active modules:
news module and smartsection module

For the custom menu: multimenu module

With liaise, create all the menu's you need and link them with multimenu, you'll have different pages with different forms.
www.polymorphee.com
www.xoopsdesign.com



40
snow77
Re: Morphogenesis, a theme template for designers
  • 2007/7/31 23:24

  • snow77

  • Just can't stay away

  • Posts: 864

  • Since: 2003/7/23


I´ve been looking at this

<body  class="<{$xoops_dirname}> theme-default">


Kris has this instead

body id="<{$xoops_dirname}>" class="<{$xoops_langcode}>">


Now that's neat! I'm still testing but it seems you can add special css depending on the module so you can create something like this:

body.newbb a {} ...and all the forum links change color different than the other selectors you have defined, so you can define specialized selectors per module and with Kris's way per module + per langcode, so it could be something like this:

body.news .en .header {background: something; }

or

body.news .es .header {background: somethingelse; }

but then those are all classes...it depends cause in Kris's ways module is an id.
www.polymorphee.com
www.xoopsdesign.com




TopTop
« 1 2 3 (4) 5 6 7 ... 65 »



Login

Who's Online

179 user(s) are online (59 user(s) are browsing Support Forums)


Members: 0


Guests: 179


more...

Donat-O-Meter

Stats
Goal: $100.00
Due Date: Oct 31
Gross Amount: $0.00
Net Balance: $0.00
Left to go: $100.00
Make donations with PayPal!

Latest GitHub Commits