Add multilanguage support to Joomla site

Posted: September 2nd, 2012 | Author: | Filed under: web | Tags: , | No Comments »

Recently I’ve added multilanguage support to my Joomla site (Shall We Learn)

 

I was able to do so by following the following two resources:

1. Step-by-step documentation from Gavic Pro

http://www.gavick.com/documentation/questions/configuration-multilanguage-site-with-joomla-1-7/

2. Tutorial from Joomla YouTube Channel


Highlight Code Syntax in WordPress Tips

Posted: January 26th, 2011 | Author: | Filed under: web | 14 Comments »

To high-light the syntax in WordPress, install WP-Syntax and wrap code blocks with<pre lang="LANGUAGE" line="1"> and</pre>, where LANGUAGE is

Read the rest of this entry »


Turn on Code Highlighting in Joomla CodeCitation Plugin

Posted: May 2nd, 2010 | Author: | Filed under: web | No Comments »

Just got CodeCitation to work on my Joomla site and here are the steps I took:

Read the rest of this entry »


Add a NextPage button on WorldPress Editor

Posted: September 17th, 2009 | Author: | Filed under: web | 1 Comment »

Open the functions.php in your theme directory. For example, if your theme is tigra, then open the functions.php in <wordpress-path>/wp-content/themes/tiga.[...] Read the rest of this entry »


Setup a Joomla Site

Posted: September 17th, 2009 | Author: | Filed under: web | 19 Comments »

In this guide, I will cover how to set up a Content Management Site powered by Joomla 1.5.x. This document is by no mean complete, but the section that shows one how to embed a flash MP3 player as a custom module should be very helpful to many.

Read the rest of this entry »


Add Scroll Areas to WordPress Posts

Posted: August 19th, 2009 | Author: | Filed under: web | 7 Comments »

I wanted to post some codes to several posts and set out to find ways to include longer code snippets on WordPress posts. Here are the steps I took to enable scrolling area for code snippets:

1. Go to your WordPress theme editor and either enable external style.css if not already enabled. I use tiga theme and had to enable the external style sheet.

2. Add the following code snippet to the style.css of your current theme

div.scroll {
  height: 200px;
  width: 300px;
  overflow: auto;
  border: 1px solid #666;
  background-color: #ccc;
  padding: 8px;
}

3. Then create a new post and paste the following in HTML mode

<div>
<p>This is a scrolling are created with the CSS property overflow.</p>
<p>
<span style="color: red;">This is red color</span>
Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh.</p>
<p>This is a normal paragraph.
<span style="font-weight: bold; font-size: 22px;">This is big bold text</span>
</p>
<p>This scrolling are can contain normal html like <a href="index.php">link</a></p>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh.</p>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh.</p>
</div>

This is a scrolling are created with the CSS property overflow.

This is red color
Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh.

This is a normal paragraph.
This is big bold text

This scrolling are can contain normal html like link

Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh.

Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh.

Reference:

http://www.domedia.org/oveklykken/css-div-scroll.php