• Help
  • Search
  • Login
  • Register
  • Home

Forum: web design and graphics community

  Show Posts
Pages: [1] 2
1  Web Development / Coding / dcounter and pcounter help on: March 07, 2008, 03:30:26 PM
Hi all,

I have moved over sever and is re-doing my layout database, but for some reason its now not working.

When I press on Preview I get errors
Warning: Cannot modify header information - headers already sent by (output started at /home/blarblar/public_html/layouts/preview.php:1) in /home/blarblar/public_html/layouts/preview.php on line 16

Same for when I press download
Warning: Cannot modify header information - headers already sent by (output started at /home/blarblar/public_html/layouts/download.php:1) in /home/blarblar/public_html/layouts/download.php on line 16
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /home/graficad/public_html/layouts/download.php on line 10


preview.php
Code:
<?php 
include ('connection.php');
$id = intval($_GET['id']);
// if you did not rename 'id', leave as 'id'

$q="SELECT * from layouts where id='$id'"; //EDIT 'layouts' to your table name
$result= mysql_query($q) or die
(
"Could not execute query : $q." . mysql_error());

//Read explanation for further details on this part
while ($row=mysql_fetch_array($result))
{
$id=$row["id"];
$preview=$row["preview"];
$pcounter =$row["pcounter"];

header('Location: '.$preview);

$q="update layouts set pcounter=pcounter+1 where id='$id'"; //EDIT 'layouts','pcounter' again
$result= mysql_query($q) or die
(
"Could not execute query : $q." . mysql_error());

}

?>


download.php
Code:
<?php 
include ('connection.php');
$id = intval($_GET['id']);
// if you did not rename 'id', leave as 'id'

$q="SELECT * from layouts where id='$id'"; //EDIT 'layouts' to your table name
$result= mysql_query($q) or die
(
"Could not execute query : $q." . mysql_error());

//Read explanation for further details on this part
while ($row=mysql_fetch_array($result))
{
$id=$row["id"];
$download=$row["download"];
$dcounter =$row["dcounter"];

header('Location: '.$download);

$q="update layouts set dcounter=dcounter+1 where id='$id'"; //EDIT 'layouts' again
$result= mysql_query($q) or die
(
"Could not execute query : $q." . mysql_error());

}

?>



The code is still counting, if you can help then I would be very grateful..... I use $id = intval($_GET['id']); as its sql 5 I have also tried $id = $_GET['id'];

Thanks

Joy
2  General / General / Re: Msn list. on: July 03, 2007, 07:35:13 PM
darkangelwitch666@hotmail.com

Feel free to chat!  Smiley
3  Web Development / Advertisements / Affiliation / Re: List of All Sites! on: July 03, 2007, 07:32:08 PM
Name/Owner: Darkangelwitch666
Site Name: Grafica Designs
Site Url: http://graficadesigns.org/
4  Web Development / Advertisements / Affiliation / Re: Grafica Designs on: June 22, 2007, 09:29:44 PM
I have edit this post just to lets you all know that Grafica as moved over to its own domain and also been renamed alittle.

Its now called Grafica Designs and the URL is http://graficadesigns.org/

Also it as a new layout Smiley
5  Web Development / Coding / Re: counter help please. on: May 09, 2007, 10:31:33 AM
Ok on the
Code:
<?php

echo("Register globals \$id output: ".$id."<br />");
echo(
"\$_GET globals output: ".$_GET['id']."<br />");

?>


I got this
Register globals $id output:
$_GET globals output: 1

I place the
Code:
error_reporting(E_ALL);
in the Wallpaper.php and got no errors..

6  Web Development / Coding / Re: counter help please. on: May 09, 2007, 10:07:08 AM
Thanks Vangs!

I doing this on a new host which is MySQL version 5! I removed the line above but still the same...
I have download the php.ini file and will have a look, but a bit worried about messing with it as I have never done it before!...


7  Web Development / Coding / counter help please. on: May 09, 2007, 09:46:17 AM
I'm useing the counter that I got off forgotten-designs which is no longer around! When I click the link its opens in a black page. But it works on my layouts...

