Forum Moderators: open
If I understand you properly, this is just the way frames work. Only the address of the frameset shows in the location bar. It's one of several problems that frames present as a web interface. As Jakob Nielsen says "Frames break the metaphor of the web."
The only real cure, IMO, is a redesign that doesn't use frames.
however I've seen other pages with frames (just as mine), which don't display the .htm files in de adressbar. It just remains like this: [exampleofaname.com...]
where as mine would show: [exampleofaname.com...]
now I don't want those html files showing up, just my domain name? isn't that possible for me to adjust?
...they will only see the frame itself without the main navigation
Now that I read closer, I'm thinking this is the heart of the problem you want to fix, isn't it? If so, see message #21 in this thread:
Force Many Pages Into Frames [webmasterworld.com]
It's a javascript solution that will take a framed page that someone accesses directly, and put it back into the frameset - so all the navigation and so on is there for them.
It will create some even crazier looking urls in the address bar. However, the page itself will be a lot more usable. Frames are messy.
Still it doesn't answer my core problem. Let me try to restate it.
When a person visits my page, I just want them to see
[adomainname.com...] in their adresbar, not matter what links they click on my page. Now I know this is possible, cause I've seen it on many other pages which are using frames.
Thx for the script anywas, it makes the site better indeed.
That is very odd, unless you are not using a target attribute in your anchor tags, and are loading a complete new frameset every time instead.
I would suggest you find a site that works the way you want yours to work, and then view source to see what they are doing differently.
<a href="link.html" target="main" onmouseover="window.status='Whatever text you want here';return true;" onmouseout="window.status='';return true;">Link to page</a> It's rather cumbersome, but it works well (unless the user has disallowed the masking of the status bar text in their browser preferences).
Is that what you were looking for?