rehzone
Forum Replies Created
-
Forum: Themes and Templates
In reply to: SEO Friendly ThemeHow about doing a search on Google, Yahoo, and MSN for the exact phrase “powered by wordpress” ?
That should give you a bunch of WP powered sites to look at. And should also give you a better idea of what works for each SE.
Forum: Your WordPress
In reply to: two new sitesI’m not a designer, but yeah, the green fuzzy gradient is kinda disturbing…
Nice pics on the .ca site though. Although I think the top graphic might take up a little too much of the screen space. I usually like top banner graphics that are a little less obtrusive. But overall, nice site.
Forum: Fixing WordPress
In reply to: Problem with javascript generated link on Firefox.You may want to contact your sponsor to make sure their javascript is compatible with FF. I don’t think it’s a WP issue.
They should be able to tell you if there’s anything in their adx.js file that may be incompatible with FF. At least you could rule that out.
I’m assuming you got the code from your sponsor. So they should also have a version that works with FFx.Forum: Fixing WordPress
In reply to: Apply CSS file to only the Index.php?Someone just asked about something related:
http://wordpress.org/support/topic/81179?replies=3For your situation, I’d save the styles for the home page in a separate file, eg. styles.css and use this code in your index.php to only include the stylesheet on that page.
<?
if (is_home()) {
?>
<style type=”text/css”>
@import url(“/stylesheet.css”);
</style>
<?
}
?>Hope that works for you.
-j