Jump to content

GhostRider2110

Members
  • Posts

    9
  • Joined

  • Last visited

Posts posted by GhostRider2110

  1. Question about this...

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html><head>	<title>Tableless Layout</title>	<style type="text/css">			#wrapper		{			width: 780px;			margin: auto;		}				#left		{			float: left;			width: 200px;			border: 1px solid red;		}				#right		{			float: right;			width: 576px;			border: 1px solid green;		}		</style></head><body><div id="wrapper">	<div id="left">	LEFT	</div>		<div id="right">	RIGHT	</div>	<br style="clear:both"/></div></body></html>

    NOTE: I used 576px as the width for #right. This is to account for the 4px of border (1px on left and right of both columns) so the math is 200 + 576 + 4 = 780.Keep this in mind. You will always have to account for borders, padding, and margins. Everything must be equal or less then the wrappers width.

    How would I add an img between the left and right.. What I am trying to do is a header which has text on the lft, logo image in the center, text to the right... Below is a tag line and mini inline nav bar... I can get all positioned except getting the img centered between teh two text areas. ThanksSee-yaMitch
  2. maaan... i'm not getting much help with this thing. but anyway i tried context, crimson, pspad, nvu, notepad2. i eliminated context and nvu. i think i'll eliminate crimson. and i think i'll try out more extensively pspad and notepad2. i dont feel like downloading any other to try out- time, time, time- MY time :) but i still wanna know how to set the default or various browsers in pspad to view pages. which editor has such feature besides dreamweaver? anyone?EDIT: I just opened a project i am working on in pspad (all the pages). and i really hate how the tabs are- it's confusing i think.- and the tabls alone take up soo much space. i think it will be difficult to match dreamweaver with all of its features (and i'm not talking about the design view- strictly code view)
    Have you tried coffeecup? I come from a Unix/Linux background so vi/vim are good for me. But when working and learning HTML coffeecup seems to be a good middle ground... Check it out...Get CoffeeCup Software
  3. Thanks.. I found where I was messing up.. Seems I did a cut/paste from my internal test style to an external style sheet and has junk in there which FF/Opera/IE6 didn't like. Thanks - I will look at that site you mentioned... I need all the help I can get!!See-yaMitch

  4. I don't know that the line you added is required for all situations. (might be wrong)Here is what I have been coding with based on some information from the w3c site. I wish I could find the link directly, but their site is difficult to navigate. :)
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"		"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"><head>	<title>An XHTML 1.0 Strict standard template</title>	<meta http-equiv="content-type" 		content="text/html;charset=utf-8" />	<meta http-equiv="Content-Style-Type" content="text/css" /></head><body>	 <p>... Your HTML content here ...</p>  <p>	<a href="http://validator.w3.org/check?uri=referer">validate the xhtml</a>  </p>  </body></html>

    Thanks, that line is for IE.. Here is the W3C link: http://www.w3.org/QA/2002/04/valid-dtd-list.htmlI'm sure there is just something small I am missing....See-yaMitch
  5. menu system, which I want to use as an SSI include. Anyway, just getting this menu to work under CSS is driving me bonkers.. (Ok.. I already am)..Two URLshttp://www.ussma-midwest.org/scalemasters/.../css/menua.htmlhttp://www.ussma-midwest.org/scalemasters/...s/css/menu.htmlThe only diff between the two is menua.html has theCode:

    <?xml version="1.0" encoding="utf-8"?>

    at the top as per I read for proper doc types....Local in the Preview everything displays as it should A virtical menu, black boxes with white letters, hover over and the box turns red... Firefox 1.5x and 2.0 just gives me horizontal text links. IE6 will display properly with menu.html but menua.html displays the HTML source, IE 7 seems to display both properly..... Any help would be greatly appreciated... The idea and code came from http://www.cssplay.co.ukThanksMitch

  6. (Also if this is in the wrong forum sorry.. please move to more approate forum)Ok... I'm not an HTML expert by any means.. I can do basic HTML and have been trying to get something like this formated...Using a table I want to have a page from another web site display in the table...One col table Row 1 NAMERow 2 Info from other pageThe page I want to include it this one:http://wow.allakhazam.com/profile.html?875785This is for a guild web site to we can inculde the stats that these pages have in local pages...Thanks for the help...

  7. I really like the CoffeeCup tools.... Been using them for many years for my editing under Windows. Being a Unix/Linux admin and purest I use VI (Vim) a lot for quick and dirty edits... For that question about why VI... Well no mater what system I am on, it is there.. It has been a default piece of software for as long as I have been working on Unix type systems.. EMAC/NANO/PICO any of the others may or may not be loaded... Plus it was the first one I learned and learned the in's and outs.. It is a very powerfull editor...

×
×
  • Create New...