Welcome, Guest. Please login or register.
Did you miss your activation email?
23 Jul 2008, 14:12

Login with username, password and session length
Home Chat Help Search Calendar Login Register
Pages: [1]
Print
Author Topic: Official cmsmadesimple.org theme?  (Read 389 times)
0 Members and 1 Guest are viewing this topic.
Sonya
Forum Member
*

Karma: 5
Offline Offline

Posts: 164

Location: Germany


Russian minded, German located


WWW
« on: 11 May 2008, 13:35 »

Hello,

I would like to start Russian support site for CMS Made Simple. This site, http://www.cmsmadesimple.es/ and http://www.cmsmadesimple.hu/ use the same theme and I would like to use this theme also. Can I download the theme somewhere? Is there any restriction for usage of this theme?

Thanks,
Sonya
« Last Edit: 11 May 2008, 13:37 by Sonya » Logged
reneh
Administrator
Forum Member
*****

Karma: 3
Offline Offline

Posts: 99

Location: Norway


« Reply #1 on: 11 May 2008, 19:00 »

Hi Sonya!

The official theme for CMS Made Simple is GPL
(the author should be mentioned in the code and in the footer like we do.)

I have tried to give out the theme to the other "language sites" but we had to do it piece by piece because the theme like its used now on the mainsite have many GCB and UDT's to make it integrate with all the other subdomains we use.
(And unfortunately no one of us have got time to do a clean theme of it and export to the theme site.)

If you can contact us in the chatroom we will help you to get that you need to get started with the theme...
Logged

ReneH 8-)
Sonya
Forum Member
*

Karma: 5
Offline Offline

Posts: 164

Location: Germany


Russian minded, German located


WWW
« Reply #2 on: 12 May 2008, 04:18 »

The official theme for CMS Made Simple is GPL
(the author should be mentioned in the code and in the footer like we do.)
Will be considered.

I have tried to give out the theme to the other "language sites" but we had to do it piece by piece because the theme like its used now on the mainsite have many GCB and UDT's to make it integrate with all the other subdomains we use.
(And unfortunately no one of us have got time to do a clean theme of it and export to the theme site.)
Generally I am able to create theme from the frontend just by copying html, images and css, cleaning it and putting placeholder where the content, menu and other stuff should be. I've already "transferred" themes this way from static layout severeal times. I am writing modules and UDT for CMSMS and therefore I am able to extend functionality myself.

If you can contact us in the chatroom we will help you to get that you need to get started with the theme...
Yes, it will be easier to get a kind of the StartUp Kit Smiley including images, css and templates. I am not a "chatter" but I'll see if I manage to overcome my unease Smiley
Logged
Sonya
Forum Member
*

Karma: 5
Offline Offline

Posts: 164

Location: Germany


Russian minded, German located


WWW
« Reply #3 on: 17 May 2008, 08:14 »

Theme on this site: Dropdown-menu for top navigation does not work in IE6. Is it a known bug?
Logged
Sonya
Forum Member
*

Karma: 5
Offline Offline

Posts: 164

Location: Germany


Russian minded, German located


WWW
« Reply #4 on: 18 May 2008, 14:03 »

Theme on this site: Dropdown-menu for top navigation does not work in IE6. Is it a known bug?

I have a solution for the IE bug on this site + displaying more than two levels in horizontal menu. If you would like to test it I would appreciate a feedback

HTML:
Code:
{* Start Navigation *}
<div id="menu_vert">
<h2 class="accessibility">Navigation</h2>
{menu template='cssmenu.tpl'}
<div class="clearb"></div>
<hr class="accessibility" />
</div>
{* End Navigation *}

CSS:
Code:
/* Horizontal menu for the CMS CSS Menu Module */
/* by Alexander Endresen */

#menu_vert {
   margin-left: 1px;
   margin-right: 1px;
}

/* The wrapper clears the floating elements of the menu */

/* Fix for Opera 8 */
.clearb { clear: both; }
#menuwrapper {
   /* Fix for Opera 8 */
   /*   overflow: hidden;  */
   background: #2e72b8 url(images/nav-bg.gif) left repeat-x;   
   width: 100%;
}

