random > showing up on the site i am designing

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
cdesigns
Forum Newbie
Posts: 3
Joined: Tue Oct 25, 2011 10:41 pm

random > showing up on the site i am designing

Post by cdesigns »

hello!

i am completely new here, and my expertise is not in coding, i am a designer and have a very basic understanding of coding. i am working on a site for a client. i hired someone to do the wordpress implementation. other than that, it is pretty basic. i have been using dreamweaver for template and page creation. i am not even sure if this is a php issue.

i have created a template for all of the secondary level pages. and there is a > showing up at the top of every page. i can not figure out how to remove this! it does not show up on the index page, which does not use a template.

here is the test server for the site: http://208.109.46.166

a secondary page example is here: http://208.109.46.166/services.php

if more info is needed to resolve this, please let me know. as i said i am new, and just figuring things out!

i would greatly appreciate any ideas or help anyone give to help resolve this!

thank you much
User avatar
social_experiment
DevNet Master
Posts: 2793
Joined: Sun Feb 15, 2009 11:08 am
Location: .za

Re: random > showing up on the site i am designing

Post by social_experiment »

It doesn't look like a html tag that isn't closed. Can you paste the code that creates the services page?
Edit
/Templates/krns_scndry_pgs.dwt.php <-- Problem could be related to this page
“Don’t worry if it doesn’t work right. If everything did, you’d be out of a job.” - Mosher’s Law of Software Engineering
User avatar
manohoo
Forum Contributor
Posts: 201
Joined: Wed Dec 23, 2009 12:28 pm

Re: random > showing up on the site i am designing

Post by manohoo »

I took a look at your html code:

Code: Select all

    </tr>
    </table></td>
    >
    <td width="1"></div></td>
Notice the lingering ">"... find it and remove it
The first </td> tag is incorrect. Also, <table> and <tr> tags are missing before <td width="1">... assuming that you are closing one table and creating a new one. Or... you could be embedding a table in a table... There might be more errors, but that's what you seem concerned about.
Last edited by manohoo on Wed Oct 26, 2011 2:01 am, edited 1 time in total.
User avatar
social_experiment
DevNet Master
Posts: 2793
Joined: Sun Feb 15, 2009 11:08 am
Location: .za

Re: random > showing up on the site i am designing

Post by social_experiment »

@manohoo Good find
“Don’t worry if it doesn’t work right. If everything did, you’d be out of a job.” - Mosher’s Law of Software Engineering
cdesigns
Forum Newbie
Posts: 3
Joined: Tue Oct 25, 2011 10:41 pm

Re: random > showing up on the site i am designing

Post by cdesigns »

@manohoo thank you, thank you, thank you! that worked! i am so grateful :)

if i can ever offer any assistance in the design arena, i will be happy to do so!

thanks,
c
Post Reply