Skip to main content

Installing and setting-up Drupal with Omega(960 grid)

This guide will show you how to install and setup a omega profile in Drupal

Step 1

Install needed modules
http://drupal.org/project/omega_tools
http://drupal.org/project/omega
http://ftp.drupal.org/files/projects/ctools-7.x-1.2.zip

Enable modules
Enable the modules "Omega Tools" + "ctools"


Step 2 

Goto Appearance -> Create new Omega subtheme.
Enter a name and leave the other fields on the default.

Select Enabled and Default theme in the last step


Step 3

If you visit your homepage it should now look like this.





Comments

Popular posts from this blog

Review : The new Pushtape Installation profile for Drupal 7 - Yay or nay?

AuthorRank: Google Have you heard of Pushtape?  Don't worry me neither.  But after this blog post we will definitely be sure if its a Drupal yay or nay.  The reason I chose this Installation profile as the theme for my post is simple, to make sites for bands in your community is an easy way to get your foot in the web development scene if you are just starting out.  All band sites basically works in the same way which means that you can just duplicate your site structure every time. OK so here we go. Pushtape is a new Installation Profile for Drupal 7 that focuses on musicians, it comes supplied with a discography framework, you can very easily post new events like shows, there is a custom photo gallery where you can upload multiple photos as a set and of course a nice looking news type blog for all those quick updates. The installation was really easy, clean, very well customized and quick. I use WebMatr...

Application development environment setup

Setup for application development right click and save images for bigger version Installing Java JAVA JDK Download In my experience I have found that starting your enviroment setup with java is best. In the system variables I made a new variable called it JAVA_HOME , and I set the value to: C:\Program Files\Java\jdk1.7.0_79 . After that, I edited PATH , which is also in the system variables and I added : ;%JAVA_HOME%\bin . In command prompt enter javac -version, if you see a return message javac 1.7.0_79 or something similar you can continue, I cant tell you how important it is to get this right, just know that things will go wrong at unexpected times. Installing Android SDK ANDROID SDK download List item In the system variables I made a new variable called it ANDROID_HOME , and I set the value to: C:\Program Files (x86)\Android\android-sdk . After that, I edited path , which is also in the system variables and I added : %ANDROID_HOME/tools% %ANDROID_HOM...