Jump to content

quackquack

Banned
  • Posts

    31
  • Joined

  • Last visited

Posts posted by quackquack

  1. hey i have been searching w3schools site for like an hr and i cant find a tut or somthing on how to hex edit files. if any1 can direct me to one that would b great thank you
    If you say this, for me . . . I want a program that can convert RGB to hex-a-decimal . . .
  2. You should post this in the CSS forum

    Just to add to that, customised scroll bars will not work in FF, im not sure about the other browsers, but they do work in IE. It isn't a problem though I dont think because if they work they work and if they dont then they dont, I dont think that they mess anything up at all. Or do they?So my advie just leave them in, but dont expect them to always work, because they might not!
    This could work In IE5, IE6, IE7, Mozila, Netscape, Opera . . . And all other popular/recent browsers

    Body:

    I am at a difficulty in css. Check the code and post replies . . .

    <style type="text/css">body{background-color: black;font-family: verdana;font-color: white;scrollbar-face-color: antiquewhite;scrollbar-highlight-color: red;scrollbar-3dlight-color: orange;scrollbar-darkshadow-color: brown;scrollbar-shadow-color: pink;scrollbar-arrow-color: red;scrollbar-track-color: ivory;}a:link {color: blue;}a:visited {color: chartreuse;} a:hover {background: violet;} a:active {color: aquamarine;}}font {color: white;}}h1 {font-size: 29px; color: red}h2 {font-size: 25px; color: green}h3 {font-color: white}h4 {font-color: white}h5 {font-color: white}h6 {font-color: white}}</style>

    ---------------------------------Any corrections?

  3. I'm very new to css and and i'm having issues with having two different classes for hovering over links.This is the website:http://www.flatballphoto.co.uk/lpdc/index.phpThis is the relevant css:
    a:link {	color: #15428D;}a:visited {  color: #3A79E2;}a:hover {	text-decoration: none;}a.menulink {	color: #ffffff;	font-weight: bold;	font-size: 12px;	text-decoration: none;	padding: 3px;	font-variant: small-caps;	text-align: centre;}a.menulink:visited {	color: #ffffff;}a.menulink:hovor {	text-decoration: underline;	background-color: #000000;}

    The links in the main text should have an underline which will disappear when the link is hovered over. The links in the menu should have no text decoration but should have an underline (and hopefully an overline too) when they are hovered over.This is what i have in the css file but i can't work out why it doesn't work. The classes seem to be allocated properly so i'm baffled, what am i doing wrong?

    There's no problem w/ the hover, I just saw the link having no underline when hovered
  4. Here's a sample Master Page:
    <%@ Master Language="C#" AutoEventWireup="true" CodeFile="DefaultPage.master.cs" Inherits="DefaultMasterPage" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml" ><head runat="server"><title></title></head><body><asp:ContentPlaceHolder ID="MainContentPlaceHolder" runat="server" /></body></html>

    And a page that would use it:

    <%@ Page Language="C#" MasterPageFile="DefaultPage.master" AutoEventWireup="true"  CodeFile="Default.aspx.cs" Inherits="_Default" Title="Test Page" %><asp:Content ID="Content" ContentPlaceHolderID="MainContentPlaceHolder" runat="server">Hello World!</asp:Content>

    The code that is in the <asp:Content></asp:Content> element will be placed in the ContentPlaceHolder of the master page.

    Umm . . . does it always need XHTML for asp? Iv'e tried few asp's on HTML that is effortless.
×
×
  • Create New...