How do I get an RSS feed to work

You seem to have an invalid feed. There’s a <center></center> tag at the beginning opening the file instead of <?xml version=”1.0″ encoding=”UTF-8″?>. You need to fix that. I don’t know where that comes from, probably from some post being not well formatted, or from some plugin or your theme. Try disabling all your plugins and … Read more

Dropdown menu’s fighting with each other [closed]

The problem is that though your sub menu is set to opacity: 0, its still displaying, just transparent. So when you hover any area where a submenu is present, you’re triggering #access ul li:hover which sets the opacity of the submenu with #access ul li:hover > ul. Try setting adding visibility: hidden to #access ul … Read more

How can I change how my tag pages display?

First, the root of your issue is that WordPress has two very different template tags to output posts: the_content() and the_excerpt(). There are a lot of nuances with these and many get details wrong, I did my best to get everything right in post at my blog if you are interested that Make sense of … Read more