Results 1 to 7 of 7
Related
-
wrap text in a cell of a html table Forum: HTML Forum
Replies: 14 -
Wrapping text around a cell in a table Forum: HTML Forum
Replies: 0 -
Can't Add Text Under My Table Forum: HTML Forum
Replies: 5 -
Align text to Centered table Forum: HTML Forum
Replies: 6 -
OnClick with Text in Table Forum: HTML Forum
Replies: 3
-
01-30-2006, 05:04 PM #1
Help with table incorporation with text
Hello everyone, I need some help with adding objects to the right of my text on an html page. I know how to add an image incorporated to the right of text:
Code:text textext text textext text text<img src="images/storyPIC/stupid/stupid_honk.jpg" width="164" height="137" style="float:right; margin-left:10px; margin-bottom: 10px" /> text text text ext text textext text textext text textext text text
-
01-30-2006, 05:49 PM #2bald headed old fart
Status- Offline
Join Date- Aug 2003
Location- chertsey, a small town 25 miles south west of london, england.
Posts- 739
Re: Help with table incorporation with text
Hi there C.Whyte,
does this help...
Code:<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <title>text span text</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <style type="text/css"> <!-- div { font-family:verdana,sans-serif; font-size:20px; text-align:center; margin-top:30px; } div span { padding:5px; border:1px solid #000; } --> </style> </head> <body> <div> This is text and <span>this is a css styled span</span> and this is more text. </div> </body> </html>
-
01-30-2006, 05:52 PM #3
Re: Help with table incorporation with text
Hmm, maybe. I'll toy around with it a little tonight. Thanks for the amazingly fast response!
-
01-30-2006, 05:58 PM #4bald headed old fart
Status- Offline
Join Date- Aug 2003
Location- chertsey, a small town 25 miles south west of london, england.
Posts- 739
Re: Help with table incorporation with text
Hi there C.Whyte,
if you find that it does not suit your purposes, then give a detailed idea of your
requirements and I am sure that we will be able to find a suitable solution.
-
01-31-2006, 09:35 PM #5
Re: Help with table incorporation with text
I toyed around with the code you gave me and I think it's a little high-tech for what I was looking for (I'm still pretty new with putting together webpages).
Basically for all my pages I start with the template I put together (I use Dreamweaver). With the template, there is a single white spaced area where I add the content / pictures / other things to. I usually just type text in that area and add pictures (with the code I pasted above) within the text so that it flows nicely.... "pictures within the text."
But now I want to do that same concept, except for instead of a picture being incorporated with the text, I would like to be able to add things like Tables, Mailing list entries, ect. Basically other things besides pictures.
I know there has to be an easy way to do this, I just have absoultely no idea.
Attached is a thumb of what I am talking about. A, B, C, and D are areas where I would like to add things such as Tables, ect.
Again, thanks for the help Coothead, i'm feeling prettyabout this stuff still.
-
01-31-2006, 09:38 PM #6
Re: Help with table incorporation with text
Please use the attachment function to upload your image, it helps keep the forums clean and easier to read.
Dave
-
02-09-2006, 03:40 PM #7
Re: Help with table incorporation with text
I don't know if this is something that can help you but if you are trying to have tables or divs next to regular text you can try using the position codes. Here is an example
<div style="position:absolute;top:0px;left:1px">
That will position the div at the top left corner of your page. You can change the top number and left number to reflect where exactly on your page you want it to be.
You can use css to make the div look like a table and have colored background font and so on as well...