non-standard inquiry (possible CSS or Jquery)

I have an image carousel here that works:
http://www.webauthorsgroup.com/index2.html

When I implement it in my page, it doesn’t appear or is “hidden”:
http://www.webauthorsgroup.com/index2.php (under the rotating text)

Can someone view the source and take a look for me?

Thx in advance

Well, we would, but that is impossible.

PHP coding is handled SERVER-SIDE and you can never see it from a web link or “browsed” page.

Therefore, you have to show us code. But, you if the two sites were identical and one had a problem, you could compare the viewable code and figure out the issue.

NEVER MIND, I did peek at your source code. The first page has no HTML page document set up. Which is okay for a testing page. The second one is a mess. I wouldn’t put MY name on that page, LOL…

So, you have many many different pages stacked one on the other. You should only have one DOCUMENT-TYPE set up per page. Also, you have several BODY tags and should have only one. You have many HEADERS on the page and you should have only one.

So, your answer: There can be only one ! (Yes a Highlander quote!)

I will guess that you just combined a bunch of pages one after the other which will never work. The browser will get lost on which doc-type to render for, the javascript will loose links to all the fields such as your carousel link. (It will only look at the first document and the rest will not exist, but, the HTML will show up.) Most likely that is your issue…

Sponsor our Newsletter | Privacy Policy | Terms of Service