How Web Development can Help You as a Student

Oct 01 | ( 3 ) Comments

Learning to code and develop websites or applications can be a difficult process, but when you couple in the pressures of being a student in school, it makes everything that much more difficult to grasp and shove into all the empty nooks and crannies of your mind.  You can easily ease off the pressures of school by applying some of the same disciplines you gained when learning your programming language.

Keep Reading…

How to Code a Website - part 2

Aug 30 | ( 4 ) Comments

This is part 2 of the video series on how to code a website (taking a template from image form to it’s XHTML/CSS version).

Go back and Watch part 1 if you haven’t!

Watch the Video!

Keep Reading…

CSS only DOM tabs

Jul 24 | ( 2 ) Comments

Well through some CSS endeavors to find the golden stylesheet (personal goal of the ultimate design), I have created a CSS only DOM tab system. Meaning when you click on a tab the content changes. Usually this is done with Javascript/jQuery, but since I don’t know how to code in either one of those, I created a CSS method.

View the working Example

Keep Reading…

Centering Text using “line-height”

Jul 24 | ( 0 ) Comments

To center a line a line of text can be very troublesome and drawn out affairs. But you can simple use the “line-height” element of CSS to set the text’s height without distorting the font. To apply the rule use the format of “line-height: *height of container*;“. Change *height of container* to the height of the div or whatever that is holding your text that you’re centering the text in.

#example {height: 100px;}
#example p {line-height: 100px;}

Keep Reading…