Pink Poogle Toy Forum

The official community of Pink Poogle Toy. Bear with me while I tweak everything
It is currently Wed Sep 16, 2026 8:12 am

All times are UTC




Post new topic  This topic is locked, you cannot edit posts or make further replies.  [ 5 posts ] 
Author Message
 Post subject: I need some html help
PostPosted: Tue Aug 10, 2004 12:36 am 
PPT Toddler
PPT Toddler
Offline

Posts: 175
Joined: Wed Jul 21, 2004 1:23 pm
Yahoo Messenger: sdcinglis
Location: That place next to that thing that makes that stuff for that guy who does that thing.
I have an image that I want to make a blog out of but I don't know how tho place the textareas on the image. I also don;t know how to make them transparent. here is the image.
Image

_________________
<img src="http://img.photobucket.com/albums/v317/Cyborg771/Avatars/Forum%20Images/nnnban5.gif">


Top
 
   
 Post subject:
PostPosted: Tue Aug 10, 2004 1:47 am 
PPT God
PPT God
Offline

Posts: 1723
Joined: Tue Jun 01, 2004 5:30 pm
Is this a guild blog or a web blog? if it's a guild blog I can code it no problem for you.


Top
 
   
 Post subject:
PostPosted: Tue Aug 10, 2004 4:45 am 
PPT Toddler
PPT Toddler
Offline

Posts: 194
Joined: Sun Aug 01, 2004 10:34 pm
Website: http://rewix.net/dobby/
Location: New Zealand
The image won't show up for me :(.

_________________
vortex |myspace |dART


Image<-- By Silja


Top
 
   
PostPosted: Tue Aug 10, 2004 7:31 am 
PPT Baby
PPT Baby
Offline

Posts: 94
Joined: Sun Jun 06, 2004 11:39 am
Website: http://www.neofx.org
Location: Wading through code...
Assuming you mean coding as in shop blogs then I've a blog tutorial here. If you mean guild layouts though, you could try learning the basics off that tutorial and applying it to a guild layout. -.0

_________________
Image
There is no good or bad side, just two sides holding different views.


Top
 
   
 Post subject:
PostPosted: Tue Aug 10, 2004 9:07 am 
PPT Toddler
PPT Toddler
Offline

Posts: 162
Joined: Sun Aug 01, 2004 11:14 pm
ICQ: 41960331
Website: http://ibisaeg.mine.nu
Location: Sweden
That guide uses tables, which are not meant to be used in designing, only to format data (as in Excel, you know with all the columns etc :P)
Use div layers and CSS instead, gives you better control over the layout and lesser and cleaner code :)

http://www.w3schools.org to learn more about (X)HTML and CSS.

EDIT: I checked the images in your photobucket account, I would say about 3-5 divlayers.

EDIT again: http://ibisaeg.mine.nu/andras/Bloglayout

Ok, 2 divlayers then ;P
Although I think that the images is way to small, if you're gonna make a site out of them, I sit with 1280x960, and my winamp is bigger than that thing ;P And it was the biggest of the three I could find.

XHTML:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="sv">
<head>
<title>Something</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link href="css/main.css" rel="stylesheet" type="text/css" />
</head>
<body>
 <div id="container">
  <div id="content">Hohoho, I can write things here! and it all wraps 'n stuff!! :D
  </div>
</div>
</body>
</html>


CSS:
Code:
body {
   font-family: Verdana, Arial, Helvetica, sans-serif;
   background-color: #FFFFFF;
   font-size: 12px;
}

#container {
   margin: auto;
   width: 425px;
   height: 300px;
   background-image: url(../images/blog1.gif);
}

#content {
   margin: 4px;
   top: 6px; /* Puts this div 6px downwards from the div its in. */
   left: 229px; /* Puts this div 229px from the left of the div its in. */
   height: 289px;
   width: 190px;
   position: relative; /* Relative position to the div its in, instead of the whole site (absolute). */
}

_________________
http://ibisaeg.mine.nu
<silja rox my sox>... somewhat :P


Top
 
   
Display posts from previous:  Sort by  
Post new topic  This topic is locked, you cannot edit posts or make further replies.  [ 5 posts ] 

All times are UTC


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
Jump to:  
Powered by phpBB® Forum Software © phpBB Limited