It looks like a great theme, but twice I have had this happen that suddenly the page indents itself. Only one does it, but when I try and add another page it does the same thing. I have not touched any of the CSS or any of the template files and the only modules added are nivo slider, superfish and contact form. All pages are basic pages.
Flushed the caches and nothing changes. The only solution is to dump the database and start again.
Shame really as it looks so clean.
Image supplied to show what I mean.

CommentFileSizeAuthor
likable_error.png107.93 KByoungros
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

katrin’s picture

Hi, youngros,

Please send your site and dump your database an my email. I'll help you find your bug.

youngros’s picture

Hi Katrin, thanks for your reply.
The site is only running locally, but I will email you the database.
I have noticed that if I put content into the page that fills the width of the page, the page will then move back to the right, but as soon as I delete the content of the page it reverts back to its indented state as though it is expecting there to be a region in use on the left of the page.

youngros’s picture

I've also noticed that if the content doesn't fill the region then the regions all stay to the left and not fill the entire page. If adding a region above or below they will align left instead of being centred.

adebayopeter’s picture

please I have the same problem, how does one resolve this issues.

fifi2004’s picture

Hello Katrin,

Exactly the same bug for me : the first page is displaying as expected, but other pages have a space on the left (just like if left sidebar was filled but it's empty), and the right sidebar does not come on the right of the main content, but below the content (on the right).

I really like your theme and would like to use it for a non-profit organization, but as is it's not possible. I would appreciate a lot if you could have a look. Could send you URL (in private).

Thanks,

Philippe

amabdelsalam’s picture

Hi,

After some debugging, I found this case happens because of the Nivo slider. The nivo has a code that is executed in the front page only, which is:

(in page.tpl.php of the theme)

<?php if($is_front): ?>
	<div id="slideshow"><?php print render($page['slideshow']); ?></div>
<?php endif; ?>		

You will note that the front page is displaying OK, but other pages (which don't display the Nivo slider) are indenting the whole page

As a quick fix:

<?php if($is_front): ?>
			<div id="slideshow"><?php print render($page['slideshow']); ?></div>
		<?php else: ?>			
			<div id="slideshow"></div>
		<?php endif; ?>		

Of course this requires some debuging to see why the page indents when the #slideshow tag is missing from the page.