Computer Forums

Member Login

Remember Me? Sign Up! | Forgot Password
 
Slogan
 
Computer Forums > Programmers Lounge > Programming Discussions » Question About Updating a Site for Someone
Closed Thread
Old 07-17-2009, 12:22 PM   #1 (permalink)
 
Newb Techie

Join Date: Jul 2009

Posts: 13

browserdaily is on a distinguished road

Default Question About Updating a Site for Someone

I am updating a site for someone and the site was built 10 years ago. She can not contact the person who built the site to began with. So she wants me to update it. She wants some pages added to the nav bar. I looked in the ftp and the first thing I looked at was the HTML on the index page. I did not see anything in there that had to do with the nav bar. The only thing I saw was a link to her file that was an image. The image was the nav bar but, the whole thing was just one image how do I add new links?

The site is - Office of the Community Lawyer Home Page

The image was - http://communitylawyer.org/images/home_nav.gif

Is there something I am not seeing?

Thanks,
Jon Bishop
browserdaily is offline  
Old 07-17-2009, 12:35 PM   #2 (permalink)
surgeVel's Avatar
 

Join Date: Feb 2008

Location: Fort Wayne, IN

Posts: 2,150

surgeVel will become famous soon enoughsurgeVel will become famous soon enough

Send a message via AIM to surgeVel
Default Re: Question About Updating a Site for Someone

If that is the case, she is probably suing some sort of .css file to manage that image in order to break it up for different links. Check in the code where that image is at. Is there any code referencing a .css file or something? What about in the header of the HTML file?

If you can copy the code into this thread using the code tags that would help me find out what you could do. But I definitely understand if you can't do that for privacy reasons.
__________________

If I was helpful, please click the icon on the left hand side of this message that looks like a check mark Thanks!

Sig courtesy of Baez =)
surgeVel is offline  
Old 07-17-2009, 12:47 PM   #3 (permalink)
 
Newb Techie

Join Date: Jul 2009

Posts: 13

browserdaily is on a distinguished road

Default Re: Question About Updating a Site for Someone

I do not see anything here is the line with the image in it.

Code:
<td rowspan="3"><img name="n27_lg_slice_r10_c12" src="http://www.tech-forums.net/pc/images/index1.jpg" width="15" height="155" border="0" alt="."></td>

    <td valign="top" colspan="2" rowspan="3" align="right"><img src="http://www.tech-forums.net/pc/images/curve_nav.gif" width="35" height="155" alt="."></td>

    <td valign="bottom" rowspan="5" bgcolor="#FF9966" align="center"><img src="http://www.tech-forums.net/pc/images/spacer.gif" width="54" height="222"></td>

    <td width="113" rowspan="5" valign="top" bgcolor="#FF9966" align="center"><img src="http://www.tech-forums.net/pc/images/home_nav.gif" width="112" height="194" alt="Navigation" usemap="#home_nav" border="0"><img src="http://www.tech-forums.net/pc/images/spacer.gif" width="1" height="1"></td>

    <td width="55" rowspan="5" valign="bottom" bgcolor="#FF9966" align="center"><img src="http://www.tech-forums.net/pc/images/spacer.gif" width="55" height="223"></td>

    <td height="4" bgcolor="#FF9966"><img src="http://www.tech-forums.net/pc/images/spacer.gif" width="1" height="4" border="0"></td>

  </tr>


Last edited by Mak213; 07-18-2009 at 09:22 PM.
browserdaily is offline  
Old 07-17-2009, 01:06 PM   #4 (permalink)
surgeVel's Avatar
 

Join Date: Feb 2008

Location: Fort Wayne, IN

Posts: 2,150

surgeVel will become famous soon enoughsurgeVel will become famous soon enough

Send a message via AIM to surgeVel
Default Re: Question About Updating a Site for Someone

Quote:
alt="Navigation" usemap="#home_nav"
This part right here inside the image home_nav.gif code shows that they are definitely using a .css file or some sort of header information to do the links.

To add some pages, you will have to edit the image to include the new items, then edit the CSS file to map a link to those new pages.

Look in there for a CSS file of some sort, or look in the header for a Navigation section.
__________________

If I was helpful, please click the icon on the left hand side of this message that looks like a check mark Thanks!

Sig courtesy of Baez =)
surgeVel is offline  
Old 07-17-2009, 01:38 PM   #5 (permalink)
 
