Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

HTML Forum


You are currently viewing our HTML Forum as a guest. Please register to participate.
Login



Post a Project »

Find a Professional HTML Freelancer!

Find a Freelancer to help you with your HTML projects

FREE Outsourcing eBook!

Reply
how would I do this??
Old 11-28-2006, 10:21 AM how would I do this??
adp
Average Talker

Posts: 15
Name: joe
Trades: 0
I am trying to create a set of links that would open the linked site in a new browser window and contain a heading with the linked site info populating the lower portion of the window below the top "frame". how would I pull this off using dreamweaver 8?

to illustrate this, look at the basista furniture site and select a choice from the manufacturers drop down menu on the left. I would like to do this but not from a drop down menu, just as text links.

thanks in advance!
adp is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 11-28-2006, 11:09 AM Re: how would I do this??
LadynRed's Avatar
Defies a Status

Posts: 10,017
Location: Tennessee
Trades: 0
You would have to use frames in the new browser window - frames are just not good to use.. and neither is opening up new browser windows.

I looked at the furniture site and I see no good reason for them to be opening new windows either, everything stays on their site, so why open a new window ? People DO know how to use their "back" buttons, so let them and stop opening new windows in their face. From a usability standpoint, new windows are just not a good practice.
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!

Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE

LadynRed is offline
Reply With Quote
View Public Profile
 
Old 11-28-2006, 11:16 AM Re: how would I do this??
adp
Average Talker

Posts: 15
Name: joe
Trades: 0
I agree about the usability point. I think the purpose is to actually open up the entire other website from the various manufacturers yet "brand" the site by placing the banner at the top suggesting people call in to the store for the items shown on the different manufacturers sites.

I would like to know how to accomplish this as an end point, even if the methods are different.
adp is offline
Reply With Quote
View Public Profile
 
Old 11-29-2006, 09:29 AM Re: how would I do this??
blackhawkpowers's Avatar
Ultra Talker

Posts: 313
Name: Dustin
Location: GA
Trades: 0
I did not look at the site but if the user is staying on your site I would agree it's not a good idea to open a new window it's just very frustrating to have to close 5 or 6 browsers when done viewing a site. However when I link people to other sites I generally do it in a new window just so they at least have to come back to mine. Anyway I'm not sure about your first question but to open links in a new window the code looks something like
HTML Code:
 <a href=http://www.google.com target="blank"> Google </a>
__________________
A patch is a piece of software which replaces old bugs with new bugs.

Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE
blackhawkpowers is offline
Reply With Quote
View Public Profile Visit blackhawkpowers's homepage!
 
Old 11-29-2006, 09:39 AM Re: how would I do this??
adp
Average Talker

Posts: 15
Name: joe
Trades: 0
well, I would like ot send people to another site in a new window but I want to "frame" the site with a banner of info on top containing info on our site and contact info, etc.
adp is offline
Reply With Quote
View Public Profile
 
Old 11-29-2006, 09:49 AM Re: how would I do this??
Mooofasa's Avatar
Defies a Status

Posts: 1,611
Name: Michael (mik) Land
Location: England
Trades: 0
frames are the only HTML method.
__________________

Please login or register to view this content. Registration is FREE
- Tumblog with thoughts, quotes, links, videos, images and my creations.

Please login or register to view this content. Registration is FREE
- The best free web browser.

Please login or register to view this content. Registration is FREE
- Firefox is now Firefail.
Mooofasa is offline
Reply With Quote
View Public Profile Visit Mooofasa's homepage!
 
Old 11-29-2006, 10:22 AM Re: how would I do this??
blackhawkpowers's Avatar
Ultra Talker

Posts: 313
Name: Dustin
Location: GA
Trades: 0
You really should reconsider using frames although it would allow you show that information it makes search engines go crazy when they attempt to index your site.
__________________
A patch is a piece of software which replaces old bugs with new bugs.

Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE
blackhawkpowers is offline
Reply With Quote
View Public Profile Visit blackhawkpowers's homepage!
 
