HTML - Help - How Do I Do This Thing With Frameset?
So I'm using this frameset on this one page, and I got 2 frames on it, lets call them "menu" and "main", which link to menu.html and main.html respectively.
I'm trying to simply make a href in the "main" page that goes to another page which doesn't have the frameset. so if i type <a href="page2.html" target="new">Link</a>, pretty much just using "new" as an arbitrary word here, it does what i want it to do in Firefox (exits the frameset and goes to page2.html). but in other browsers it opens a new tab for page2.html instead of opening in the same tab. I think it has something to do with the target, but i'm not entirely sure what to set it to. So, how do i get it to not open a new tab when i want to exit the frameset? Similar TutorialsOK im kinda new to HTML and ive done lots of researching online and online tutorials. What im trying to do is have a button do more than one thing. I cant use PHP or anything other just HTML. Anyone ? Thanks Ok... HOWCOME1 is in I.E., and HOWCOME2 is in FF. Can someone explain this error to me? I've never seen something like this before... Any suggestions, fixes etc. What's going wrong is circled in red... Help needed preferably. http://www.influxgaming.com/ Thanks, in advanced. Hi there, I have to create Balochi Language Dictonary. For this I have 23 Alphabates and 800 pages. Via dreamweaver I hv created a frameset contains three frames. TOP Frame contains page numbers Right Frame contains ALPHABATES MainFrame will have to display scanned pages according to alphabate and relavent page numbers. The procedure should be as follows: When visitor click on alphabate from right frame, top frame should have to display series of page # (1 to 31) and content of first page should be display within mainFrame. as visitor click on page no 2, mainFrame will have to display content of PAGE#2 and so on. as visitor click on next alphabate TOP FRAME should have to change series of page numbers now it should have to display (page no 32 to 80) I am confused how to manage this. Thanks in advance for your prompt response. With regards Raji i'm wondering if someone can tell me why this coding is returning a blank page in firefox and opera 9.5: <html> <title> </title> <head> </head> <body> <frameset cols="25%,75%"> <frame src="file.html"> <frame src="file2.html"> </frameset> </body> </html> both files exist and are in the same location as this file, but the frame tag seems to negate all other html on the page, when i enter it nothing shows up but a white page even if there is other valid code on the page!! Sorry, extreme html novice alert! I created a very simple frameset based website on dreamweaver, please look at it he www.desmondandthetutus.co.za The links all load the relevent sites in the mainframe, except the myspace link - the myspace link just clicks through to the site. Anyone got any idea why this happens? Or how I could try fix it? hi i have a frameset and where the two frames come togeather there is an ugly white border. can anybody please give me a css code to either set the border width to 0px or to color it to my background color? thanks in advance - example: http://wastedtime.co.nr dear viewers i am new to this forum . i need some help on creating a addon in internet explorer i work for quality check in a limited company. in quality checking procedure i will get a IE page where i have to check whether the spellings are correct and whether the space before after colon and fill stop are correct..... this is my checking procedure. i can find some colon spacing errors by looking at the page. but i dont want to waste my time on finding a bulky pages................... so please any one help me on creating a button or some other source which fits in Internet Explorer when i click that button it should find all the colons and compare the spaces before and after the colon and "?". remaining symbols i can add later...... thnaks in advance Hi I have this Code in HTML (not XHTML): Code: <html> <head> <title>1_html_works_with_both</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <style type="text/css"> body { margin-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; } </style> </head> <body> <table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0"> <tr> <td width="100%" height="320" align="left" valign="top" bgcolor="#FF0000"> </td> </tr> <tr> <td width="100%" height="100%" align="left" valign="top"><iframe width="100%" height="100%" frameborder="0" src="http://www.cnn.com/" name="test" id="test" scrolling="auto" /></td> </tr> </table> </body> </html> This displays a red space of 320 pixels height at the top of the page, and under it, until the bottom of the page, the CNN website (in an Iframe). This is absolutely no problem and works in Firefox and IE. Now I do the same with XHTML: Code: <!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"> <head> <title>2_xhtml_works_with_none</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <style type="text/css"> body { margin-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; } </style> </head> <body> <table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0"> <tr> <td width="100%" height="320" align="left" valign="top" bgcolor="#FF0000"> </td> </tr> <tr> <td width="100%" height="100%" align="left" valign="top"><iframe width="100%" height="100%" frameborder="0" src="http://www.cnn.com/" name="test" id="test" scrolling="auto" /></td> </tr> </table> </body> </html> This will not work in Firefox and also not in IE. It will display the same fix red space, but the iframe will not fill the page until the bottom of the page. So, there is this known fix: Code: <!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"> <head> <title>3_xhtml_works_only_with_firefox</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <style type="text/css"> html { height: 100%; overflow-x: hidden; } body { height: 100%; margin-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; } </style> </head> <body> <table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0"> <tr> <td width="100%" height="320" align="left" valign="top" bgcolor="#FF0000"> </td> </tr> <tr> <td width="100%" height="100%" align="left" valign="top"><iframe width="100%" height="100%" frameborder="0" src="http://www.cnn.com/" name="test" id="test" scrolling="auto" /></td> </tr> </table> </body> </html> But: it works only with Firefox. Firefox understands this 100% high table cell as "fill the rest of the page" while IE understands it as "a whole page height, not only the rest of the page". This results in... a scrollbar mess! I hope you can follow... you can test it with the code provided. Thanks for any help! praiser Hi, My Problem is with ie6 only I have a Menu with Mouse over that changes the background color. I have 6 different menu Home-About-partnership-findadealer-becomedealer-faq-calculator but here's the poroblem: calculator appears twice in the page and in the source code it is there only once. The proof when you try to highlight the word 'calculator ' , both are highlighted. And , Another weird thing if you go on the calculator Page: Everything is ok Any help would be appreciated Thanks first, sorry if this is in the wrong forum, because it has to be done with javascript or something... anways, i need to make something that will be able to have just a picture, 650 x 650 or so, and when it is clicked, it will change to another (hopefully random) picture. also would like to do something below the picture, a link that you can click to open the picture up in a new page, in mabey a 900 x 900 size, or reverse the clickingof link/pic if that would be easier... i could probably figure out the enlarging, but for the getting new picture i have no clue... any help would be awsome. thanks Sorry, I have no idea what to call it. The below linked website has a green sort of border on both sides of the main white page: http://www.lusu.co.uk/bowland I was wondering what coding could be used to achieve that effect? Thank you, Suzanne. Hi, I have a page with 3 frames... aframe, bframe, cframe what I want to do is, when the html (frame1.html) loads in aframe, I want (frame2.html) to be loaded in bframe automatically. I believe this can be done with "onload" but i'm not sure how to set it up and I believe onload has to work with scome script? any help appreciated. How can I get the size of each frameset . I need to get the size wen the user drags any frameset.? Plz help me. the thing i'm trying to do is creating a frameset with 2 rows and 2 columns,but i don't want the first row to be divided in 2 columns. On the first row i have a single menu so i really don't need that second column.And i don't know how to get rid of it. Framesets are the best way that i can create my pages with because using tables or divs really makes further layout developing extremely annoing. I want to remove the space between the top frame and the main frame, but the div on the main frame doesn't start on the top of the frame... http://black1c3.awardspace.com how can i do it?? Okay, so im working on a new website for my clan, and I had the crazy idea of doing it in a frameset fashion, however I've never done anything like this before. Any help, would be greatly appreciated. If this is unsuccessful or impossible that is okay. frame 1 is the navbar frame 2 is page's context frame 3 is ads for clan frame 4 is copyright Thanks! Hai, I have now a iframe on my page, that is connected to a frameset and that frameset i connected to my content. The reason that i have a frame in my iframe is because i coundt get around it because i would mess up my template. So i dont want to change this. The problem i am having know is that i want to resize my iframe according to its content. I have found a lott of scripts that do this but i dont think that this is possible because of the frameset that are located in my iframe. My iframe: Code: <iframe name="iframe" id="iframe" src="frame.html" frameborder="1" height="780" width="765">Your browser does not support inline frames or is currently configured not to display inline frames.</iframe> My frameset: Code: <html> <head> <frameset border="1" cols="40%,60%"scrolling="no"> <frame name="menu" src="menu.html" scrolling="no"> <frame name="content" src="" scrolling="no"> </frameset> </head> </html> Code: <frame name="content" src="" scrolling="no"> Is left empty because on this right side if have a menu and on the left side comes the content when you click on the menu. Everything works fine and i have no errors. I only want to know how i can make the iframe resize according to its content with the problem i have now. Thanks in advancee We have a website that was built using a frameset with the header at the top, the navigation on the left and content on the right. It was optimized for 1024x768 viewing. My question is that it displays on the left side of the wider monitors like mine and I was wondering if it is possible to center the entire frameset so that it would be balanced on each side regardless of the viewing monitor. I can get the top frame to center but have had no luck with the left and right frames. i should create a page that has a banner, footer, and navigation in the page. the problem with my code is that it doesnt show the footer..i tried alot but couldnt fix the problem.. could i have some help plz? here is my code Code: <HTML> <HEAD> <TITLE>HOME</TITLE> </HEAD> <FRAMESET ROWS = "100,500,100"> <FRAME NAME="BANNER" SCROLLING ="no" SRC ="banner.html"> <FRAMESET COLS ="150,500"> <FRAME NAME="NAV" SCROLLING ="no" SRC ="nav.html"> <FRAME NAME="home" SCROLLING ="yes" SRC ="home.html"> <FRAME NAME="FOOTER" SCROLLING ="no" SRC ="footer.html"> </FRAMESET> </HTML> hi there, I have a question regarding a Frameset and link between the frames - I wonder if it is something that can be solved with some CSS or is the design flawed because of the nature of a Frameset...... I'm a Designer but a relative novice to coding/XHTML/CSS I designed this page as I have no knowledge of Javascript/Ajax but have encountered a flaw and wondered if anyone could offer some help (very much appreciated)..... Ok here's the link: http://kierankelly.net/dansitebuild/...rameset00.html the problem arises when for example you click on "Graphics" and then view "02" in the menu, this will activate a page in the "main frame" then if I change the category to "identity" it changes the top frame but the "main frame" which I want to change back a blank page remains the same "02" page - this basically mean the structure of the site is knackered? or is the trick to assign a Div tag to link to launch x2 <a hrefs> at the same time? and thus refresh both frames? I know this is not a strict CSS question - but I've had some good help on here beforre so I thought I'd give it a shot, thanks for your time kie |