Code:

CREATE TABLE `wallpaper` (
  `id` int(5) NOT NULL auto_increment,
  `name` varchar(255) NOT NULL default '',
  `artist` varchar(200) NOT NULL default '',
  `artistsite` varchar(255) NOT NULL default '',
  `date` date NOT NULL default '0000-00-00',
  `series` varchar(255) NOT NULL default '',
  `type` varchar(255) NOT NULL default '',
  `previewthumb` varchar(255) NOT NULL default '',
  `wallpaperbig` varchar(255) NOT NULL default '',
  `wallpapersmall` varchar(255) NOT NULL default '',
  `pcounter` int(5) NOT NULL default '0',
  `dcounter` int(5) NOT NULL default '0',
  PRIMARY KEY  (`id`)
)
I even try varchar on the dcounte and pcounter and still the same.

download.php
Code:

<?php

// Database connection stuff here
include("connection.php");

$q="SELECT * from wallpaper where id='$id'";
$result= mysql_query($q) or die
(
"Could not execute query : $q." . mysql_error());

while (
$row=mysql_fetch_array($result))
{
$id=$row["id"];
$name=$row["name"];
$artist=$row["artist"];
$artistsite=$row["artistsite"];
$date=$row["date"];
$series=$row["series"];
$type=$row["type"];
$previewthumb=$row["previewthumb"];
$wallpaperbigl=$row["wallpaperbig"];
$wallpapersmall=$row["wallpapersmall"];
$dcounter=$row["dcounter"]; 
$pcounter=$row["pcounter"]; 
header('Location: '.$wallpapersmall);

$q="update wallpaper set dcounter=dcounter+1 where id='$id'";
$result= mysql_query($q) or die
(
"Could not execute query : $q." . mysql_error());

}

?>



preview.php
Code:

<?php

// Database connection stuff here
include("connection.php");

$q="SELECT * from wallpaper where id='$id'";
$result= mysql_query($q) or die
(
"Could not execute query : $q." . mysql_error());

while (
$row=mysql_fetch_array($result))
{
$id=$row["id"];
$name=$row["name"];
$artist=$row["artist"];
$artistsite=$row["artistsite"];
$date=$row["date"];
$series=$row["series"];
$type=$row["type"];
$previewthumb=$row["previewthumb"];
$wallpaperbigl=$row["wallpaperbig"];
$wallpapersmall=$row["wallpapersmall"];
$dcounter=$row["dcounter"]; 
$pcounter=$row["pcounter"]; 
header('Location: '.$wallpaperbig);

$q="update wallpaper set dcounter=dcounter+1 where id='$id'";
$result= mysql_query($q) or die
(
"Could not execute query : $q." . mysql_error());

}

?>



Wallpaper.php Just the top bit.
Code:

<?php 
include ('wallpaper/connection.php');  


$query = "select * from `wallpaper` order by id desc ";

$result = mysql_query($query, $connection) or die
(
"Could not execute query : $query ." . mysql_error());
$rows = mysql_num_rows($result);
if (
$rows=="0") { echo "No wallpaper found."; } //This is the message that shows up if your table is empty.


//CODE A
// Start paging variables
$screen = $_GET['screen'];
$PHP_SELF = $_SERVER['PHP_SELF'];
$rows_per_page=5; // number of records per page
$total_records=mysql_num_rows($result);
$pages = ceil($total_records / $rows_per_page); // calculate number of pages required