Old 11-29-2006, 10:23 AM Re: how would I do this??
Extreme Talker

Posts: 188
Trades: 0
As the rest of people on this site, I too hate pop-ups and Frames (iframes are OK in some situations) but I no what you are trying to do so here a bit of code....

Code:
<frameset rows="80,*" frameborder="no" border="0" framespacing="0">
  <frame src="http://www.yoursite.com/topbanner" name="topFrame" scrolling="No" noresize="noresize" id="topFrame" title="topbanner" />
  <frame src="http://www.someothersite.com" name="mainFrame" id="mainFrame" title="othersite" />
</frameset>
-------- rows="80,*" --------------

80 being the number of pixels high you want the top frame
twiggy is offline
Reply With Quote
View Public Profile Visit twiggy's homepage!
 
Old 11-29-2006, 10:37 AM Re: how would I do this??
adp
Average Talker

Posts: 15
Name: joe
Trades: 0
I hate frames as well... I just can't think of any other way to accomplish what I would like to do, which is display a website from our many manufacturers that we represent while displaying our contact info at the top for people to get a hold of us.

thanks for all of the help so far!
adp is offline
Reply With Quote
View Public Profile
 
Old 11-29-2006, 10:56 AM Re: how would I do this??
Extreme Talker

Posts: 188
Trades: 0
Well what about the code I had posted...

Any good?
twiggy is offline
Reply With Quote
View Public Profile Visit twiggy's homepage!
 
Old 11-29-2006, 11:27 AM Re: how would I do this??
adp
Average Talker

Posts: 15
Name: joe
Trades: 0
I think I may be doing something wrong. In Dream Weaver, I opened a new document, cut and pasted the code, changed the URL's to something real and when I viewed it, it didn't work. I am sure your code is fine, I am not that familiar with frames apparently. I can knock out pages in DW but this has me a bit stumped.
adp is offline
Reply With Quote
View Public Profile
 
Old 11-29-2006, 11:39 AM Re: how would I do this??
Extreme Talker

Posts: 188
Trades: 0
Code:
<head>

<title>Frames Layout</title>

</head>

<frameset rows="50%,*" frameborder="no" border="0" framespacing="0">
  <frame src="http://google.com" name="topFrame" scrolling="No" noresize="noresize" id="topFrame" title="topabnner" />
  <frame src="http://www.webmaster-talk.com/html-forum/68663-how-would-i-do-this.html" name="mainFrame" id="mainFrame" title="othersite" />
</frameset>

<noframes>

<body>

</body>

</noframes>

</html>
In this one I have split the page in half (50% each frame) the top frame should show google.com and the bottom frame should show this topic, check it and see if it works.



Just out of interest make sure the browser your using supports frames.
twiggy is offline
Reply With Quote
View Public Profile Visit twiggy's homepage!
 
Old 11-29-2006, 01:16 PM Re: how would I do this??
adp
Average Talker

Posts: 15
Name: joe
Trades: 0
thanks Twiggy! this seems to do the trick! awesome advice.
adp is offline
Reply With Quote
View Public Profile
 
Old 11-29-2006, 06:15 PM Re: how would I do this??
Extreme Talker

Posts: 188
Trades: 0
no problem glad to help
__________________

Please login or register to view this content. Registration is FREE
twiggy is offline
Reply With Quote
View Public Profile Visit twiggy's homepage!
 
Old 12-07-2006, 02:35 AM Re: how would I do this??
Novice Talker

Posts: 5
Name: Daniel Gaubette
Trades: 0
this kind of website listing directory should be very organized, you might need to look at other site, see here i found well organized and full of contents here http://www.ontowns.com/Furniture-Sto....srad.list.htm
Gaubette is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to how would I do this??
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.45389 seconds with 12 queries