Template - cmsimple.pw - Blocks

Please post the URLs to pages, where you've made a CMSimple template available for download

Moderator: mikey

Post Reply
mikey
Site Admin
Posts: 179
Joined: Tue May 27, 2008 3:15 am
Location: Sydney Australia

Template - cmsimple.pw - Blocks

Post by mikey » Sat Feb 08, 2014 3:42 am

[ external image ]

Demo

Download Page

blank image pack included if your not a fan of pins and post-it notes ;)

cheers
mikey

mrleejohn
Posts: 33
Joined: Mon Dec 26, 2011 1:54 pm

Re: Template - cmsimple.pw - Blocks

Post by mrleejohn » Sun Feb 09, 2014 10:44 am

Ow, man.... nice. You make such a lot very beautifull templates! Keep up the good work!

Just thought someone should say this to you once in a while :!:

mikey
Site Admin
Posts: 179
Joined: Tue May 27, 2008 3:15 am
Location: Sydney Australia

Re: Template - cmsimple.pw - Blocks

Post by mikey » Sun Feb 09, 2014 10:50 am

many thanks for your nice comments, always makes my day :)

kmsmei
Posts: 93
Joined: Tue Nov 03, 2009 9:03 am

Re: Template - cmsimple.pw - Blocks

Post by kmsmei » Fri Feb 27, 2015 10:00 am

Really fine!

But one question: How can I get a plain white background in the editor-windows?
The wooden background isn't really practical.

Greetings Frank

CMSimple_XH 1.6.3 Released: 2014-09-21
Hi_kcfinder 2.0.1
Tinymce for CMSimple_XH 1.6.3
Utf8 0.5.5

cmb
Posts: 14225
Joined: Tue Jun 21, 2011 11:04 am
Location: Bingen, RLP, DE
Contact:

Re: Template - cmsimple.pw - Blocks

Post by cmb » Fri Feb 27, 2015 12:01 pm

kmsmei wrote:But one question: How can I get a plain white background in the editor-windows?
Set an ID for the body element in the template, and move the background property definition in the stylesheet to a rule for this ID. E.g. HTML

Code: Select all

<body id="body" bgcolor="#ffffff" onload=""><a name="top">
and CSS

Code: Select all

#body {background: url('images/blocks-bk.jpg') repeat 0 0 #ffffff;}
Christoph M. Becker – Plugins for CMSimple_XH

kmsmei
Posts: 93
Joined: Tue Nov 03, 2009 9:03 am

Re: Template - cmsimple.pw - Blocks

Post by kmsmei » Sat Feb 28, 2015 3:58 pm

Danke Christoph!
Gruß Frank

kmsmei
Posts: 93
Joined: Tue Nov 03, 2009 9:03 am

Re: Template - cmsimple.pw - Blocks

Post by kmsmei » Thu Mar 05, 2015 9:39 am

Sorry, it doesn't work.
The Editing-Area shows images/blocks-bk.jpg as Background instead of plain white. And i have no idea, what's wrong in css :(

Frank

cmb
Posts: 14225
Joined: Tue Jun 21, 2011 11:04 am
Location: Bingen, RLP, DE
Contact:

Re: Template - cmsimple.pw - Blocks

Post by cmb » Thu Mar 05, 2015 11:18 am

kmsmei wrote:The Editing-Area shows images/blocks-bk.jpg as Background instead of plain white.
Did you remove the respective rules for body {background*} in the stylesheet?
Christoph M. Becker – Plugins for CMSimple_XH

lck
Posts: 2963
Joined: Wed Mar 23, 2011 11:43 am
Contact:

Re: Template - cmsimple.pw - Blocks

Post by lck » Thu Mar 05, 2015 11:23 am

In template.htm
change Line 20

Code: Select all

<body bgcolor="#ffffff"<?php echo onload();?>><a name="top"></a>
to

Code: Select all

<body id="body" <?php echo onload();?>><a name="top"></a>
in stylesheet.css Line 11-15
delete

Code: Select all

body {
background: url('images/blocks-bk.jpg') repeat 0 0 #ffffff;
background-repeat:repeat;
background-position: top center;
}
and add

Code: Select all

body {
background-color: #fff;
}
#body {
background: url('images/blocks-bk.jpg') repeat 50% 0 #fff;
}
and also delete Line 1

Code: Select all

body{} 
„Bevor du den Pfeil der Wahrheit abschießt, tauche die Spitze in Honig!“   👉 Ludwig's XH-Templates for MultiPage & OnePage

kmsmei
Posts: 93
Joined: Tue Nov 03, 2009 9:03 am

Re: Template - cmsimple.pw - Blocks

Post by kmsmei » Thu Mar 05, 2015 2:27 pm

Yep, that's it!
Thanks

Post Reply