if (!isset($screen))
$screen=0;
$start = $screen * $rows_per_page; // determine start record
$query .= "LIMIT $start, $rows_per_page";
$result= mysql_query($query) or die
(
"Could not execute query : $query ." . mysql_error());
while (
$row=mysql_fetch_array($result))
{

$id=$row["id"];
$name=$row["name"];
$artist=$row["artist"];
$artistsite=$row["artistsite"];
$date=$row["date"];
$series=$row["series"];
$type=$row["type"];
$previewthumb=$row["previewthumb"];
$wallpaperbig=$row["wallpaperbig"];
$wallpapersmall=$row["wallpapersmall"];
$dcounter=$row["dcounter"];  
$pcounter=$row["pcounter"]; 


echo 
"
<table cellpadding=\"0\" cellspacing=\"0\" width=\"300\" align=\"center\" id=\"border\">
<tr>
<td colspan=\"2\" class=\"layhead\">
$name
</td>
</tr>
<tr>
<td width=\"141\">
<img src=\"$previewthumb\" align=\"left\" id=\"border\" class=\"imglayout\"></td>
<td width=\"153\" id=\"laybg\" class=\"laybgcontent\">
<b>ID:</b> $id<br>
<b>Name:</b> $name <br> 
<b>Artist:</b> <a href=\"$artistsite\">$artist</a><br>
<b>Date:</b> $date <br>
<b>Series:</b> $series<br> 
<b>Type:</b> $type <br>
<b>1024x768:</b>$pcounter<br> 
<b>800x600:</b>$dcounter<br>
</td>
</tr>
<tr>
<td colspan=\"2\"  class=\"laybottom\" align=\"center\">
< <a href=\"wallpaper/preview.php?id=$id\" target=\"_blank\">1024x768</a>  |  <a href=\"wallpaper/download.php?id=$id\"target=\"_blank\">800x600</a>  >
</td>
</tr>
</table>
<br>
<br>"
; 

}


Sorry for the long post! But what am I missing?

Thanks guys
8  Web Development / Advertisements / Affiliation / darkangelwitch.com on: August 12, 2006, 04:49:09 PM
Thank you all for you comments, I don't use Opera but I downloaded it today! All seam to be working fine, just the border is missing around the header for the tables on the layouts DB and so on.

Thanks Fallen, I to love the Husky layout  :D .

 
Brandon I understand what you saying about the pictures, but I could not find anymore on that series.

Again thank you all....  :D
9  Web Development / Advertisements / Affiliation / Grafica Designs on: May 06, 2006, 04:04:10 AM
This site been up for just over a month! I have a few Layouts you can download, also links to other stuff for game which I hex, so check the sub links out Smiley

I know its not much, but I'm just starting and with no help!. Also leave a message on the site if you like.

When I learn have to make a layout datebase, then I will really be at work doing layouts and so.

I do have lots of room if people would like me to host some of the stuff made by them.  :D

http://graficadesigns.org/
For main Just press the siggy to go there!
10  Web Development / Coding / database help! on: April 26, 2006, 01:09:08 AM
Thanks for your help! Now call me dumb, but I downloaded the pre made one!. I put a layout on it! But now what do I do? Where is it? where do I find the code and place it? Also I still trying to work out how to make thumbnails for the preview.

I'm at a lost..... :oops:
11  Web Development / Coding / database help! on: April 25, 2006, 06:44:08 PM
Ok I'm new to all this, so be easy one me please.

Just a few things I need to ask about dsplaying the layouts downloads like to have on this site and many other.

I see alot about a counter which I got last night.

Quote
<?php

//database connection stuff here
include ('connection.php');

$q="SELECT * from counter order by FileName";
$result= mysql_query($q) or die
("Could not execute query : $q." . mysql_error());

echo "<p align=center>Files Download</p>";
echo "<ol>";

while ($row=mysql_fetch_array($result))
{
$id=$row["id"];
$FileName=$row["FileName"];
$FileURL=$row["FileURL"];
$Counter =$row["Counter"];


echo "<li><a href=download.php?id=$id>$FileName</a></li>";
}
?>


Quote
<?php

//database connection stuff here
include ('connection.php');

$q="SELECT * from counter where id='$id'";
$result= mysql_query($q) or die
("Could not execute query : $q." . mysql_error());

while ($row=mysql_fetch_array($result))
{
$id=$row["id"];
$FileName=$row["FileName"];
$FileURL=$row["FileURL"];
$Counter =$row["Counter"];

header('Location: '.$FileURL);

$q="update counter set Counter=Counter+1 where id='$id'";
$result= mysql_query($q) or die
("Could not execute query : $q." . mysql_error());

}