/* Set the width of the menu elements at second level. Leaving first level flexible. */
#primary-nav li li {
   width: 210px;
}


/* Unless you know what you do, do not touch this */
#primary-nav, #primary-nav ul {
   list-style: none;
   margin: 0px;
   padding: 0px;
}
#primary-nav ul {
   position: absolute;
   top: auto;
   display: none;   
}
#primary-nav ul ul {
   margin-top: 1px;
   margin-left: -1px;
   left: 100%;
   top: 0px;
}

#primary-nav li {
   margin-left: -1px;
   float: left; 
}
#primary-nav li li {
   margin-left: 0px;
   margin-top: -1px;
   float: none;
   position: relative;
}

/* Styling the basic apperance of the menu elements */
#primary-nav a,
#primary-nav a:visited {
   display: block;
   margin: 0px;
   text-decoration: none;
   color:#ffffff;
   font-size:1.5em;
   font-family:Arial, Helvetica, sans-serif;
   padding:.5em 1.25em;   
}

#primary-nav li a {
   background-image: url(images/nav-divider.gif);
   background-position: right;
   background-repeat: repeat-y;   
}

/* second level list items */
#primary-nav ul li, #primary-nav ul li.menuparent {
   background-color: #2e72b8;
   border:1px solid #215893;
   border-right:none;
   font-size:8px;     
}

/* Styling the basic apperance of the active page elements (shows what page in the menu is being displayed) */

/* first level parents list item */
#primary-nav li.menuparent,
#primary-nav li.menuparent:hover,
#primary-nav li.menuparenth {
   background-image: url(images/nav-divider.gif);
   background-position: right;
   background-repeat: repeat-y;
   background-color:transparent;
}

/* first level parents link style */
#primary-nav li.menuparent a.menuparent,
#primary-nav li.menuparent:hover a.menuparent,
#primary-nav li.menuparenth a.menuparent {
/* arrow for menuparents */
   background: url(images/nav-menuparent-arrow.gif) right repeat-y;
   background-position: center right;
   background-repeat: no-repeat;
   padding-right:2.4em;
}

/* second level parents list item */
#primary-nav ul li.menuparent,
#primary-nav ul li.menuparent:hover,
#primary-nav ul li.menuparenth {
/* arrow for menuparents */
   background-image: url(images/nav-menuparent-arrow.gif);
   background-position: center right;
   background-repeat: no-repeat;
   background-color: #2e72b8;   
}

/* second level parents link item */
#primary-nav ul li.menuparent a.menuparent,
#primary-nav ul li.menuparent:hover a.menuparent,
#primary-nav ul li.menuparenth a.menuparent {
   background-image: url(images/nav-divider.gif);
   background-position: right;
   background-repeat: repeat-y;   
}

#primary-nav ul li:hover a:hover,
#primary-nav ul li.menuh a:hover,
#primary-nav ul li.menuparenth a:hover,
#primary-nav ul li.menuactiveh a:hover {
   background-color: #fff;
   color:#000;
}


/* The magic - set to work for up to a 3 level menu, but can be increased unlimited */

/*
just add
#primary-nav li:hover ul ul,
#primary-nav li.menuparenth ul ul ul,
for fourth level
*/
#primary-nav ul,
#primary-nav li:hover ul,
#primary-nav li:hover ul ul,
#primary-nav li.menuparenth ul,
#primary-nav li.menuparenth ul ul {
   display: none;
}

/* add
#primary-nav ul ul ul li:hover ul,
#primary-nav ul ul ul li.menuparenth ul,
for fourth level
*/
#primary-nav li:hover ul,
#primary-nav ul li:hover ul,
#primary-nav ul ul li:hover ul,
#primary-nav li.menuparenth ul,
#primary-nav ul li.menuparenth ul,
#primary-nav ul ul li.menuparenth ul {
   display: block;
}


/* IE Hacks */
#primary-nav li li {
   float: left;
   clear: both;
}
#primary-nav li li a {
   height: 1%;
}
« Last Edit: 18 May 2008, 14:29 by Sonya » Logged
Pages: [1]
Print
Jump to: