This is kind of strange. if you are using fckeditor the blue background jpg (body-bg.jpg) shows at the top of the edit box making it difficult to see anything in the first few lines of the textarea. Like if you are creating content or whatnot.

Otherwise it's a very cool theme !

CommentFileSizeAuthor
bg_fckeditor.jpg30.94 KBascii122

Comments

info@zrix.com’s picture

Please add this class="<?php print $body_classes; ?>" in body tag of your page.tpl so that it looks like this:-

<body class="<?php print $body_classes; ?>" >

And then please change the body class css appearing in the style.css from

body {
  background:#f3f8ff url('images/body-bg.jpg');
  background-repeat:repeat-x;
  color:#333333;
  font-family:Georgia;
  font-size:12px;
  margin:0;
  padding:0;
  line-height:21px;
  }

to this: -

body.front, body.not-front {
  background:#f3f8ff url('images/body-bg.jpg');
  background-repeat:repeat-x;
  color:#333333;
  font-family:Georgia;
  font-size:12px;
  margin:0;
  padding:0;
  line-height:21px;
  }

It should be working fine now.