I fixed it by using a different formatting. Instead of placing the leftColum div inside the contentBlock div, I seperated them and placed them both in a encapsulating div set to a specified height. The using 100% height on both and specified widths. I'll post the code for those curious.
[CODE="html"]
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">...
User Profile
Collapse
-
Thanks for that, Doctypes are one of the only things my intructor in college failed to explain. One of those 'just because' kinda things, I can't remember the statement for declaring the doctype, and forgot to google it before I started this site. Nice to know the information as to how they are used. Unfortunetly it still fails to correct the empty space issue I'm having.
I notice though the problem seems to lie with the contentBox,...Leave a comment:
-
I used this article to make a program automatically run at startup at my last co-op using the MMC console. It worked great, something you might try. Not sure if you can get the program to login as well though.
-PunchBackLeave a comment:
-
Excel lets you save as web page. You may be able to pull something out of that, as it seems to surround it all in a table. Sure makes some messy code. though.Leave a comment:
-
Depending on how it is written I would place this table after the first of the three tables with the right alignment, so that it appears after the first, and aligned to the right....Leave a comment:
-
It's been a while since my PHP, so I had to refresh the memory with a google. I found this sample code from
http://www.apluskb.com/scripts/How_c...nswer2330.html
[CODE=php]<?php
$link = mysql_connect(' localhost', 'mysql_user', 'mysql_password ');
if (!$link) {
die('Could not connect: ' . mysql_error());
}
echo 'Connected successfully';
mysql_close($li nk);...Leave a comment:
-
You could use CSS styling with an absolute position. Although tables are outdated now in the <table></table> tags do the following
<table style="position : absolute; left: X; top: Y></table>
where X and Y are the value of position from the top left corner at 0, 0. Remember to identify the units as well (ex: left: 100px; top 150px)
-PunchBack...Leave a comment:
-
This is what I'm looking at right now.
[CODE="HTML"]
<html>
<LINK REL=StyleSheet HREF="style.css " TYPE="text/css" MEDIA=screen>
<!--Wraps all divs to adjust to center of screen-->
<div class="divWrapp er">
<div class="pageBord er">
<head>
<link rel=stylesheet...Leave a comment:
-
Doesn't seem to change anything. I'm going to try a few different things with the encapsulating div. Thanks though....Leave a comment:
-
White space, or automtically padding div elements problems in IE.
Im having trouble getting this site to show correctly in IE (big surprise). I have a div element (side bar) inside another div element that simply takes the size of the largest element inside as the height. Firefox correctly sizes the div to the sidebard with no space. However, IE seems to automatically place padding on the div, leaving unwanted whitespace below the element. I have attached pictures as to what I mean, and have dashed to border...
No activity results to display
Show More
Leave a comment: