473,795 Members | 2,854 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

links not aligning right

Hello:

I am a webmaster for a non-profit organization. I do know some
HTML, but I'm by no means an expert. Recently, many pages on our site
were redesigned by a professional web designer, who volunteered his time
for a one time improvement. Now, I'm trying to add a new page to our
site, and make it look consistent by removing and replacing the text in
an existing page. However, in the one page the links at the bottom page
are centered and are in two neat lines, like the rest of the site. In
my page, the links are squashed on the left hand side at the bottom. The
pages I'm referring to are:

http://www.reaps.org/Links.html (the links at the bottom of the page are
formatted properly)
http://www.reaps.org/publications/ca...castings2.html (the links are
not displaying properly) .

Like I said, I'm not an expert, and the professional designer has used
a lot of HTML tags I'm not overly familiar with, such as <span>, and he
also uses table tags in ways I'm not familiar with. Obviously, I've done
something wrong, but I'm not sure what I've done. Perhaps some of you
experts could compare the code of the two pages and let me know what
I've done wrong. Also, could somebody explain what the <maptags at the
bottom of the page are supposed to do? I assume they have something to
do with image maps, but there's no image maps at the bottom of our
pages. I'm thinking it's useless code I can delete, but I'm not sure.

Thanks,
Corey

P.S. The page is not a "live" page yet, and some of the links don't work
yet, just so you all know. That's something I do know how to fix.
Oct 8 '07 #1
4 2474
Corey Walker wrote:
>
http://www.reaps.org/publications/ca...castings2.html (the links are
not displaying properly) .
Those links are placed in an inner table when they should be in the
outer table.
[...] Also, could somebody explain what the <maptags at the
bottom of the page are supposed to do? I assume they have something to
do with image maps, but there's no image maps at the bottom of our
pages. I'm thinking it's useless code I can delete, but I'm not sure.
It looks like completely useless code. Remove it and see what happens.

--
jmm (hyphen) list (at) sohnen-moe (dot) com
(Remove .AXSPAMGN for email)
Oct 8 '07 #2
Corey Walker wrote:
>
Recently, many pages on our site were redesigned by a professional
web designer, who volunteered his time for a one time improvement.
That was nice of him, so I guess you can't complain. Still, if he was
going to use graphics using black text on white backgrounds, he could
have declared default colors at the same time (in a stylesheet, which he
doesn't seem to know about).

body { color:black; background-color: white; }
The pages I'm referring to are:

http://www.reaps.org/Links.html (the links at the bottom of the page are
formatted properly)
http://www.reaps.org/publications/ca...castings2.html (the links are
not displaying properly) .

Also, could somebody explain what the <maptags
at the bottom of the page are supposed to do? I assume they have
something to do with image maps, but there's no image maps at the bottom
of our pages. I'm thinking it's useless code I can delete, but I'm not
sure.
The Map3 element is what makes links out of the top nav bar in the
banner. If you delete them, the top nav links won't work (unless you
replace the banner image and use individual button images or actual text
links).

Map and Map2 are not used on the page you mention (Links.html) but are
carryovers from another page (similar to the Home page, q.v.), where
there are button-like graphics near the bottom of the page. The Links
page doesn't need Map or Map2 (unless you add similar graphics to that
page).
--
John
Pondering the value of the UIP: http://improve-usenet.org/
Oct 8 '07 #3
Corey Walker wrote:
Hello:

I am a webmaster for a non-profit organization. I do know some HTML,
but I'm by no means an expert. Recently, many pages on our site were
redesigned by a professional web designer, who volunteered his time for
a one time improvement. Now, I'm trying to add a new page to our site,
and make it look consistent by removing and replacing the text in an
existing page. However, in the one page the links at the bottom page
are centered and are in two neat lines, like the rest of the site. In
my page, the links are squashed on the left hand side at the bottom. The
pages I'm referring to are:

http://www.reaps.org/Links.html (the links at the bottom of the page are
formatted properly)
http://www.reaps.org/publications/ca...castings2.html (the links are
not displaying properly) .

Like I said, I'm not an expert, and the professional designer has
used a lot of HTML tags I'm not overly familiar with, such as <span>,
and he also uses table tags in ways I'm not familiar with. Obviously,
I've done something wrong, but I'm not sure what I've done. Perhaps some
of you experts could compare the code of the two pages and let me know
what I've done wrong. Also, could somebody explain what the <maptags
at the bottom of the page are supposed to do? I assume they have
something to do with image maps, but there's no image maps at the bottom
of our pages. I'm thinking it's useless code I can delete, but I'm not
sure.

Thanks,
Corey

P.S. The page is not a "live" page yet, and some of the links don't work
yet, just so you all know. That's something I do know how to fix.

You appear to have missed out a couple of table tags.

The bit you need to change is just above the affected links in the
source code. Search for '<div align="center"> ' - then look for the bit
above that looks like this:

</span></td>
</tr>
<tr>

Then change it to look like this:

</span></td>
</tr>
</table></td>
</tr>
<tr>
Oct 8 '07 #4
John Hosking wrote:
Corey Walker wrote:
>>
Recently, many pages on our site were redesigned by a professional web
designer, who volunteered his time for a one time improvement.

That was nice of him, so I guess you can't complain. Still, if he was
going to use graphics using black text on white backgrounds, he could
have declared default colors at the same time (in a stylesheet, which he
doesn't seem to know about).

body { color:black; background-color: white; }
>The pages I'm referring to are:

http://www.reaps.org/Links.html (the links at the bottom of the page
are formatted properly)
http://www.reaps.org/publications/ca...castings2.html (the links
are not displaying properly) .

Also, could somebody explain what the <maptags at the bottom of the
page are supposed to do? I assume they have something to do with image
maps, but there's no image maps at the bottom of our pages. I'm
thinking it's useless code I can delete, but I'm not sure.

The Map3 element is what makes links out of the top nav bar in the
banner. If you delete them, the top nav links won't work (unless you
replace the banner image and use individual button images or actual text
links).

Map and Map2 are not used on the page you mention (Links.html) but are
carryovers from another page (similar to the Home page, q.v.), where
there are button-like graphics near the bottom of the page. The Links
page doesn't need Map or Map2 (unless you add similar graphics to that
page).

Thanks, I deleted the excess code and it's working just fine. I just
wish the other guy had used the comments tag a few times, to explain
what some of these tags were to the non-expert. But I'll figure it out
as I go along, I guess.

Corey
Oct 9 '07 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
4741
by: Hal Vaughan | last post by:
I have a JComboBox with a list of numbers, from 1 digit to 5 digits. Numbers with more than 3 digits have a comma in them. I've been aligning them with leading spaces. Is there any simple and quick way to align all the items in a JComboBox with the right edge of the box (which, in this case, would mean all columns keep the same place value)? Thanks! Hal
4
1887
by: erikd | last post by:
I'm trying to set up a standard "footer" on my pages. I just discovered by reading this newsgroup that straight html is no good and I need to learn how to do it using css. So I while I'm learning css I took some code from a sample web page, but I don't think it's optimal. What I'm trying to achieve is a horizontal rule at the bottom of the page with a text block left aligned on the left and right aligned on the right. So there would be a...
10
8507
by: Carolyn Marenger | last post by:
I think this is an easy one, but I have not been able to find it anywhere. In HTML, I used <center><img src="whatever.gif></center> to horizontally center a graphic on a page. What is the CSS way of doing the same? Thanks, Carolyn ----== Posted via Newsfeeds.Com - Unlimited-Uncensored-Secure Usenet News==---- http://www.newsfeeds.com The #1 Newsgroup Service in the World! 120,000+ Newsgroups ----= East and West-Coast Server Farms -...
6
1894
by: Colin Walls | last post by:
I am writing some HTML and CSS that will eventually be produced by a program for running fencing tournaments. Everything is fine apart from column alignment for numbers. Have a look at http://murorum.demon.co.uk/engarde/poules.html. The V/M column should be centred, while the Indicator and HS columns should be right aligned. Since I was defining column widths within a <colgroup> I thought it would be cleaner to define the alignment of...
1
1925
by: Linux Boy via .NET 247 | last post by:
(Type your message here) Hi everyone, I would like to ask a question about aligning text within one label. I have an application that everytime the user click on Enter Record button, they will be prompt an input box to enter employee names and sales figures. The output then will be displyed in only 1 label using a For loop. The layout would be under 3 columns: Employee name (left justified), Sale figures (right justified) and Bonus...
28
2250
by: kiqyou_vf | last post by:
I'm trying to pull data from 2 different tables and do a loop to retrieve more than one row. I'm having problems with aligning the information. Can someone lead me in the right direction? I've done some looking myself and found something called GROUP BY? Is that what I need to use? Thanks in advance.
1
1541
by: kiqyou_vf | last post by:
Sorry, Google wouldn't let me post a reply. Here is the convo thus far: Jerry Stuckle wrote: > kiqyou_vf wrote: >> I'm trying to pull data from 2 different tables and do a loop to >> retrieve more than one row. I'm having problems with aligning the >> information. Can someone lead me in the right direction? I've done some >> looking myself and found something called GROUP BY? Is that what I need >> to use? Thanks in advance.
11
3103
by: designkitt | last post by:
Hello, I am having a problem aligning a cell in a table and have tried everything I can think of to correct this without any luck: It appears that the white area, which is an image in the background of this table within a table is shifted slightly to the right. It's driving me crazy. Any help would be greatly appreciated. Here is the url and the code for the whole page: http://kittelbergerdesign.com/indextest.html <html> <head>...
2
4098
by: Berlin Brown | last post by:
This is a simple div/layout question. I could easily solve the problem with a table, but I don't want to do that. I have a row of links. I want row 1 to have links and row 2 to have links. I want both to align such they are on the right (edge up to the right). Here is my code or one variation of it. <div style="float: right; text-align: right;" id="row1">
0
9673
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9522
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
1
10167
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10003
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9046
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5566
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4114
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3730
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2922
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.