?>


Is this right and where and how do I put my info for the layouts?

Do I need to use a layout datebase code? if so where to I get the code? and how do you use it?
How do you make the files thumbnails so you can preview the layout page! like you do here?

Sorry its alot I know.....

I have look around the web, but I cannot make head or tail of it all.
12  Web Development / Coding / Help! on: April 17, 2006, 08:20:43 PM
I just made a post here http://forum.celestial-star.net/viewtopic.php?t=1793 I hope its what you are looking for?
13  Web Development / Coding / ><; my first iframe layout ^^; need help with coding on: April 17, 2006, 07:51:10 PM
Which slice is your iframe? When I am sliceing I slice around where the iframe will be.

Lets just say your iframe is
<TD ROWSPAN=3>
         <IMG SRC="images/Index_05.jpg" WIDTH=217 HEIGHT=265 ALT=""></TD>

Place this code under it!
<iframe src="main.html" name="iframe" width="359" height="372" frameborder="0"></iframe></TD>

Now copy your WIDTH=217 and paste it over the width="359" in the iframe code. Now do the same with the hight. HEIGHT=265 copy it over height="372".  make sure you have the number with the dashes as you see here."372"

Ok now delete

>
         <IMG SRC="images/Index_05.jpg" WIDTH=217 HEIGHT=265 ALT=""></TD>

You will now be left with this
<TD ROWSPAN=3  <iframe src="main.html" name="iframe" width="217" height="265" frameborder="0"></iframe></TD>

Make sure you have named your

src="main.html" this it your main iframe page! when the browser open up with the page, then this will be the first page to be seen in the iframe. You can name both whatever you want. Just make sure they match up.

name="iframe" this is what to want to tell the links to go into. also remember to use the images/Index_05.jpg as your back ground in you iframe pages.

Hope that helps?
14  Web Development / Coding / Edit: Div Layout a mess! on: April 17, 2006, 11:51:08 AM
Ok I got it working and looking good in Fox! I have it cenrtered, but now I see if I minimise the browers half way the Nav, sub and content move over.... how do I stop the <div style= from moving?


http://darkangelwitch666.com/Layouts/darkangelwitch666/

Quote

<html>
<head>
<title>daw</title>
<LINK href="Stylesheet.css" rel="stylesheet" type="text/css">
</head>


<body bgcolor="#92a4b4" background="images/bg.jpg" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<!-- ImageReady Slices (daw.png) -->
<table id="Table_01" width="808" height="804" border="0" cellpadding="0" cellspacing="0" align="center" style="background: url(images/bg.jpg;") background-repeat: repeat-y; >

   <tr>
      <td colspan="5">
         <img src="images/angel_01.jpg" width="808" height="93" alt=""></td>
   </tr>
   <tr>
      <td colspan="5">
         <img src="images/angel_02.jpg" width="808" height="94" alt=""></td>
   </tr>
   <tr>
      <td colspan="5">
         <img src="images/angel_03.jpg" width="808" height="93" alt=""></td>
   </tr>
   <tr>
      <td colspan="5">
         <img src="images/angel_04.jpg" width="808" height="94" alt=""></td>
   </tr>
   <tr>
      <td colspan="5">
         <img src="images/angel_05.jpg" width="808" height="93" alt=""></td>
   </tr>
   <tr>
      <td rowspan="4">
         <img src="images/nav_06.jpg" width="221" height="337" alt=""></td>
      <td colspan="3"
         width="442" height="57" background="images/sub_07.jpg" style="background-repeat: no-repeat; padding: 0px;">
