Jump to content

britt15

New Members
  • Posts

    5
  • Joined

  • Last visited

    Never

About britt15

  • Birthday 10/05/1989

Contact Methods

  • Website URL
    http://www.tainted-rose.com
  • Yahoo
    tainted_rose16

Profile Information

  • Gender
    Not Telling
  • Location
    Hawaii

britt15's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. The layers already are positioned absolute.
  2. How do I add the alignment of my button's Div layer in my css file? If you notice the layer on my site with the buttons, its uneven. Also, when you click on the touch pad in the window on my site, the layer overlaps my layout image. How can I lock the layer so it will stay in place all the time? [a href=\"http://www.tainted-rose.com\" target=\"_blank\"]http://www.tainted-rose.com[/a] [code] style.css body { background : transparent; margin : 0; text-align : center; color : #ffffff; font-family : Tahoma; font-size : 9px; } a:active, a:visited, a:link { font-family : Tahoma; font-size : 9px; color : #ffffff; text-decoration : none; font-weight : normal; } a:hover { font-family : Tahoma; font-size : 9px; color : #999999; text-decoration : blink; } h1 { font-family : Tahoma; font-size : 9px; text-align : center; font-style : normal; font-weight : bold; color : #ffffff;   }   textarea, input { color : #ffffff; border : 1px solid #ffffff; font-family : Tahoma; } submit { color : #4e4e4e; border : 1px solid #400000; font-family : Trebuchet MS; font-size : 9px; } [/code]
  3. I have just recently changed my layout, and now I can't get my external stylesheet to work. I have made sure it was correct in my header countless times. [a href=\"http://www.tainted-rose.com\" target=\"_blank\"]http://www.tainted-rose.com[/a] [code] header.php <html> <head> <center> <body bgcolor="#999999"> <script type="text/javascript" src="http://www.tainted-rose.com/oodomimagerollover.js"> <link rel="stylesheet" type="text/css" href="http://www.tainted-rose.com/style.css" /> </head> <body> /*********************************************** * DOM Image Rollover II- By Adam Smith (http://www.codevendor.com) * Script featured on and available at Dynamic Drive (http://www.dynamicdrive.com) * Keep this notice intact for usage please ***********************************************/ </script> [/code] [code] style.css A:link { text-decoration: value; [none] color:#ffffff; } A:visited { text-decoration: value; [none] color:#ffffff; } A:active { text-decoration: value; [none] color:#ffffff; } A:hover { text-decoration: value; [blink] color:#999999; background-image: url(); background-color: transparent; h1 {font-family: value; [Tahoma] color: value; [#ffffff] } p {font-family: value; [Tahoma] color: value; [#ffffff] } input, textarea { background: #999999; font-family: value; [Tahoma] color: #ffffff; border-style: value; [solid] border-color: #ffffff; border-width: valuepx; [1] } </style> [/code]
  4. Didn't work. I used your second bit of code.
  5. I'm trying to make the title and date text in the following link bold. How do I do this? It is part of a blog script. [a href=\"http://www.tainted-rose.com/blog/display.php\" target=\"_blank\"]http://www.tainted-rose.com/blog/display.php[/a] [code] <? include("http://www.tainted-rose.com/header.php")?> <?php // Put database connection variables here $hostname="localhost"; $user="";    //user name to access database $pass= "";    //password     $dbase="";    //database name $connection = mysql_connect("$hostname" , "$user" , "$pass") or die ("Cannot connect to MySQL"); $db = mysql_select_db($dbase , $connection) or die ("Cannot select database."); $q = "SELECT * from blog order by date desc "; $result= mysql_query($q, $connection) or die   ("Could not execute query : $q." . mysql_error()); // dynamic navigation variables $rows_per_page=1;         // adjust the number here to display number of entries per page   $total_records=mysql_num_rows($result); $pages = ceil($total_records / $rows_per_page); $screen = $_GET["screen"]; if (!isset($screen)) $screen=0; $start = $screen * $rows_per_page; $q .= "LIMIT $start, $rows_per_page"; $result= mysql_query($q, $connection) or die   ("Could not execute query : $q." . mysql_error()); while ($row=mysql_fetch_array($result)) {     $id=$row["id"];     $name=$row["name"];     $email=$row["email"];     $entry=$row["entry"];     $date=$row["date"];     $icon=$row["icon"];       $title=$row["$title"]; ?>     <table width="80%" border="0" cellspacing="1" cellpadding="0">     <tr>     <td><?php echo "$title"; ?></td>     </tr>     <tr>     <td>     <p><img src="<?php echo "$icon"; ?>" alt="icon" align="center"><?php echo "$entry"; ?></p>     <p>Posted by <a href="mailto:<?php echo "$email"; ?>"><?php echo "$name"; ?> on <?php echo "$date"; ?>.</p>     </td>     </tr>     </table>     <p align="right">          <?php          $query = "select id from blog_comments where blog_id='$id' ";     $ret = mysql_query($query) or die (mysql_error());     $comment_num = mysql_num_rows($ret);          // display number of comments     echo "<a href=\"http://www.tainted-rose.com/blog/readcomments.php?id=$id\">$comment_num</a>";          ?>          </p>     <?php } #while ?> <div align=center> <?php // Display dynamic navigation here // create the dynamic links if ($screen > 0) { $j = $screen - 1; $url = "display.php?screen=$j"; echo "<a href=\"$url\">Prev</a>"; } // page numbering links now for ($i = 0; $i < $pages; $i++) { $url = "display.php?screen=" . $i; $j = $i + 1; echo " | <a href=\"$url\">$j</a> | "; } if ($screen < $pages-1) { $j = $screen + 1; $url = "display.php?screen=$j"; echo "<a href=\"$url\">Next</a>"; } ?> </div> <? include("http://www.tainted-rose.com/footer.php")?> [/code]
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.