[advanced search]
 

Go Back   NamePros.com > Discussion > Web Design & Development > Programming

Programming PHP, Perl, Ruby on Rails, AJAX, HTML, XHTML, CSS, JavaScript, MySQL and any other coding topics.


Closed Thread
 
LinkBack Thread Tools
Old 05-22-2006, 01:26 AM   #1 (permalink)
New Member
 
Join Date: May 2006
Posts: 3
0.00 NP$ (Donate)

edd9139 is an unknown quantity at this point


Please help me...

http://www.photo-archive.jumbahost.com/edd2/index.php

I'm working on a simple template for a new site, and have encountered several problems. It was looking alright in html/css, and then after I inserted a php menu and converted the site to php, the layout started to get screwed up. So oculd anyone please tell me/show me how to fix the below issues.

Issue 1: The navigational vertical line is over too far to the right, and should be where the red dots are to line up with the horizontal lines. This was fine before I changed it to PHP. So how do I get it to align up with the horizontal lines again?

The blue dots on the image occurred when taking the image at low quality, they do not appear on site.

http://img148.imageshack.us/img148/1...eprob010vk.gif

http://img148.imageshack.us/img148/7...eprob027vn.gif

Image 1 shows where it is, and where it should be. Image 2 shows again where it should be.

Issue 2: This can be seen in http://img148.imageshack.us/img148/7...eprob027vn.gif The box (div???) on the left of the words ‘Filler’ should not be there, and again I do not know why it is there. So what do I do to remove this?

Issue 3: http://img208.imageshack.us/img208/1...eprob037rb.gif

In the red circle on the left, the rounded corner should not be there, and should in fact be where I circled blue, and I just cannot work out how to get it there, and where I’m going wrong. So what do I need to adjust?

Issue 4: At the top of the page, there is a 50px green area, and I wish to have one at the bottom, except have tried several different ways and just can’t seem to do it right. So how do I make a 50px green space at the bottom, to mirror the one at the top?

Any help is appreciated thanks.
edd9139 is offline  
Old 05-22-2006, 06:51 AM   #2 (permalink)
Senior Member
 
Shorty's Avatar
 
Join Date: Sep 2005
Location: England
Posts: 1,035
102.05 NP$ (Donate)

Shorty is just really niceShorty is just really niceShorty is just really niceShorty is just really nice


I can solve issue 2 right away.

Open the source and find:
<div class="style14" id="pageNav"></div>That div is empty and unneeded, i'm pretty sure thats the extra box. I'd like to point out it wasnt appearing in firefox and I was puzzled for a sec...it shows in IE though.

Anyway, I checked out issue 1 and to me it looks like you've already solved that, it's where you indicated it should be as I see it.

Issue 3: Your problems are actually bigger than that, view it in FireFox. They're actually in the right places in IE but not in FireFox. I'm not entirely sure this will work, but give it a try. Chances are i'm wrong, this thing normally requires a lot of trial and error.

Find <div class="relatedLinks"> and then find the </div> that closes the div, after all the links you've got. Try putting this directly after it:
<div style="background: url(bl.gif) no-repeat; width: 10px; height: 10px; float: left"></div>

Issue 4. If you look in your source code you've got <div id="pagecell1">. I looked into your css and here's the code for it:

#pagecell1{
position: absolute;top: 50px;bottom: 50px;
height: 90%;left: 2%;right: 2%;width:95.6%;background-color: #ffffff;
}

All you need is a new div along the same lines, but without position absolute. I'd suggest the following:

#bottomblock {
height:50;
background-color: #ffffff;
color:#ffffff;
}

And then at the bottom of your document simply have: <div id="bottomblock">.</div>

If I made any errors just reply here again and i'll fix them, good luck with it.
Shorty is offline  
Closed Thread


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

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


Site Sponsors
Advertise your business at NamePros

All times are GMT -7. The time now is 04:13 PM.


Powered by: vBulletin® Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.3.0
Template-Modifications by TMS
vBCredits v1.4 Copyright ©2007 - 2008, PixelFX Studios

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85