HTML - Custom Address In Address Bar
Hello.
I am pretty new at this, so any help would be appriciated. I want to put a custom text in an address bar of user's browser, so that any page on my site shows www.mydomain.com instead of www.mydomain.com/mypage.html or www.mydomain.com/asubpage.php. I don't want users to see the titles of subpages of my site. My server supports PHP, so I could write this in either HTML or PHP, but don't know how. Is this possible to achieve and if so, how? Similar Tutorialshello, i want to be able to add an address bar on to a html webpage that can send the user to a link that they type in. any help would be great thanks sir nerdalot Sorry if this is the wrong section to post in but as I have explained I'm new to this & I don't fully understand what everything means. But my question is this: A long time ago somebody told me of a method in which I was able to make a nwe forum topic via the address bar. There were spaces to put the message, topic title, topic icon etc. But being slow I forgot it. I was just wondering if anyone could help me with this as I would like to use it to make multiple topics on my new message board & I don't want to type the whole topic out again everytime I post. Again I'm sorry is this is the wrong place to post a quaestion like this. Thanks, Jonny. Hi, In most of the web sites nowadays we can see an icon appearing before the URL in the address bar. What is the technique behind it ? Even in this web site it appears. Hey does anyone know how to put the 16x16 images in there address bar ive heard all kindes of ways i just want the right answer, any help very much appreciated cheers Hey, I'm a bit of a newbie at this, and I have a question for the experts.... I want to set up a textbox within a page that will act as an address bar. Basically, I want to be able to enter a web address into the textbox, and have the page open in another frame. I have a page with 2 frames right now - one containing the textbox, the other that will be the main browsing window. Do I need some CGI script to pull this off? Is there some way that I can restore the text entered in the box into the action= of the form? Thanks in advance for the replies. Hi I've tried to search for this but no luck so far I've been trying to hide the real location of my page I have a domain that's being redirected into a folder of a hosting I have the domain is something like www.*mydomain1*.com where really is being hosted is www.*mydomain2*.com/mydomain1 well, if I go to www.*mydomain1*.com the address bar switches to: www.*mydomain2*.com/mydomain1 I would preffer to hide mydomain2 and show only www.*mydomain1*.com in the address bar I don't mind if that gets fixed and doesn't reflects the page I'm browsing Thanks Regards GQ How we can put image with web address like this image + http://www.yahoo.com Hi, How can I make a logo appear in the address field in the browser? Normally a little "E" sign appears next to the URL. Can somebody help? Thanks I have designed a website in pure HTML coding and uploaded it on to my hosting server. When i visit the site the full URL is not displayed e.g. http://google.com instead of http://www.google.com PLEASE HELP this is doing my nut in !!!! I've begun to notice that most websites now, up on the address bar, have a logo, to the left of the "http://..." address. Is it a piece of html code, or something else? My guess is the latter.. i have a domain registered with network solutions, do i have to pay for it? Thanks, -Adam adam79@toast.net I need to know how to make an html/javascript based script to make a VERY simple address bar that acts exactly like the address bar on all web browsers. When you type in where you want to go.. well.. It takes you to the url you just typed in! No restrictions are needed (anti-porn for example) and I'm hoping it can be in the shape of a regular old form script that is easily editable. Please don't ask why the hell I would need one but I just do. Thanks in advance Hi All, Im trying to align an Address with an imbeded map i found this code on the internet so now im in the process of changing it to fit my needs, But i can seem to get it right. All i want is the Address on the left with a space between then the inbeded map which is from good. Heres the CSS HTML Code: #mapcontainer{ overflow:hidden; width: 1000px; /*margin:0 auto;*/ } #ChaucerAddress{ /*left column containing the addresses*/ width: 500px; text-align: center; margin-right:5px; } #ChaucerAddress ul.location{ /*UL containing the addresses. Do not change "location" class name*/ list-style-type: none; margin: 0; padding: 0; } #ChaucerAddress ul.location li{ margin-bottom:10px; position:relative; padding:10px; } #ChaucerAddress ul.location li.selected{ /*style for selected LI*/ } #ChaucerAddress ul.location li.selected:after{ /*add arrow after selected LI*/ position:absolute; content:''; border-color:transparent transparent transparent; left:100%; top:0; border-style: solid; border-width: 15px; /*adjust this property to change height of arrow*/ } #mapcolumn{ /*right column containing the Google Map*/ float: right; } #mapcolumn iframe{ /*style for Google Map IFRAME*/ width: 490px; height:350px; } .ContactUsPageLayout { margin-left: auto; margin-right: auto; min-height: 420px; } Heres the HTML HTML Code: <%@ Master Language="VB" AutoEventWireup="false" CodeBehind="ContactUs.master.vb" Inherits="ChaucerDirect2011.Site" %> <!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"> <head id="ContactUsHead" runat="server"> <script type="text/javascript" src="/JavaScript/GoogleMapSelector.js"></script> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script> <link href="~/Styles/GoogleMapSelector.css" rel="Stylesheet" type="text/css" /> <link href="~/Styles/Site.css" rel="stylesheet" type="text/css" /> <title>Chaucer Direct Contact Us</title> <asp:ContentPlaceHolder ID="ContactUsHeadContent" runat="server"> </asp:ContentPlaceHolder> </head> <body> <form id="ContactUs" runat="server"> <div class="ChaucerBackGround"> <div class="header"> <div class="MainPageDetails"> <a href="/About.aspx">About Us</a> | <a href="/Account/Login.aspx">Existing Customers</a> | <a href="/Account/Register.aspx">Contact Us</a> </div> <div class="ChaucerLogo"> </div> </div> <div class="main"> <asp:ContentPlaceHolder ID="ChaucerLocation" runat="server"/> <div id="mapcontainer"> <div id="ChaucerAddress"> <ul class="location"> <li class="selected"> <a href="http://maps.google.co.uk/maps?q=CT5+3FD&hl=en&z=16&vpsrc=0">Chaucer Insurance</a><br /> ChaucerDirect<br /> Prospect House<br /> Chaucer Business Park<br /> Thanet Way<br /> Whitstable<br /> Kent<br /> </li> </ul> </div> <div id="mapcolumn"> <iframe id="ChaucerInsuranceLocation" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com?output=embed"></iframe> <br />+<a href="http://maps.google.com" class="largermap"">View Larger Map</a> </div> </div> </div> <div class="footer"> <div class="FooterText"> </div> </div> </div> </form> </body> </html> Thanks in advance. Sorry forgot to attach the image is there a way of bringing them closer together because they look a bit daft and please excuse the alignment situation managed to fix that its just a matter of bringing them closer.... Dear experts, I want to have a simple form in my website whereby user can give comments etc. I would like to ask if my code is correct or not. <form id="comment-form" action="mailto: contact@blahblahblah.com"/> <input type="button" value="Submit" id="submit"/> I'm not sure if the submit part syntax is it correcet whereby user when they press the button, the form details will go into my email address. Hope someone can advise me. Many thanks. How do u put icon on my website? My website icon can only appear on Firefox only Internet Explore and opera cant see the website icon. Recently our web devolper for our karnival group has stepped down. He gave me the user name and password for the ftp and for strato.de . I want to create a database but I can not figure out how to becuase I do not know what my web hosting software is.(IE Plesk) Is there a way I can find this out because I can not contact the old web master... Thanks! Matt Hello, Is there a way to hide the address bar of a pop-up window? I need to hide it for IE and Firefox. I imagine some client-side scripting will be required, which is fine, but I'm wondering if anybody has any ideas. Thank you. I am extremely new to html, but made a search engine to search specific sites by attaching the user input search term at the end of another websites search engine Example: <input value=" http://www.domain.com/search=" type="checkbox"> Domain <br> Result: http://www.domain.com/search=SEARCH_TERM. Because some websites put the search term in the middle of the address bar, how do I make it so the search term is in the middle of an address? Example of a desired Result: http://www.domain.com/search=SEARCH_TERM.abcdefg.html Thank you very much! Hello, I'm a bit stuck with how to code this so if anyone can rattle this off in seconds I'd really appreciate them doing so: Rather than have visitors to my site click on a flag to visit a page based on their country of residence I want them to click one URL, then the code on this page work out if they are from UK, USA, or any other country and re-direct them to either page 1, page 2 or page 3. Is there a way for this to be done? Thanks. Does anyone know a html or javascript code that displays the users computer (network adapter's) mac address? Hello I trying to make somewhat of a database with HTML. I made a flash program that can send information using the URL for example. This forum site URL. http://www.htmlforums.com/newthread.php ?do=newthread&f=4 everything after the "?" is what I am talking about. I don't know how to create a HTML file to take that info and store it to a file of any type. Could any one tell me how to do this or just tell me where to go to learn about it? |