HTML - How Do I Hide Categories In Page Link?
im makeing a page to store files..
how do i hide the page link so it doesnt show the categories (btw my index is .com/*****/*****/index.html) & if its possible to make it so that the browser doesnt show the category in history... (only .com) Thanks! Similar TutorialsI have not touched HTML for months, now work brings me back to it. Simple question. I am using images as links. I don't want any symbol active or visited link around the image. How do I simply get rid of this. Thanks! I know there's got to be a pretty easy way to do this but I am having difficulties. I'm making a FAQ for my website, and all I want to do is have a list of questions, and you can click the question and the answer will appear directly underneath it. Then if you click the question again, the answer will become hidden. Sounds easy enough right? How do I do it? Hello, I have a html page and a drop down menu on top. The drop down menu is for like users. The user has to pick their role and based on that, the page will only show some parts of the content. So I have the drop down on top (e.g Developer, Editor, etc) and based on what they pick, hide the contents that they're not supposed to see. Is this possible with HTML? What do I need to do? Hi... I am doing online streaming webpage...so, i gave the coding like this <TD vAlign=top><TD width="100%"> <P align=center> <EMBED name=mediaplayer1 pluginspage=http://www.microsoft.com/Windows/MediaPlayer/ align=center src=mms://wma1.viastreaming.net/cricket width=488 height=370 type=application/x-mplayer2 controller="true" loop="0" transparentstart="1" autostart="true" EnableContextMenu="false" showstatusbar="1"></P></TD> but, in most cases, visiters can get the mms://wma1.viastreaming.net/cricket l, go for the link inside the site's source code. so, please could you tell me how do i hide that mms protocol link in to my sourse code. thanks Hi Is there a way to hide my url when a user clicks on a link on my page that directs them to another site? Basically I don't want other web-sites to see that visitors came from my website. Hi there, I'm experiencing a strange problem in IE with the show-hide layers behavior. I have 4 layers, each with images inside them which are meant to link to other pages. This works fine in Firefox but not so in IE. The odd thing is that when you hover over the images in IE the link appears in the status bar and if you right click and choose "open link" it does work. The site is here www.patons.org/v2/ and its the images at the top that I'm talking about. Any help would be much appreciated. Thanks, Alex Hey there! I'm kinda new here, but I really need some help. I'm trying to show/hide the Swedish translation to our lyrics on our band WP page. It can be viewed here. I'm using a table with separate <td>'s for every individual lyric and every individual translation. The translations are in <div>'s. This is included in the header: <script type="text/javascript"><!-- function showhide(el){ el=document.getElementById(el); el.style.display=(el.style.display=="block")?"none":"block"; } //--></script> And this is the code for my little Swedish flag you click to make the translation DIVs visible. The names within '' are the different lyric DIVs. <p>Show/hide translation: <a href="#" onclick="showhide('armourswe');showhide('seamsswe');showhide('breathswe');showhide('cornersswe');sho whide('cunningswe');showhide('whiteswe');showhide('graniteswe');showhide('liliesswe');showhide('beac hesswe');showhide('pebblesswe');showhide('rockswe');showhide('ruinsswe');showhide('sarabandeswe');sh owhide('unknownswe');return false;"><img src="http://www.alpha60.net/wordpress/images/swedish.jpg" alt="Show/hide Swedish translation" /></a></p> Why does IE move the left column down when the translations are visible? It works fine in Firefox. I'm not a HTML king and tried a long time to get this far, so I'd really love some help! Address: http://www.alpha60.net/lyrics /Leo from Sweden I am having issues with a flash intro and decided to try and just place it on a separate page when visiting my father's website - www.raymorteam.com. So I took all of the code currently on his homepage and created a copy of the page - http://www.raymorteam.com/files/35241/Main_Page.html However, I only want the copy page to show www.raymorteam.com in the addressbar. How do I go about doing this? I've seen it at www.ch131.com. Take a look at that page - any link you click will only show the parent web address in the address bar. I want my father's page to do that for this specific page. Thanks. Ok, This might be a bit confusing but ill try my best. On my main website homepage i have a splash image which when clicked redirects to the main website, also in another folder i have a phpbb3 Forum. Below the image on my homepage i have a login box for the forum as well. What i would like to do is to hide that login box unless a keyword is entered before hand, and make the domain.com/forum URL inaccessible unless you login through this route. basically hiding the forum completely so people dont actually know its there. I could do this through .htaccess however i was hoping there was a "cleaner" way to do this. Many Thanks Rob How to link one page to another page in HTML? ------------------------------------------------------ is there any way i can link to the current displayed page. for example: Code: <a href="/">root</a> would link to the root domain. is there something similar i can use? thanks I have been trying everything possible, going from pillar to post on the internet, trying to work out how to link to another page in my folder. I basically have a folder called "webpage". In that folder is index.html & products.html. in the index.html codes, i have put tabs so i can link to other pages. 1 tab is called products. I have entered in: <div class="mybutton"> <a href="products.html"> <center> <button style="width:160;height:24; background-color:#97cfc3">Products </button></a><br> </center> </div> but it just says... "THIS WEB PAGE CANNOT BE FOUND". any help would be drastically appreciated!!! Hello, Can someone tell the code to make something like this page. It has the boxes right in the middle with the link code inside the box. http://www.myspacearcade.com/page/2.html I just want to make the box with the link inside the box. I just launched this new site, www.dvbenefits.net , and I need link to an external form with Aetna. Here is the issue... I'd like for people to land on: (PAGE B) https://ips.aetna.com/Retail/Quote/QuoteInfo.aspx HOWEVER it needs to come from the below page to be "tagged" to my comissions. (you can see my name in the lower right side) (PAGE A) https://ips.aetna.com/Retail/Home_Lo...d=kvW7H2/Zx1M= I am loosing clicks do to this extra step. Is there a script that I can put on my site that can tell (PAGE B) that the visitor is comming from my ID (PAGE A) without having to land on (PAGE A)? Can anyone advise on how I can do this? Thanks! I have a select option that I want to categorize the values for. I want a space (if possible) between the categories and I want to show the category heading before the options for each category. The "value" for the non-heading options is a unique id that I get from an array taken from a database. I am populating the select using an asp for loop. Here is an example: Code: <select> <%For i = 0 to UBound(Controls, 2) - 1)%> <option value="<%=Controls(0, i)%>"><%=Controls(1, i)%></option> <%Next%> </select> Any idea on how I can do this? Thanks a ton in advance!!! I need a hyperlink to be run from another page other than it resides on. The hyperlink itself calls a script function which only recognizes the input from the one specific page the hyperlink is on. (the hyperlink script call looks like; [page5_url]) I have design constraints forcing that hyperlink to be actived from *another* page. How is best to do this? Simplest measure possible is what im' looking for. I'm not a script writer, so, I really need help on this one. Thanks in advance for your input! Hey guys, I'm kinda new to HTML/CSS. I am making a website in Dreamweaver 8. I'm having trouble doing something, and I don't even know if it is possible. I made a page using CSS and DIV tags to define each pane. Now the center (main) pane will show whatever page you want to display (ie. Home, Media, Contact, etc.). I made each page as a separate HTML file (ie. Home.html, Contact.html, Media.html, etc.), is there a way to link each of these pages to the main pane (div tag) so I can keep all other panes unchanged (menus, banner, etc.) and just display the content in the mentioned center pane? Thanks! Hello, I know if I want to direct my page to a new document all I have to do is enter this in the HTML code: <a href="http://www.hotmail.com">New link</a> But what if I wanted instead of click on the New link simply hover on top of it and directs me to www.hotmail.com. How do I do that? hi. this may sound noob... but instead of a linking a page like so, <a href="http://www.google.com">google</a> i want to make it so it opens in a another window instead of the one the person is using. thanks Hi All, Im not to sure how to explain this but i will try my best, Firstly i have a data dictionary that goes from 1 to 148, and when a user clicks on what ever table they want to view it then appears at the bottom of the data dictionary but my box has asked me to set it out as follows. When you click one of the tables in the data dictionary then we ideally want it to open a new internet tab and according to what content they clicked on in the data dictionary that content will appear in the new internet tab Unfortunately im stuffed on how to do this, This is how the data dictionary is layed out. SR Table name View 1 "The table name" Table "" "" "" "" "" "" 148 "" "" And the contents on each table is located under this data dictionary telling the user what the table contains etc. Im just puzzled on how i can populate a new tab with the information they have requested from the data table? Any suggestions? possible ideas would be highly appreciated. Thanks for the looking. |