Newb Techie

Join Date: Jul 2009

Posts: 13

browserdaily is on a distinguished road

Default

Ok, I will look.

Thank God... I found it!

Code:
<map name="home_nav"> 

  <area shape="rect" coords="51,24,116,45" href="about.html" alt="About Us" title="About Us">

  <area shape="rect" coords="2,55,119,79" href="action.html" alt="Citizens in Action" title="Citizens in Action">

  <area shape="rect" coords="14,92,119,117" href="intern.html" alt="Intern Program" title="Intern Program">

  <area shape="rect" coords="34,128,118,148" href="resources.html" alt="Resources" title="Resources">

  <area shape="rect" coords="34,164,121,186" href="contact.html" alt="Contact Us" title="Contact Us">

</map>
The only thing that I am confused about is how the coords mean?

Last edited by Mak213; 07-18-2009 at 09:22 PM.
browserdaily is offline  
Old 07-17-2009, 02:10 PM   #6 (permalink)
surgeVel's Avatar
 

Join Date: Feb 2008

Location: Fort Wayne, IN

Posts: 2,150

surgeVel will become famous soon enoughsurgeVel will become famous soon enough

Send a message via AIM to surgeVel
Default Re: Question About Updating a Site for Someone

probably pixels with x horizontal, y horizontal, x vertical, y vertical. Either that or x start, y start, x height, y length.

Not sure just by looking at those, but mess around with the numbers till you figure out what it is. Personally I just use separate images or a CSS file to do navigation bars, but this website is old so it is using old techniques.
__________________

If I was helpful, please click the icon on the left hand side of this message that looks like a check mark Thanks!

Sig courtesy of Baez =)
surgeVel is offline  
Old 07-17-2009, 02:22 PM   #7 (permalink)
 
Newb Techie

Join Date: Jul 2009

Posts: 13

browserdaily is on a distinguished road

Default Re: Question About Updating a Site for Someone

Ok,

Also, do you know how to find out the image pixies so I can find out what to do with the numbers. If not that's fine.

Thanks you helped me a lot.
browserdaily is offline  
Old 07-17-2009, 02:25 PM   #8 (permalink)
surgeVel's Avatar
 

Join Date: Feb 2008

Location: Fort Wayne, IN

Posts: 2,150

surgeVel will become famous soon enoughsurgeVel will become famous soon enough

Send a message via AIM to surgeVel
Default Re: Question About Updating a Site for Someone

Do you have an image editor? Such as Photoshop? If so you can probably open it up and look at grid view, or look at the bottom of the image window to see if it displays the coordinates on there.

Something like this would help:

__________________

If I was helpful, please click the icon on the left hand side of this message that looks like a check mark Thanks!

Sig courtesy of Baez =)
surgeVel is offline  
Old 07-17-2009, 02:26 PM   #9 (permalink)
office politics's Avatar
 
It's all just 1s and 0s

Join Date: Jan 2004

Location: in the lab

Posts: 4,410

office politics will become famous soon enough

Default Re: Question About Updating a Site for Someone

can be done in mspaint, look in lower right corner


office politics is offline  
Old 07-17-2009, 03:12 PM   #10 (permalink)
surgeVel's Avatar
 

Join Date: Feb 2008

Location: Fort Wayne, IN

Posts: 2,150

surgeVel will become famous soon enoughsurgeVel will become famous soon enough

Send a message via AIM to surgeVel
Default Re: Question About Updating a Site for Someone

Quote:
Originally Posted by office politics View Post
can be done in mspaint, look in lower right corner

Very nice. I wasn't sure if MS Paint did that. Been ages since I opened that program.
__________________

If I was helpful, please click the icon on the left hand side of this message that looks like a check mark Thanks!

Sig courtesy of Baez =)
surgeVel is offline  
 
Closed Thread

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
32-bit WinXP question, regarding RAM White_Wolf Windows Operating Systems and Software 1 12-21-2008 03:19 PM
Samba Questions - Can I use "test" as an acct? + Home Dir Mapping Question. Jayce Linux, BSD, other *nixes & Open Source Software 0 12-01-2008 05:14 AM
looking to create a mothers day site ? MikeFuryXP Web Graphics, Design, Digital Images 1 05-13-2007 10:49 AM
Legit Site? Stevo808 Browser & General Internet Questions 2 04-20-2007 06:05 PM