no jocking!


OVER 100 LAYOUTS AS OF 01/07/06!!!

Latest Update: New Layouts Section Added: NARNIA

Layout by guitarchik_layouts
guitarchik_layouts
read my profile
sign my guestbook

Visit guitarchik_layouts's Xanga Site!

Name: Amanda
Gender: Female


Message: message meEmail: email me
Website: visit my website
AIM: hXc chik
MSN: guitar_chik06@hotmail.com
Yahoo: babi_manda_gurl


Member Since: 5/24/2005

SubscriptionsSites I Read
luvable_iconsx3
guitar_chik06

Blogrings
LAYOUT PROVIDERS
previous - random - next

|L|a|y|o|u|t|S|4|Y|o|U|
previous - random - next

layouts<3
previous - random - next

christianrock.net
previous - random - next

Layouts that rock my sox
previous - random - next

*WE MAKE LAYOUTS*
previous - random - next

i'm a layout MAKER, not a layout FAKER.
previous - random - next


Posting Calendar

|<< oldest | newest >>|
view all weblog archives

Get Involved!

Suggest a link

Recommend to friend

Create a site

Saturday, January 07, 2006

Hi!  Welcome to Guitar Chik Layouts!  Look around, have fun, and make sure to follow the rules!  (in the entry below this one)  Just click on the name of a layout that looks interesting and a preview will pop up. 

Installing a Layout for Dummies:  If the layout does have a textbox:  (1)Click your mouse inside the textbox. (2)Press CTRL+A.  (3)Press CTRL+C.  (4)Go to your look and feel.  (5)Select "Insert your own header HTML."  (6)Click in that box.  (7)Press CRTL+V.  |  If the layout doesn't have a textbox:  (1)Highlight the code with your mouse.  (2)Follow steps 3-7 for layouts with a textbox.

Scroll down to the entry below the rules for codes.  Enjoy! 


.:LIGHT COLORS:.

.:DARK COLORS:.

.:MY B&W PHOTO ART:.

.:GUITARS:.

.:THEMES:.

.:CHARACTERS:.

.:BANDS/ARTISTS:.

.:LYRICS:.

.:EXPRESSIONS/QUOTES:.

.:NARNIA:.

.:CLASSES:.


Thursday, July 21, 2005

RULES

~ I am a Christian and I am Straight Edge, so I try to keep these clean. All of the band layouts are Christian bands.
~I don't do requests!
~No jocking! I'm not gonna make any threats about it, because being a jocker makes you look cheap enough without my help.
~If you use one of my layouts, please don't take off the link to this site.
~If you use one of my layouts, please subscribe to me.
~Please don't use ad remover codes with my layouts, it doesn't work out very well.
~I try to give credit where credit is due, but if I forget where I got something, I'll just say "this isn't mine." Like the banner, I forgot where the background came from. It isn't mine.
~I take constructive criticism, so feel free to give it.
~It's a good idea to subscribe to the layout you're using in case I update it.


Tuesday, June 21, 2005

CODES

Looking for a code? Want to know how to make your text do crazy stuff, or just how to post an image? Want to have awesome link effects without using a whole layout? Browse through these codes to find what you're looking for!  In most of the codes, something capitalized is something to customize.  If you have any questions, leave a comment and I'll try to help you.  Enjoy!

**=website stats
*=custom header
(no mark)=wherever you want it

Simple Text Codes

Change all bold text on page*

Change all italics text on page*

Change all underline text on page*

Posting an Image

Customizing Links Code*

Colorful Scrollbar Code*

Music*

Buttons

Rename "eprops," etc.**
***NOTE***Place this at the beginning of the code: <script language="javascript">
And this at the end of the code:  </script>

Replace Profile Words**
***NOTE***Place this at the beginning of the code:  <script type="text/javascript">
And this at the end of the code:  </script>

Six Direction Marquee Boxes

Replace link bar at the top*

Music Drop-Down List

<object id="darkplayer" codeBase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701" type="application/x-oleobject" height="0" standby="Loading Microsoft Windows Media Player components..." width="0" classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95">
<param NAME VALUE>
<param NAME="ShowControls" VALUE="0">
<param NAME="ShowStatusBar" VALUE="0">
<param NAME="ShowDisplay" VALUE="0">
<param NAME="DefaultFrame" VALUE="Slide">
<param NAME="Autostart" VALUE="1">
<param NAME="Loop" VALUE="True">
</object>
<form name="form">

<p style="text-align: center">
<select style="FONT-SIZE: 8pt; BACKGROUND:#transparent; WIDTH: 150px; COLOR: #33666; font-face: verdana" name="playlist" size="1">
<option value="0">SONG NAME HERE</option>
<option value="1">SONG NAME HERE</option>
<option value="2">SONG NAME HERE</option>
<option value="3">SONG NAME HERE</option>
<option value="4">SONG NAME HERE</option>
<option value="5">SONG NAME HERE</option>

</select><br>
<input TYPE="BUTTON" NAME="darkplay" VALUE="play" OnClick="play(document.forms['form'].playlist);">
<input TYPE="BUTTON" NAME="darkpause" VALUE="pause" OnClick="document.darkplayer.Pause(); playstate=2;">
<input TYPE="BUTTON" NAME="darkstop" VALUE="stop" OnClick="document.darkplayer.Stop(); playstate=2;"></p>
</form>
<script language="JavaScript">
<!--
var playstate = 1;
shuffle = 1;  // set to 0 to always play first song in list
            // set to 1 to randomly choose the first song to play
songs=new Array();
songs[0]="SONG URL HERE";
songs[1]="SONG URL HERE";
songs[2]="SONG URL HERE";
songs[3]="SONG URL HERE";
songs[4]="SONG URL HERE";
songs[5]="SONG URL HERE";

if (shuffle == 1) {
var randsg = Math.floor(Math.random()*songs.length);
document.darkplayer.FileName = songs[randsg];
document.darkplayer.scr = songs[randsg];
document.forms['form'].playlist.options[randsg].selected = true;
}
function play(list) {
if (playstate == 2) {
document.darkplayer.Play();
} else {
var snum = list.options[list.selectedIndex].value
document.darkplayer.FileName = songs[snum];
document.darkplayer.scr = songs[snum];
}
playstate = 1;
}
//-->
</script>