Comment on Stallion WordPress SEO Theme by SEO Dave.

WordPress SEO Theme If you mean the navigation links below the header area they are completely CSS based. In the style-delicate.css file find:

.navigators ul {
list-style: none;

And you are in the right place to find the CSS to edit. As you can see there’s a lot of CSS code for generating the dropdown menus and colours (all the lines starting “.navigators”). I think it would be a major undertaking to convert those links to image links and maintain the dropdown menu etc… I don’t think I’ve seen a WordPress site do this?

If you play around with

.navigators a {
background: #ECECEC;
background: -moz-linear-gradient(#ECECEC, #F9F7F7);
background: -o-linear-gradient(#ECECEC, #F9F7F7);
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ECECEC), to(#F9F7F7));
-webkit-box-shadow: rgba(0, 0, 0, 0) 0px 1px 2px;
-moz-box-shadow: rgba(0, 0, 0, 0) 0px 1px 2px;
box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 2px;
border-top: 3px solid #ECECEC;
color: #808080;

This generates the gradient colours, maybe adjusting them will give you something close to what you want to achieve. Looks like you’ve figured this bit out for yourself :-)

The navigation.gif image doesn’t do what you think, for some colour schemes it’s the background image for the sidebar headings, so goes behind Categories, Links, Meta etc… As it happens that file isn’t used by Delicate, used CSS instead because the colours are simple.

The top menu navigation area would be difficult to convert to what you want, dropdown on the side, you’d probably be better building something more customised using the Custom Menu System under “Appearance >> Menus” and use the custom menu on a sidebar via “Appearance >> Widgets” and create some CSS for it. Or even use Text Widgets under “Appearance >> Widgets” if you are happy to loose some of the dynamic nature of the WordPress sidebars.

With Text Widgets you could generate a side menu similar to your other site, build the HTML as you want it linking to the pages you want to link to etc…. and add it as one or more Text Widgets to the Left or right sidebar widget area. You’d need to switch layouts to one of the 300px wide layouts under “Stallion >> Layout Options” to have the left or right sidebar area available.

With regards which layouts to use, I like the 300px wide single sidebars. On mixing things up through a site, I’m working on the Stallion 7.0 update which extends the WordPress template system. If you’ve played around with the Static Page Template system you’ll be severely disappointed WordPress core doesn’t use the same template system for Blog Posts! In Stallion 7.0 this is possible, every Static Page and Blog Post can choose a different template. Also I’ve added category templates, these generate different outputs based on category template files for each category. And I’ve added more control over widgets, currently when a widget is added to a widget area it’s shown sitewide, in Stallion 7.0 each widget can be included/excluded from pretty much every type of page type.

I’ve not added the ability to select the different Stallion layouts on a page by page basis, but want to in a future update. In Stallion 6.2 I added a Static Page/Blog Post Template (called “Static Page Blank Sales No Sidebars” filename page-sales.php) that overrides the selected layout.

Basically it’s a file that contains the content of header.php, page.php, sidebar.php and footer.php with the layout set to no sidebars (1000px wide – file style-1000.css), the left and right sidebar code is removed (so the left and right sidebar widgets don’t load at all) and the header code cut down. The idea is for users to paste an entire page into the WordPress edit form (hence sales page). This concept could be used now to generate templates for all the layouts, but without stripping out all sidebars and header code. I didn’t do this in Stallion 6.2 because the template system only works for Static Pages and most content on a WordPress site is added via Blog Posts (a lot of work for little usage). In Stallion 7.0 it’s worth creating templates like these, so might if I find the time make a start on this soon.

I’m trying to get Stallion 7.0 released this month, it’s been a LOT of work and because there’s been so many new features it’s meant a LOT of bug hunting, so these new features (and more) are coming soon.

David