Japanatron Logo
After changing website templates I found that all instances of the <ul> html tag (used for bullets) no longer worked because the new template requires a class tag for its typography (e.g. <ul class="gkBullet2">).  Apparently this is common when using templates by Gavick.

So I wanted to find a quick way to replace all instances of <ul> with <ul class="gkBullet2">.  Here's what worked for me.  Go into PHPMyAdmin and execute these 2 queries:

update joomla_content set `introtext` = replace(`introtext`, '<ul>', '<ul class="gkBullet2">')

update joomla_content set `fulltext` = replace(`fulltext`, '<ul>', '<ul class="gkBullet2">')

Change "joomla" to whatever DB prefix you use.

Related Articles

My Adventures in Spam Blocking

I hate spam.  I detest it.  And I'm not talking about the scrumptious processed meat product.  I think you all know the spam I'm referring to—the kind peddling ...

The Hunt For the Ultimate Free...

My aged Netgear NAS was primed and ready for a relaxing retirement, so I pursued a befitting upgrade.  I briefly considered an out-of-the-box NAS offering from ...

How to Spot a Fraudulent Onlin...

I offer some tips on distinguishing lawful online businesses from dishonest ones. Check the site reputation and scan for malware. I compiled a list a service...

The Hunt for the Ultimate VPS ...

If IT geek-dom were a crime, I'd be on death row by now.  Fortunately, it is not; so I continue my dorky IT pursuits--the latest of which is finding a VPS cloud...