Archive for the ‘Web Design’ Category

Photoshop Tute by Blane H.


Here’s a good tutorial written by Blane for Photoshop CS4. In it he shows you how to create an interesting montage.

Photoshop Montage Tutorial (5 MB)

Blane's Photoshop Montage

Blane's Photoshop Montage

A Message from Blane:

Learn how to create a mysterious tree house in the forest using manipulation techniques in Photoshop. This tutorial focuses mainly on lighting effects. Learn how to give the appearance of nighttime, give off a glow of light, and add shadows. Gradients, clipping masks, downloading brushes, and blending modes will also be covered. Overall this is an easy tutorial that is great for beginners to learn basic tools of photo manipulation. I hope you enjoy it! Let’s begin!

Sample Design Principles and Elements Questions


Consider the following in preparation for your test:

  1. Describe the logo you created for the Earth Club.
  2. Why did you select this concept for the Earth Club logo?
  3. Explain three ways you used the visual arts elements and principles of organization to create a logo that appears trustworthy and credible.
  4. Explain three changes you made to the visual arts elements in your second version of the bumper sticker.

Center Your Web Page


It’s has been very popular to center your web page. This may change in the future to something not thought of as yet; but, you are probably looking at this post because you want your web page centgered.

Reset the Browser Style Sheet

First, browsers set their own margins, padding, text ,etc. using their default CSS page. There is lots of information on the web regarding this. For now, let’s reset the margins and padding to “0″.

*{
     margin: 0;
     padding: 0;
}

The asterisk indicates this is a universal style and tells the browsers to set this for all elements on the page.  We reset the margin and padding in order to keep the various browsers from using their own default settings and giving us fits when trying to establish our own padding and margin. There are lots of “reset” type style sheets available on the web. You might want to check them out.

Create a Wrapper

You will need a wrapper in which all the elements of your page will reside. It is where we control the centering of your web page and its contents.

 #wrapper {
     width: 960px;
     margin: 0 auto;
 }

You determine the overall width of your web page. The margin: 0 auto: sets the top and bottom margins to 0 and the side margins to auto which centers the page.

Add an Explorer Hack

We need to add an align center to the body of your web page. This fixes a fault in some Explorer pages.

body {  
     text-align:center; /*For IE6 Shenanigans*/  
}

Reset Text Alignment

Since we’ve added this align center to the body tag, we need to correct it or all text on your web page will be centered unless explicity changed with CSS. So, we add the following to our #wrapper div CSS.

 

#wrapper {
     width: 960px;
     margin: 0 auto;
     text-align: left;
}

All the Code

You should end up with the following code:

*{
margin:0;
padding:0;
}

body{
text-align:center; /*For IE6 Shenanigans*
}

#wrapper{
width:960px;
margin:0 auto;
text-align:left
}

Braves Booster Club Logo Contest


Here is your chance to design a new logo for next year’s Kamiakin merchandise. Two winners will receive a gift certificate and a t-shirt with their winning design. ONE ENTRY PER STUDENT.

Entries will not be returned and become the property of the Kamiakin Booster Club.

Finalists will be notified with final presentations being made at the Spring Sports Awards Night. Click on the link below for more information and the entry form.

 

kamiakin logo contest entry form 2012

Flash AS3 Drag and Drop Tutorials by Hannah N.



Drag and Drop Part 1: Basic Drag and Drop

 

Get Adobe Flash player

 

Drag and Drop part 2: Drag and Drop with User Feedback

 

Get Adobe Flash player

AS3 Text Area Tutorial by Hannah N.


Get Adobe Flash player

SavannahW Flash Sandbox


Get Adobe Flash player

AmberM Flash Sandbox



Instructor’s Choice 2/7/12

Get Adobe Flash player

AdresM Flash Sandbox


Get Adobe Flash player

RyanW Flash Sandbox


Get Adobe Flash player

Return top