Graphic designer since before the Internet. Started with newspaper paste-up; then art director for advertising agency in Reno, NV; and now freelancer designing marketing materials, print-on-demand t-shirt art, websites, and social media graphics.
Similar Posts
Joomla – Making a Custom Home Page
Giving the Front Page a different style from other pages – from Joomla Docs I specifically used the following CSS method from the above post: Assigning CSS style on the body element in your template Edit the file “index.php” in your default template directory Then, you can write CSS rules which style the component differently…
Joomla SCLogin – Change Register Button Text
Joomla login module: SCLogin Enhanced Login (as of version 7.0.3) Project: Change register button’s text from the word “Register” to the word “Join” In order to avoid this edit from being overwritten when SCLogin gets updated, locate SCLogin’s language file: root/language/en-GB/en-GB.mod_sclogin.ini Copy line 8: MOD_SCLOGIN_REGISTER_FOR_THIS_SITE=”Register” And paste it in the Language Overrides file, located at: root/language/overrides/en-GB.override.ini Then…
Joomla – Creating a Hidden Menu Item
Create a Joomla Hidden Menu Item Specific goal: Integrate JomSocial into PayPlans membership signup process. MUST have functioning JomSocial Menu Item (so PayPlans member registration works), BUT we don’t want this Menu Item displayed in the Menu. Solution: Hidden Menu, with a Menu Item inside. Resource: How to control module display when linking to an article with no…
Joomla – Find Specific PayPlans Fields In MySQL Database
Goal: Delete ALL PayPlans No-status (status=0) memberships. In MySQL, locate all PayPlans memberships that have status=0. (The No-status (status=0) memberships are a broken remnant of the previous database migration): Open phpMyAdmin Navigate to payplans_subscription table Click SQL tab Run the following script: SELECT * FROM `xxxx_payplans_subscription` WHERE status=0 Also check the following PayPlans tables to make sure a membership is fully…
- CSS | Joomla | Website design | WordPress CSS
CSS URL Path to Background Image / or ./ or ../ or ../../
I always forget the CSS URL path to background images. Thanks TechGnome from the WordPress.org Support Forums. If the path to CSS (or any file for that matter) leads off with the / that means go to the root and begin look there. A single DOT in front of the slash means look in current dir, and…
Joomla Site Hacked – Resources
Joomla site got hacked. These are the resources I’m using to fight back! Unhacking Your Joomla Site – Akeeba Backup Joomla Security Checklist / Your have been hacked or defaced – Joomla.org How To Fix A Hacked Joomla Website – The Theme Expert How to fix “hacked by Hmei7″ on Joomla web site – Joshpate…