Comment on Stallion WordPress SEO Theme by SEO Dave.

WordPress SEO Theme The Stallion SEO Theme has a lot of files, the style-black-gradients.css file will be in amongst the files.

I don’t use the online WordPress theme editor because it’s a pain to keep track of changes during testing. If you are planning to a do a lot of changes best to work offline in a text editor and a local install of WordPress so when something goes wrong (nearly always does) it doesn’t break your live site.

I guess you wouldn’t know how to install WordPress on your PC so the compromise is work offline and upload the changed files using FTP. In this way you can have an offline backup as well for when things go wrong AND when you update Stallion and have to make the code changes again you have the changes in a file on your PC: all code changes are over written when you update. I’ve also made changes to the css files in the next update so you’ll want to add the changes again to Stallion 6.3 files not keep the edited Stallion 6.2 files.

Edit style-delicate.css find

#footer_stallion {
height: 50px;
padding-top: 20px;
padding-right: 20px;
border-top: 2px solid #EDEEEF;
text-align: right;
color: #808080;
font-size: 0.8em;
clear: both;
}

Change right to center

Untested, so probably won’t work exactly how you want it.

You’ll probably need the padding-right: 20px; line edited as well otherwise the centering will be off a bit (test first with 20px then try 0px).

Might be an idea for a blank css file adding to Stallion in a future update so these sorts of CSS changes can be held in a separate file, would make updates easier. Hmm, in Stallion 6.3 I’ve added the All In One SEO Pack Plugin to Stallion, I’ve kept the area where extra header code can be added.

Theoretically you could add these changes inline like this (this won’t work in Stallion 6.2 since the All In One SEO Pack Plugin isn’t part of Stallion 6.2):

<style type="text/css">
#footer_stallion {
padding-right: 0px;
text-align: center;
}
</style>

This would be unaffected by Stallion updates. I’ll check if this will work for the next update as looks like the All In One SEO Pack Plugin header code options doesn’t have a sitewide option (which is strange, you’d think a sitewide option would be the starting point).

LOL, before you try any of the above, go to Appearance >> Widgets, add a text widget to the Fifth Footer Area, add the code below to the main form box, add nothing to the title part.

<style type="text/css">
#footer_stallion {
padding-right: 0px;
text-align: center;
}
</style>

It should work the same as making the changes suggested above and will survive updates.

David