First off, I'd like to thank the developer for such a beautiful theme. Thank you.

There are just a few small issues that would make the release perfect:

1.) Primary Links do not seem to be working by default. They work with all my other themes.

2.) The mission statement box only shows the image "missionbg.png" but not "missiontop.png" or "missionbtm.png"

3.) The text inside the mission statement is displayed too wide to fit in it's box.

I'm fairly sure that these are theme related issues, but if I need to change any of my site settings, I would appreciate the advice as well. I don't seem to be css savy enough to troubleshoot this myself. Thanks for your effort and generosity.

CommentFileSizeAuthor
screenseoposition.jpg20.62 KBwhosoever
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

whosoever’s picture

My website is http://www.casefamily.com if that helps.

trueMarketing’s picture

Hello,
We originally created the SEO Position theme for Drupal. I hope this helps you a little bit. Please post a reply if it doesn't.

We should've been a little more clear about the "mission" CSS and what needed to be done to display this correctly. I'll see about altering this for other users/downloads of the theme. But in the meantime you should simply do this:

1) Go to Admin --> Settings
2) In the field for your mission text, drop in a little HTML to fix the layout problem, example (this should all go into the mission text field):

<h2>A Nifty Little Title Header</h2>
<p>Some text here like whatever you want to display to your readers in the mission box.</p>
<div class="close-mission"></div>

So, you'll include the <h2> and <div> snippet to pull in the "missionbtm.png" image. You should also wrap your text using

just as the example shows above.

This should clean up your layout problem for the mission box.

I'll see what we can do to change the CSS/mission settings to automatically wrap around the text by default.

Also, we are using "secondary links" within the SEO Position theme - not primary links. I left primary links out of the theme because we may add small text links at the top above the header image at a later date. That would technically be the "primary links" location.

Our page.tpl file includes the code below. Make sure your secondary links are on or that you switch your primary links to secondary links for them to display correctly:

<!-- END HEADER, BEGIN NAVIGATION -->
<div id="nav">
<div id="subNav">
  <?php if (is_array($secondary_links)) : ?>
  	<?php $i = 0;foreach ($secondary_links as $link) : if ($i==0) {?>
			<?php
			} else {?>
			<?php
			}?><?php print $link ?>
        <?php $i++; 
		    endforeach; ?>
      <?php endif; ?>
  </div>
</div>
<!-- END HEADER, BEGIN FAR LEFT MAIN COLUMN -->

Please let me know if this helps you out.

Thanks
Brian
SEOposition.com
SEO Position Marketing

nickl’s picture

Status: Closed (won't fix) » Fixed

Fixed mission statement which now stays within the background region.
Theme still does not support primary links at this stage.

Anonymous’s picture

Status: Fixed » Closed (fixed)