<div style="position: absolute; left: 145px; top: 485px; width: 830px">
<!------ Sub Navigation-------->
<div align="center">
<a class="sub" href="http://darkangelwitch666.com/Petz/" target="Top" title="My Petz">Petz Hexz</a> ~ <a class="sub" href="http://darkangelwitch666.com/ForeverFriendsPetz/" target="Top" title="My Friends Hexz">Forever Friends Petz</a> ~ <a class="sub" href="http://darkangelwitch666.com/Hamsters/" target="Top" title="Find out about the cute little hamsters game and download it!">Hamsters</a> ~  <a class="sub" href="http://darkwitch666.suddenlaunch3.com/index.cgi"target="_Top" title="Come and join my forum! We have so great members!">My Forum!</a></div>
<!---------End Sub Navigation------>
      <td rowspan="4">
         <img src="images/angel_08.jpg" width="145" height="337" alt=""></td>
   </tr>
   <tr>
      <td colspan="3">
         <img src="images/angel_09.jpg" width="442" height="49" alt=""></td>
   </tr>
   <tr>
      <td rowspan="2">
         <img src="images/angel_10.jpg" width="81" height="231" alt=""></td>
      <td>
         <img src="images/iframe_11.jpg" width="316" height="128" alt=""></td>
      <td rowspan="2">
         <img src="images/angel_12.jpg" width="45" height="231" alt=""></td>
   </tr>
   <tr>
      <td>
         <img src="images/angel_13.jpg" width="316" height="103" alt=""></td>
   </tr>
</table>
<!-- End ImageReady Slices -->

<!------Navigation-------->
<div style="position: absolute; left: 145px; top: 465px; width: 165px">


<h1>-Site Menu-</h1>
<a class="navigation" href="Site/main.html" target="iframe">Updates Home</a><br>
<a class="navigation" href="Site/Links.html"target="iframe">Links</a>


<h1>-Contact-</h1>
<a class="navigation" href="mailto:darkangelwitch666@gmail.com?subject=darkangelwitch666">Email Me</a>


<h1>-Credits &copy;-</h1>
<a class="navigation" href=" index.html">Layout by Myself!</a><br>
<a class="navigation" href="http://celestial-star.net/" target="_blank">Picture from Celestial Star</a><br>
<a class="navigation" href="http://www.magitek-designs.net/brushes/"target="_blank">Brushes downloaded from Magitek-Designs</a>

<h2>-The End!-</h2>
<!---------End Navigation------>

<!------Content-------->
<div style="position: absolute; left: 185px; top: 290px; width: 443px">
<h3>-Best viewed at 1024x768-<br></h3>
<h2>-Welcome!-</h2>
<h4>Hello, so you want to know what this site about?<br>
<br>
Well this site was put up for Petz and Hamster and also a number of other things! But hey keep coming back as you never know what you may find?<br>
<br>
You will find a number off downloads for Petz and Hamsters If you look above at the Subsites! Oh and my forum room.<br>
<br>
I am still updateing this part of the site, so you will find everything at the Subsites, also keep an eye on the Iframe, that where I will put any updates I have made to this site and others.<br>
<br>
When pressing the links you will see that the page will also show up in the Iframe!.<br>
Well people have a good look around Smiley Also thanks for stopping by!.<br></h4>
<a class="content" href="mailto:darkangelwitch666@gmail.com?subject=darkangelwitch666">Email Me</a>
<h2>-The End!-</h2>
<!------ End Content-------->
</div>
</body>
</html></html>


Quote

BODY {
   MARGIN: 0px;
   BACKGROUND-COLOR: #92a4b4;
   background-repeat: repeat-y;
                background-position: center;
   font-family: "Comic Sans MS", "Verdana", sans-serif;
                font-size: 8pt;
                font-weight: normal;
                color: #8e6462;
   scrollbar-face-color : #c2b9ba;
   scrollbar-highlight-color : #92a4b4;
   scrollbar-3dlight-color : #c2b9ba;
   scrollbar-shadow-color : #92a4b4;
   scrollbar-darkshadow-color : #c2b9ba;
   scrollbar-track-color : #92a4b4;
   scrollbar-arrow-color : #c2b9ba;
                cursor: ne-resize;
   
}

               img {
               cursor:"ne-resize";
               border: 0px;
}

