Hi,
I use acquia slate for www.travellinglightcircus.com and it looks great so thanks to all for this great theme and all the work you put into it.

I've upgraded to v3 from v2 and now have the following layout issues:

#1: My primary links menu now appears above my logo and I can't remember how I moved it in v2. It's not a blocks issue as I don't have primary links block enabled. If you look at the site you'll see what I mean; I'd like the links to be below the logo.

#2: on most of the pages the left sidebar block (a couloir slideshow) appears correctly, with content to the right. On some pages though, mostly the gallery images, the content moves below the left block and doesn't look so good, for example:

http://travellinglightcircus.com/big-chill-2010/116

Once this page or similar is visited, the whole site then gets viewed with the content below the couloir slideshow. ANy ideas why this is happening and how I can fix it? I don't want to lose the slideshow block!

Thanks in advance,
Andy

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

jeremycaldwell’s picture

Status: Active » Postponed (maintainer needs more info)

Hello Andy, below are some steps to get the changes made you are looking for.

1. To get the primary menu to load below the logo you will need to open the theme's page.tpl.php and make a couple changes. Search for this bit of code:

<?php print theme('grid_block', $primary_links_tree, 'primary-menu'); ?>

Cut that code out and place it below the if statement for the header site info code right below it. So your primary menu code should now load right below this line of code:

</div><!-- /header-group-inner -->

That will get the header group to load first then your primary menu.

2. This appears correct to me using FireFox. Can you post a screenshot of the issue you are seeing? And what browser are you using?

BiggerBang’s picture

FileSize
89.96 KB
86.29 KB
111.84 KB

Hi eternalistic,

#1 = fixed. Thank you :-) But could you also tell me how to align the menu in the centre of the page??

#2. I'm using Firefox 3.6.8 on XP. Here are 2 grabs of my browser. The file 'correct layout.rtf' was looked at first, then I clicked on 'The Big Chill 2010' and I got the screen shown in wrong layout 01. **Note also how the text size of the primary links has got smaller**
I then clicked on 'galleries' on the primary links and ended up with the screen shown in wrong layout 02, which has changed from correct layout. Weird!

It seems to stay with this wrong layout until I clear cache and then navigate to a different page, clearing cache and refreshing doesn't change anything.

Andy

jeremycaldwell’s picture

Status: Postponed (maintainer needs more info) » Active

Hey Andy, hope these help.

1. This bit of CSS should center the primary menu for you.

#primary-menu.block {
  float: none;
  margin: 0 auto;
  width: 400px;
}

2. Not sure about this one though.. maybe try another browser to see if it behaves the same there too.

stephthegeek’s picture

Status: Active » Closed (fixed)