Topic: CSS3 Issue I am having - DRIVING ME BATSHIT INSANE (Page 1 of 1) |
|
|---|---|
|
Nervous Wreck (II) Inmate From: Las Vegas, NV |
posted 05-02-2012 13:11
Fellow inmates, code: background-color: #550909;
background-image: url("../imgs/bg.jpg"), url("../imgs/bg-bottomright.jpg");
background-position: left top, right bottom;
background-repeat: no-repeat;
code: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="en-US" dir="ltr"><!-- Begin HTML Document -->
<head><!-- Begin Header -->
<title>The Lounge.</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="author" content="Dustin R. Sanchez">
<meta name="copyright" content="2012-2013 Dustin R. Sanchez">
<!-- Begin Lounge Specific CSS -->
<link rel="stylesheet" type="text/css" href="styles/lounge.css" media="screen">
<!-- End Lounge Specific CSS; Begin Google Fonts CSS -->
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Tangerine"> <!-- FFSansSerif -->
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Alice"> <!-- FFSerif -->
<!-- End Google Fonts CSS -->
</head><!-- End Header -->
<body><!-- Begin Main Body -->
<div id="the_master"><!-- Begin Master Wrapper -->
<div id="the_mistress"><!-- Begin Mistress Wrapper -->
</div><!-- End Mistress Wrapper -->
</div><!-- End Master Wrapper -->
</body><!-- End Main Body -->
</html><!-- End HTML Document --> |
|
Maniac (V) Mad Scientist with Finglongers From: Germany |
posted 05-03-2012 11:07
Now, I have no clue about CSS3... have you tried simply reversing the images? |
|
Nervous Wreck (II) Inmate From: Las Vegas, NV |
posted 05-07-2012 05:02
I was able to resolve it. Why is this forum so damn slow? The Asylum used to be pretty busy. =( |
|
Maniac (V) Mad Scientist with Finglongers From: Germany |
posted 05-07-2012 11:14
because we moved on with our lives |
|
Nervous Wreck (II) Inmate From: Las Vegas, NV |
posted 05-08-2012 15:17
LOL fair enough Tyberius. It had to add the following to the CSS3: code: html, body {
height: 100%;
margin: 0%;
padding: 0%;
color: #fff;
font: 60px 'Tangerine', sans-serif;
}
body {
height: 100%;
background-color: #550909;
background-image: url("../imgs/bg.jpg"), url("../imgs/bg-bottomright.jpg");
background-position: left top, right bottom;
background-repeat: no-repeat, no-repeat;
margin: 0%;
padding: 0%;
text-align: center;
}
|
|
Maniac (V) Inmate From: The Pool Of Life |
posted 05-09-2012 03:20
|