“Full moon” Documentation by “Alex Gurghis” v1.0


“Full moon”

Created: 01/06/2011
By: Alex Gurghis
Email: me@alexgurghis.com

Thank you for purchasing my theme. If you have any questions that are beyond the scope of this help file, please feel free to email via my user page contact form here. Thanks so much!


Table of Contents

  1. HTML Structure
  2. CSS Files and Structure
  3. JavaScript
  4. PSD Files
  5. Sources and Credits

A) HTML Structure - top

This theme is a fixed layout with two columns. All of the information within the main content area is nested within a div with an id of "contentWrap". The sidebar's (column #2) content is within a div with an id of "column". The general template structure is the same throughout the template. Here is the general structure.

HTML Structure

If you would like to edit the color, font, or style of any elements in one of these columns, go to folder css and open files style.css and main.css. If you find that your new style is not overriding, it is most likely because of a specificity problem. Scroll down in your CSS file and make sure that there isn't a similar style that has more weight.

I.E.

	#contentWrap {
width: 940px;
background-color: #ffffff;
padding-top: 20px;
float: left;
}

So, to ensure that your new styles are applied, make sure that they carry enough "weight" and that there isn't a style lower in the CSS file that is being applied after yours.


B) CSS Files and Structure - top

I'm using two CSS files in this theme. The first one is a generic reset file. Many browser interpret the default behavior of html elements differently. By using a general reset CSS file, we can work round this. This file also contains some general styling, such as anchor tag colors, font-sizes, etc. Keep in mind, that these values might be overridden somewhere else in the file.

The second file contains all of the specific stylings for the page. The file is separated into sections using:

	/* Main settings */

	some code

	/* Menu */
	
	some code
	
	/* Submenu */
	
	some code
	
	/* SUBSUB Menu */
	
	some code

  /* sidebar menu */

  some code
	
	etc, etc. 

If you would like to edit a specific section of the site, simply find the appropriate label in the CSS file, and then scroll down until you find the appropriate style that needs to be edited.


C) JavaScript - top

This theme imports three Javascript files.

  1. jQuery
  2. Twitter api
  1. jQuery is a Javascript library that greatly reduces the amount of code that you must write.
  2. In addition to the custom scripts, I used the some script to call the tweets. The script is placed on bottom of the page. There are two spots were the tweets are called, one in maine content (two-third wide) and second spot on sidebar (one third wide). There are two api calls for both spots:
    <script src="http://www.twitter.com/statuses/user_timeline/agurghis.json?
    callback=twitterCallback1&amp;count=1" type="text/javascript"></script>
    
    <script src="http://www.twitter.com/statuses/user_timeline/agurghis.json? callback=twitterCallback2&amp;count=1" type="text/javascript"></script>

D) PSD Files - top

I've included two psds with this theme:

  1. The logo
  2. The list bullets

E) Sources and Credits - top

I've used the following images, icons or other files as listed:

I've used the following scripts:.


Once again, thank you so much for purchasing this theme. As I said at the beginning, I'd be glad to help you if you have any questions relating to this theme. No guarantees, but I'll do my best to assist. If you have a more general question relating to the themes on ThemeForest, you might consider visiting the forums and asking your question in the "Item Discussion" section.

Alex Gurghis

Go To Table of Contents