A:visited {
                font-family: "tahoma", "Verdana", sans-serif;
   Font-weight: bold;
   CURSOR: help;
   COLOR: #B51D1D;
   border-bottom-style: dotted;
   border-bottom-width: 1px;
   border-color: #AF0C23;
   text-decoration: none
                font-size: 8pt;
}

A:active {
                font-family: "tahoma", "Verdana", sans-serif;
   Font-weight: bold;
   CURSOR:help;
   COLOR: #000000;
   text-decoration: none
                font-size: 8pt;
}

A:hover {
                font-family: "tahoma", "Verdana", sans-serif;
   Font-weight: bold;
   CURSOR: help;
   COLOR: #FFFFFF;
   border-bottom-style: dotted;
   border-bottom-width: 1px;
   border-color: #AF0C23;
   text-decoration: none
                font-size: 8pt;
}


A {
   font-family: "tahoma", "Verdana", sans-serif;
   Font-weight: bold;
   CURSOR: help;
   COLOR: #B51D1D;
   border-bottom-style: dotted;
   border-bottom-width: 1px;
   border-color: #AF0C23;
   text-decoration: none
}


h1 {
   FONT-WEIGHT: bold;
   FONT-SIZE: 12pt;
   letter-spacing: 2pt;
   color: #FFFFFF;
   FONT-FAMILY: Comic Sans MS;
   text-align: center;
}

h2 {
   FONT-WEIGHT: bold;
   FONT-SIZE:12pt;
   letter-spacing: 2pt;
   color: #FFFFFF;
   font-variant: small-caps;
   FONT-FAMILY: Comic Sans MS;
   TEXT-ALIGN: center
}

h3{
             font-family: Comic Sans MS;
             color: #8e6462;
             font-size : 10pt;
             text-align: center;
}

h4 {
   font-family: "Comic Sans MS", "Verdana", sans-serif;
       font-size: 10pt;
       font-weight:normal;
   text-align: justify;
                cursor:"se-resize";
   color : #FFFFFF;
}


A.navigation:link {
   DISPLAY: block;
   FONT-SIZE: 9px;
   font-variant: small-caps;
   FONT-FAMILY: tahoma;
   letter-spacing: 1pt;
   color: #8e6462;
   CURSOR: help;
   LINE-HEIGHT: 20px;
   FONT-FAMILY: verdana, sans-serif;
   BACKGROUND-COLOR: #92a4b4;
   border-bottom-width: 0px;
   text-decoration: none;
   text-align: left
   
}

A.navigation:visited {
   DISPLAY: block;
   color: #8e6462;
   FONT-SIZE: 9px;
   font-variant: small-caps;
   FONT-FAMILY: tahoma;
   letter-spacing: 1pt;
   BACKGROUND-COLOR: #92a4b4;
   CURSOR: help;
   border-bottom-width: 0px;
   LINE-HEIGHT: 20px;
   FONT-FAMILY: verdana, sans-serif;
   text-decoration: none;
   text-align: left
}

A.navigation:active {
   DISPLAY: block;
   color: #8e6462;
   FONT-SIZE: 9px;
   font-variant: small-caps;
   FONT-FAMILY: tahoma;
   letter-spacing: 1pt;
   BACKGROUND-COLOR: #92a4b4;
   CURSOR: help;
   LINE-HEIGHT: 20px;
   border-bottom-width: 0px;
   FONT-FAMILY: verdana, sans-serif;
   text-decoration: none;
   text-align: left
   
}

A.navigation:hover {
   DISPLAY: block;
   color:  #FFFFFF;
   FONT-SIZE: 9px;
   CURSOR: help;
   font-variant: small-caps;
   FONT-FAMILY: tahoma;
   letter-spacing: 1pt;
   BACKGROUND-COLOR: #92a4b4;
   lINE-HEIGHT: 20px;
   FONT-FAMILY: verdana, sans-serif;
   border-bottom-width: 0px;
   text-decoration: none;
   text-align: left
}

