trouble with images and css

ramirez1128

New Member
Messages
2
Reaction score
0
Points
0
Ive been using dreamweaver to build my site and upload part of my site by linking to the an fpt. It works fine in dreamweaver but then ill try going to the site and it breaks my links to the images and css
Edit:
oh yea here is my code if it helps



<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<title>ericramirez.elementfx.com</title>

<script type="text/javascript" src="ddtabmenufiles/ddtabmenu.js">



</script>

<!-- CSS for Tab Menu #1 -->
<link rel="stylesheet" type="text/css" href="ddtabmenufiles/ddtabmenu.css" />

<!-- CSS for Tab Menu #2 -->
<link rel="stylesheet" type="text/css" href="ddtabmenufiles/glowtabs.css" />

<!-- CSS for Tab Menu #3 -->
<link rel="stylesheet" type="text/css" href="ddtabmenufiles/solidblocksmenu.css" />

<!-- CSS for Tab Menu #4 -->
<link rel="stylesheet" type="text/css" href="ddtabmenufiles/ddcolortabs.css" />

<!-- CSS for Tab Menu #5 -->
<link rel="stylesheet" type="text/css" href="ddtabmenufiles/chromemenu.css" />

<script type="text/javascript">
//SYNTAX: ddtabmenu.definemenu("tab_menu_id", integer OR "auto")
ddtabmenu.definemenu("ddtabs1", 0) //initialize Tab Menu #1 with 1st tab selected
ddtabmenu.definemenu("ddtabs2", 1) //initialize Tab Menu #2 with 2nd tab selected
ddtabmenu.definemenu("ddtabs3", 1) //initialize Tab Menu #3 with 2nd tab selected
ddtabmenu.definemenu("ddtabs4", 2) //initialize Tab Menu #4 with 3rd tab selected
ddtabmenu.definemenu("ddtabs5", -1) //initialize Tab Menu #5 with NO tabs selected (-1)

</script>

<style type="text/css">
<!--
#apDiv1 {
position:absolute;
left:0px;
top:118px;
width:735px;
height:42px;
z-index:1;
}
#apDiv2 {
position:absolute;
left:145px;
top:332px;
width:466px;
height:331px;
z-index:2;
overflow: hidden;
visibility: inherit;
}
#apDiv3 {
position:absolute;
left:1px;
top:1px;
width:443px;
height:123px;
z-index:3;
}
.style1 {color: #FFFFFF}
-->
</style>
<link href="Slideshow 2!/css/slideshow.css" rel="stylesheet" type="text/css" />
<body>

<div id="apDiv1">
<div id="ddtabs5" class="chromemenu">
<ul>
<li><a href="http://forums.x10hosting.com/programming-help/" rel="cm1">Home</a></li>
<li><a href="http://forums.x10hosting.com/programming-help/" rel="cm2">Images</a></li>
<li><a href="http://forums.x10hosting.com/programming-help/" rel="cm3">Contact</a></li>
<li><a href="http://forums.x10hosting.com/programming-help/">Forums</a></li>
<li><a href="http://forums.x10hosting.com/programming-help/" class="style1">Random</a></li>
</ul>
</div>
</div>
<div id="apDiv3"><img src="http://forums.x10hosting.com/programming-help/Untitled copy copy.jpg" width="728" height="120" /></div>
<h2>&nbsp;</h2>

<br />
<br />
<p></p>



</html>
 
Last edited:

xav0989

Community Public Relation
Community Support
Messages
4,467
Reaction score
95
Points
0
Make sure you use the same folder hierarchy on your website ( do not change my/folder to my/other/folder or even my/folder2 ) as it can be a reason why all links are broken.
 

sunils

New Member
Messages
2,266
Reaction score
0
Points
0
ya yes xav0989 said, check with the directory hierarchy in your system as well as in the server... its mostly due to this.
 
Top