New member and html help

liunx

Guest
My top left header gif georgiaheader2 isn't at the very left....what am I doing wrong?<br />
<br />
Also.....my two links for index and homes for lease are not at the bottom of the image georgiaheadertile2 ....I want them right above the blue how do I do that?<br />
<br />
Another thing i'd like is for the Our properties image and the search text to center over the property area links....?<br />
<br />
<br />
Last but not least i'd like a text links menu to the left side centered but can't seem to work in the code<br />
<br />
Oh there is one other thing I'd like to do....see the first set of images for Lake Crowley Place, i've got a good mouse over going for the image and map.....is there a way to do the same with the text to the left of the images? Or add a description text in with the images...?<br />
If I continue with the current format i'll have to have a second page for the text descriptions because they are longer than what you're seeing.....or put all the text in that area which will skew the pictures up making them uneven between each vertically because there are differing amounts of text for each property description.....any ideas there......see an example of it <!-- m --><a class="postlink" href="http://georgiainc.net/almaden_valley.html">http://georgiainc.net/almaden_valley.html</a><!-- m --><br />
<br />
Feel free to Critique me as well <!-- m --><a class="postlink" href="http://georgiainc.net/almaden_valleytest.htmlthe">http://georgiainc.net/almaden_valleytest.htmlthe</a><!-- m --> original is <!-- m --><a class="postlink" href="http://georgiainc.net/almaden_valley.html">http://georgiainc.net/almaden_valley.html</a><!-- m --><br />
<br />
<br />
I'm Lexi, married 11 years, 4 kids, 2 grandbabies, age 39, web editor, gardening, graphic making, computers<!--content-->First things first! That image you're talking about.... where is that? on what page? :confused: <br />
<br />
Also.... alot of the stuff you got there in images, you can easily put in as text an use CSS (cascading style sheet) to format it! It would reduce loading, not that it's bad right but just a heads up!<!--content-->Sorry I should have put the link up closer it's there<br />
<!-- m --><a class="postlink" href="http://georgiainc.net/almaden_valleytest.html">http://georgiainc.net/almaden_valleytest.html</a><!-- m --><br />
<br />
I know the one graphic to the left with the square pic and words can be done as text but I was having trouble getting the image slices properly and the text in between...so I just went with the graphic. the only other graphics i'll have are the header and tile at the top and thumbnails<!--content-->1) seems like it's at the very left here. i'm on Mozilla 1.2<br />
<br />
2) move that text up to the top row. it'd be best to insert a whole new column, and align that <td> to the right. prolly have to put a line break after as well, else it'll be ON the blue line, which is part of the cell background (on subsequent rows, add colspan=2).<br />
<br />
3) add align="center" to the <p> tag to center that text.<br />
<br />
4) not sure if i understand that (next to) last question.<br />
<br />
5) gotta split for now, i'll check back later to see how it's coming along :)<!--content--><b>Last but not least i'd like a text links menu to the left side centered but can't seem to work in the code</b><< this question?.....or the one below?<br />
For the above question I want to make a text menu of links to get to other pages....and this one below....<br />
In the current format when I add text and remove it..the images move apart differing widths vertically making things look messy and uneven....so some images will be spaced evenly and others will not......so i'm thinkin to put the text/property description where it is but when you mouse over you get the full description...does that make more sense? <br />
I'm going to work on the others you mentioned after dinner thanks!<br />
<br />
Oh there is one other thing I'd like to do....see the first set of images for Lake Crowley Place, i've got a good mouse over going for the image and map.....is there a way to do the same with the text to the left of the images? Or add a description text in with the images...?<br />
If I continue with the current format i'll have to have a second page for the text descriptions because they are longer than what you're seeing.....or put all the text in that area which will skew the pictures up making them uneven between each vertically because there are differing amounts of text for each property description.....any ideas there......see an example of it <!-- m --><a class="postlink" href="http://georgiainc.net/almaden_valley.html">http://georgiainc.net/almaden_valley.html</a><!-- m --><!--content-->1 My top left header gif georgiaheader2 isn't at the very left....what am I doing wrong?<br />
Is it possible you've done such a good job blending the orange image, you can't tell the image has a built-in orange margin, that matches the background exactly, so you can't even tell if it is flush against the edge?<br />
<br />
Unless of course you use Internet Explorer, you can tell by highlighting the image. Just like you highlight text, by pulling the cursor across the image while holding the left button. <br />
<br />
2 my two links for index and homes for lease are not at the bottom of the image georgiaheadertile2 ....I want them right above the blue how do I do that?<br />
Right now you have a table with two rows:+-----------+<br />
| | <tr><td> image </td></tr><br />
+-----------+<br />
| | <tr><td> two links </td></tr><br />
+-----------+Instead what you want is two columns:+-------+-------+ <tr><br />
| | | <td> image </td><br />
| | | <td> two links </td><br />
+-------+-------+ </tr>If you want to keep the orange below the blue line, you will want a table with both:+-------+-------+ <tr><br />
| | | <td> image </td><br />
| | | <td> two links </td><br />
+-------+-------+ </tr><br />
| | <tr><td colspan="2"> </td></tr><br />
+---------------+(The above are simplified and are stripped of background tags)<br />
<td align="right" valign="bottom"> two links <br> &nbsp; </td> like transmothra 2) <br />
<br />
3 Our properties image &nbsp;and&nbsp; the search text&nbsp; to center over the property area links....?<br />
The easiest thing to do is insert align="center" to the td tag directly above/adjacent to the image ourprop.gif:<br />
<br />
Take this line: <td height="0" rowspan="2"><br />
and change it to: <td align="center" rowspan="2">. <br />
And why on gods green earth do you have height="0" in there?<br />
It will center the the search text entry box & button & radio buttons too. Minor difference.<br />
<br />
You can also split the "outer" table into two rows, similar to the idea in 2, but it gets a little messy; you'd need rowspan=2. Try the above 3 first - see if you like the cheap fix.<br />
<br />
4 Last but not least i'd like a text links menu to the left side centered<br />
Huh?<br />
<br />
5a I have a mouse over that makes images get bigger. Can this be done with text to left? (I think that's what you mean).<br />
Neat javascipt! Never seen it before. Probably doesn't work in Netscape 4.x. But I highly doubt text can be modified by rollovers.<br />
<br />
5b Or add a description text in with the images...?<br />
The alt tag works for short descriptions, like <img src=http://www.htmlforums.com/archive/index.php/"cat.gif" alt="My tabby cat is so cuddly"> But after reading the paragraph that followed and looking at your sample page, <br />
<br />
I believe you want both a big picture and a lot of text to appear simultaneously when you rollover. <br />
Alas. It won't all fit on the same screen. May I suggest instead you stick with the thumbnails design you are using on almaden_valley.html (<!-- m --><a class="postlink" href="http://georgiainc.net/almaden_valley.html">http://georgiainc.net/almaden_valley.html</a><!-- m -->). Or you can click the small image to load a page another HTML page with a closeup picture and a description below it. You described a symptom of otherwise scrunching yourself. <br />
<br />
Thumbnailing shareware PMIO (<!-- m --><a class="postlink" href="http://pink-mouse-productions.com">http://pink-mouse-productions.com</a><!-- m -->).<br />
<br />
< b >Last but not least ... the code< /b ><br />
[ b ] and [/ b ] works better. In the FAQ (<!-- m --><a class="postlink" href="http://www.htmlforums.com/misc.php?s=&action=faq&page=3#HTML">http://www.htmlforums.com/misc.php?s=&a ... age=3#HTML</a><!-- m -->).<!--content-->No I don't want the orange line to show <br />
<br />
on number 4 I want a menu on the left side of the page, is that more clear...sorry fuzzy headed from sinus headache<br />
<br />
5 yes the text to the left of the image thumbnails I was wanting a mouse over and you get a fuller description. had a 14 yr old kid help me with that mouse over for the images when others said it couldn't be done :D<br />
<br />
<br />
I'll work on this later today have to go out for a bit<br />
thanks for your help!<!--content-->
 
Back
Top