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 Blue...
I'm obsessed with bluetooth. So much so that I've been hunting for heaven's own pair of bluetooth headphones for my Tokyo subway commutes. I'm already on my 5...
Joomla Running on Nginx and Ub...
What follows is an outline I compiled while building an Ubuntu server for running the Joomla CMS on the Nginx web server. NOTE: Ubuntu 14.04 LTS was used for th...
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...
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...