Problem with IE, not that im suprised at that
hi, having a few problems running a script for a guestbook i found on the net "ardguest". I'm new to PHP so just trialling things at the minute, havent got the knowledge to write my own script yet etc...
Tried to incorporate this script into the rest of the html of the site so the guestbook was embedded. works great in Firefox, Netscape etc..., what a suprise it doesn't in IE
if you look here > http://www.rpmwindows.com/guestbook/index.php
you will see that half of the navbar down the left hand side has been cut off almost by half the width, and sorta scrunched the buttons up next to each other. I tried to change the size of the divs, narrowed the tables in the guestbook code etc to no avail.
buggin me the fact that at my first attempt its worked in the other 2 browsers ive tested on so far.
input is appreciated.
demonhale posted this at 01:32 — 2nd February 2007.
He has: 3,278 posts
Joined: May 2005
On your css, you have two height and width declarations here:
.verticalmenu a:link, .verticalmenu a:visited, .verticalmenu a:hover {
display: block;
font: bold 1.1em Verdana, Arial, Helvetica, sans-serif;
color: #FFFFFF;
text-decoration: none;
padding-left: 25px;
padding-top: 4px;
<strong>width: 148px;
height: 23px;</strong>
voice-family: "\"}\"";
voice-family:inherit;
<strong>width: 148px;
height: 23px;</strong>
Erase and increase the width, say like this:
.verticalmenu a:link, .verticalmenu a:visited, .verticalmenu a:hover {
display: block;
font: bold 1.1em Verdana, Arial, Helvetica, sans-serif;
color: #FFFFFF;
text-decoration: none;
padding-left: 25px;
padding-top: 4px;
<strong>width: 180px;</strong>
height: 23px;
voice-family: "\"}\"";
voice-family:inherit;
cma-design posted this at 19:19 — 5th February 2007.
They have: 3 posts
Joined: Feb 2007
thats fixed it. thanks, didnt spot that
demonhale posted this at 00:45 — 6th February 2007.
He has: 3,278 posts
Joined: May 2005
No prob, in case you encounter another just holler!
Want to join the discussion? Create an account or log in if you already have one. Joining is fast, free and painless! We’ll even whisk you back here when you’ve finished.