This is my first time working with frames and I've come across a problem I didn't forsee and have no idea how to solve. Even though I've set the margin to 0 in all frames I still get a margin on the top of the website. How can I get rid of it.
The other problem I'm having is with the spry menu. All 4 buttons should look like the photogallery button, but the styles aren't applying to the buttons that contain drop down menus when viewed in chrome.(they look ok in IE as far as i'm concerned)
Frameset code
TOP FRAME CODE
properties for <body> from the .css
The other problem I'm having is with the spry menu. All 4 buttons should look like the photogallery button, but the styles aren't applying to the buttons that contain drop down menus when viewed in chrome.(they look ok in IE as far as i'm concerned)
Frameset code
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<!--
body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
}
-->
</style>
</head>
<frameset rows="103,*,80" frameborder="no" border="0" framespacing="0">
<frame src="topframe.html" name="topFrame" scrolling="No" noresize="noresize" id="topFrame" title="topFrame" />
<frame src="toolbody.html" name="mainFrame" id="mainFrame" scrolling="No" title="mainFrame" />
<frame src="bottomframe.html" name="bottomFrame" scrolling="No" noresize="noresize" id="bottomFrame" title="bottomFrame" />
</frameset>
<noframes><body>
</body>
</noframes></html>
Code:
<!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>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<link href="../aicon.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="tooltopbar">
<div id="logo"></div>
<div id="tooltopimage"></div>
</div>
</body>
</html>
Code:
body {
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
margin-left: 0px;
