Click to See Complete Forum and Search --> : Different CSS for one page?
Daniel H
11-23-2005, 11:47 AM
Hi
Is there a quick way of allowing two different css for one page?
I have the top of a page I want to be the CSS of its main website, and then the other CSS is that of a vbulletin forum. Is there a way of doing this with html code somehow and now creating one complex css file, im only a newbie :o
LiLcRaZyFuZzY
11-23-2005, 12:16 PM
yes you can link to different CSS like this:
<link rel="stylesheet" type="text/css" href="mainstyle.css">
<link rel="stylesheet" type="text/css" href="vBstyle.css">
Daniel H
11-23-2005, 12:35 PM
Hi
Many thanks for the reply :)
I've tried this but still not working :(
Here's what I have.....
<!-- / CSS Stylesheet --><link rel="stylesheet" type="text/css" href="http://www.shoppingtelly.com/skins/st/shoppingtelly.css">
*CODE FOR STUFF AT TOP HERE*
<link rel="stylesheet" type="text/css" href="http://www.shoppingtelly.com/forum/clientscript/style-534cee8d-00106.css">
*FORUM CODE HERE*
I'm probably missing something obvious, is there a end code I have to put before the second css or anything, thanks.
LiLcRaZyFuZzY
11-23-2005, 12:41 PM
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" type="text/css" href="mainstyle.css">
<link rel="stylesheet" type="text/css" href="vBstyle.css">
</head>
<body>
<!-- Your content here -->
</body>
</html>