A.sub:link{
   
   FONT-SIZE: 9px;
   font-variant: small-caps;
   FONT-FAMILY: tahoma;
   letter-spacing: 1pt;
   color:  #8e6462;
   CURSOR: help;
   LINE-HEIGHT: 20px;
   BACKGROUND-COLOR: #92a4b4;
   border-bottom-width: 0px;
   text-decoration: none;
   text-align: center;
}


A.sub:visited {
   
   color:  #8e6462;
   FONT-SIZE: 9px;
   font-variant: small-caps;
   FONT-FAMILY: tahoma;
   letter-spacing: 1pt;
   BACKGROUND-COLOR: #92a4b4;
   CURSOR:help;
   border-bottom-width: 0px;
   LINE-HEIGHT: 20px;
   text-decoration: none;
   text-align: center;
}

A.sub:active {
   
   color:  #8e6462;
   FONT-SIZE: 9px;
   font-variant: small-caps;
   FONT-FAMILY: tahoma;
   letter-spacing: 1pt;
   BACKGROUND-COLOR: #92a4b4;
   CURSOR: help;
   LINE-HEIGHT: 20px;
   border-bottom-width: 0px;
   text-decoration: none;
   text-align: center;
   
}
A.sub:hover {
   
   color:  #FFFFFF;
   FONT-SIZE: 9px;
   CURSOR:help;
   font-variant: small-caps;
   FONT-FAMILY: tahoma;
   letter-spacing: 1pt;
   BACKGROUND-COLOR: #92a4b4;
   lINE-HEIGHT: 20px;
   border-bottom-width: 0px;
   text-decoration: none;
   text-align: center;
}




A.content:link{
   
   FONT-SIZE: 9px;
   font-variant: small-caps;
   FONT-FAMILY: tahoma;
   letter-spacing: 1pt;
   color:  #8e6462;
   CURSOR: help;
   LINE-HEIGHT: 20px;
   BACKGROUND-COLOR: #c2b9ba;
   border-bottom-width: 0px;
   text-decoration: none;
   text-align: center;
}


A.content:visited {
   
   color:  #8e6462;
   FONT-SIZE: 9px;
   font-variant: small-caps;
   FONT-FAMILY: tahoma;
   letter-spacing: 1pt;
   BACKGROUND-COLOR: #c2b9ba;
   CURSOR:help;
   border-bottom-width: 0px;
   LINE-HEIGHT: 20px;
   text-decoration: none;
   text-align: center;
}

A.content:active {
   
   color:  #8e6462;
   FONT-SIZE: 9px;
   font-variant: small-caps;
   FONT-FAMILY: tahoma;
   letter-spacing: 1pt;
   BACKGROUND-COLOR: #c2b9ba;
   CURSOR: help;
   LINE-HEIGHT: 20px;
   border-bottom-width: 0px;
   text-decoration: none;
   text-align: center;
   
}
A.content:hover {
   
   color:  #FFFFFF;
   FONT-SIZE: 9px;
   CURSOR:help;
   font-variant: small-caps;
   FONT-FAMILY: tahoma;
   letter-spacing: 1pt;
   BACKGROUND-COLOR: #c2b9ba;
   lINE-HEIGHT: 20px;
   border-bottom-width: 0px;
   text-decoration: none;
   text-align: center;
}


Sorry about bugging you all! :oops:
15  Web Development / Coding / Edit: Div Layout a mess! on: April 16, 2006, 10:13:37 AM
Thanks for the reply Smiley I understand what you saying? But I have mess around with the css file and still now luck!. I must be doing something wrong with the file??????????
Pages: [1] 2
  • Welcome, Guest
  • Members login
  • Register for free

General

  • General
  • New members
  • Announcements
  • Support / Suggestions

Art boards

  • Creative mediums
  • Requests and offers
  • Tutorials
  • Celestial Star tutorials

Web development

  • Coding
  • Web design
  • Advertisements / affiliation

Off-topic

  • The non-sense
  • Ententainment

Go up
eXTReMe Tracker
  • Valid XHTML
  • Valid CSS
Powered by SMF 1.1.2 | SMF © 2006-2007, Simple Machines LLC | Seo4Smf v0.2 © Webmaster's Talks
Loading...