Last edited by tradesho1; 05-02-2013 at 09:56 PM.
Hi Adam,
Yes the file is there but it is under a directory as follows: C:\Users\Public\Public Documents\NetObjects Fusion 2013\Online\stylesheets emphasis mine but notice that my system calls the documents directory (public documents) If NOF is looking for the link you gave me it won't find them.
I also uninstalled and reinstalled the software. Didn't help.
The links do not show up as links but they are clickable, weird.
Maybe the .css file is corrupted? I see it as a text file but maybe something in it isn't right? Just guessing now.
Raymond
Should I see about downloading another copy of the program? Is this a problem that is being reported by others?
Raymond
Hello could you please try making an edit to C:\Users\Public\Documents\NetObjects Fusion 2013\Online\index.html moving the stylesheet imports form the head into the body.
Before
<head>
...
<link rel="stylesheet" href="stylesheets/screen.css">
<link rel="stylesheet" href="stylesheets/online-view.css">
</head>
After
</head>
<body>
<link rel="stylesheet" href="stylesheets/screen.css">
<link rel="stylesheet" href="stylesheets/online-view.css">
...
You can make these changes with a plain text editor such as notepad if you feel comfortable editing HTML directly.
Shifting the CSS imports from the <head> to the <body> section did not fix the problem for me - result remains virtually the same.
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Online View</title>
</head>
<body>
<link rel="stylesheet" href="stylesheets/screen.css">
<link rel="stylesheet" href="stylesheets/online-view.css">
<h1>Home</h1>
<ul id="tile-grid"></ul>
<script src="javascripts/libs/moment.js"></script>
<script src="javascripts/libs/jquery-1.9.1.js"></script>
<script src="javascripts/libs/jquery.ui.widget.js"></script>
<script src="javascripts/libs/jquery.transit.js"></script>
<script src="javascripts/libs/jquery.mousewheel.js"></script>
<script src="javascripts/widgets/jquery.ui.tile.js"></script>
<script src="javascripts/widgets/jquery.ui.actiontile.js"></script>
<script src="javascripts/widgets/jquery.ui.feedtile.js"></script>
<script src="javascripts/widgets/jquery.ui.sitestile.js"></script>
<script src="javascripts/widgets/jquery.ui.modal.js"></script>
<script src="javascripts/online-view.js"></script>
<script src="javascripts/actions.js"></script>
</body>
</html>
Christian
Didn't help me either.
in the index.html page where you showed me the calls for the .css and the javascript files are all forward leaning clashes "/" where PCs use backward leaning slashed as you have them above. Below is a copy of the html of the index page.
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Online View</title>
</head>
<body>
<link rel="stylesheet" href="stylesheets/screen.css">
<link rel="stylesheet" href="stylesheets/online-view.css">
<h1>Home</h1>
<ul id="tile-grid"></ul>
<script src="javascripts/libs/moment.js"></script>
<script src="javascripts/libs/jquery-1.9.1.js"></script>
<script src="javascripts/libs/jquery.ui.widget.js"></script>
<script src="javascripts/libs/jquery.transit.js"></script>
<script src="javascripts/libs/jquery.mousewheel.js"></script>
<script src="javascripts/widgets/jquery.ui.tile.js"></script>
<script src="javascripts/widgets/jquery.ui.actiontile.js"></script>
<script src="javascripts/widgets/jquery.ui.feedtile.js"></script>
<script src="javascripts/widgets/jquery.ui.sitestile.js"></script>
<script src="javascripts/widgets/jquery.ui.modal.js"></script>
<script src="javascripts/online-view.js"></script>
<script src="javascripts/actions.js"></script>
</body>
</html>
Could this have anything to do with the problem.
Also my software is using Java 1.7 external without giving me any option to change it. I am running a later version. Could that be a problem? Java version 7.0.210
Raymond
Yes, the web, which has always primarily run on Unix systems, uses (forward) slashes to delineate file paths. Unix has done this since 1965. Windows, just because Microsoft wanted to be different, uses backslashes to delineate file paths. The browser only looks for (forward) slashes and AFAIK NoF uses the Internet Explorer engine to display its online view (although Adam may correct me on this). So I don't think it's anything to do with this.
There are no java calls in the code above (javascript is not the same as java; javascript is interpreted by the browser; java requires the java runt-time environment) so I don't think the Java version has anything to do with this, either.
I know this isn't much help as I haven't helped you get much closer to a solution to your problems, but knowing how things work usually helps at least a little bit.
Last edited by franko; 05-11-2013 at 02:13 AM.