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

How to Modify JomSocial to Sup...

The open source stuff that JomSocial uses to convert and render video uploads (ffmpeg) also supports audio files.  I thought it would be cool to modify JomSocia...

The Hunt for the Ultimate Free...

I spent some time researching top-rated, but free antivirus security software for both Mac and Windows.  There are far more free antivirus software solutions ou...

Joomla - Checklist for Moving ...

* Remove web directory protection entries * Rsync files to the new location * Change Apache root folder settings * Redo web directory protection entries * U...

Why I Hate the Apple Store

I go to the Apple store in Ginza looking for Snow Leopard (for a client). Of course, there's no sign indicating what is on each floor because signs would dir...