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

The Hunt For the Ultimate Free...

I've been a hard-core Untangle fan for several years now, but I recently wanted to explore other firewall options.  Being wrapped around a commercial product, U...

Joomla - How to Modify RSSocia...

RSSocial is an awesome free Joomla extension I use to display social media icons on my site.  Since it uses the Fontello Zocial font kit, I figured out how to m...

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...

How To Build an Ubuntu Web Ser...

The following is a task outline for building an Ubuntu-based web-server to run Joomla and JomSocial.  I created this for my own notes, so apologies if it's...