HTML - Is It Possible To Create Dual Links?
Hi Everyone,
Sorry about the title, I couldn't think of another way to call it. What I was wondering is it possible to have some text eg. "click here" but the when the user actually clicks on the text above it initiates two things: 1. Takes me through to a certain page where the user can do a certain task, in this case they will enter into a competition of some sort. but at the sametime (if possible) 2. initiate a link to say an "advertising link" but the window never opens if I'm making sense? I hope i've made some sense with what I'm hoping to achieve. Thanks, Monte Similar Tutorialsok so im a rtard with computers and im tring to be a webmaster lol. i got stuff like this http://adultfriendfinder.com/go/g1293359-ppc that im wondering if i can make it a link in email or on my friend finder profile or in a setting like this. and what about **** like this <script type="text/javascript" src="http://banners.cams.com/go/page/js_ad_pop?plain_text=1&skip_lpo=1&win_width=1024&win_height=768&page=model&pid=g1293359-pct&lang=english" charset="iso-8859-1"></script> How do you create a box, table, sidebar, or whatever you call it on the side of your webpage to place links to other pages on your site, so that it is separated from the body of your webpage? Obviously I am new to webpage creation and HTML, so any help is appreciated Not sure how to ask this. I place a navigation link menu at the top of each main page of my web site, with the current page highlighted and unlinked. When I add a new page, I have to search out all of the pages that contain the navigation menu and manually update each page individually. What I wanted to do was to create a single file that contains the navigation links with any page having the ability to access that code. That way I only have to update that one file when I add a new page to my site. I can do it with PHP, but then I will have to rename each page .php instead of .htm . So then I thought about JavaScript, but I've read that Google doesn't index JavaScript links. Is that true? If so, does anyone have another suggestion as to how I can accomplish this? Hi, as the title says, I am wondering if there is a way to include the content of a link in the page itself. example: this is a regular link to a html page: <a href="next.html">next</a> let's say I don't want the file next.html, is there a way to include the content of next.html somewhere and refer to it from the page directly? I am not sure I am explaining this well, so I'll say it again: I want to be able to put several html files in one file, meaning I click on links for pages defined in the same html file I am viewing. (this is for use with a tab system in iframes generated dynamically from a database) As an exemple, if we use an iframe, you can include html code between <iframe>html code here</iframe> directly without using src, so I guess we can do the same for just about any link? for sure this can be done, but can it be done in html or do I have to use javascript or something? thank you Hello Everybody, I want to create a website which has 1) Header Image 2) Menu and sub menu 3) Content (main data when above menu items are clicked) 5) Footer which should be there for every page. I have created the website using frames and got everything but when window is not 100% then content is not centered. I have done evenything in HTML. I want to re-design the webpage without using frames Please let me know how to display the content in same page when a menu item is clicked. Help me not sure if i need a js for this but I have a web page using page jump links to navigate a FAQ page. However, I would rather have a drop down menu/form with the links instead of a list of text links. Anybody have a clue? thanks in advance. This is what I have so far as an example... <form name="jump"><select id="select" name="select"> <option value="" selected="selected">Select</option> <option value="#1">Category 1</option> </select></form> <a id="1" name="1"></a> Category 1 This problem is simple in need, but a little complex to explain. What I am looking for is a way to create a flowchart or a sitemap of each HTML file rather than my whole site. I need a program or application that will do this for me automatically instead of having to create this manually. I have all ready tried Visio, but it does not do what I desire. Specifically, I have multiple anchor links within each HTML file. These anchor links point to other 'panels' on my page. Within those 'panels' might exist additional links - external or internal. At some point, those links will end at a 'panel'. I need a way to visually show where each anchor link is going, where those links came from (which panel they originated from), and if any of them are 'broken'. I have attached two files that may explain this better. The flowchart_example.jpg shows exactly what I require (more or less). I really just need the boxes (labeled Panel 00, Panel 01, etc.), how each connects to the other based off of links that are in the HTML file, and eventually show where the links end (no more links in the panel). I do not need the '1 Click' or '2 Clicks' to show up. Those can be manually added later. The an_example.html file shows an HTML file that has the anchor links and external links that would need to show up in the flowchart. This HTML file more or less mirrors what I am looking for in the flowchart_example.jpg file. When I refer to Panel 00, that is the top of the page, after the title and black line (where the script actually begins). The user must start at the top. They cannot skip around to other panels. This is why a visual flowchart would be quite helpful. Additionally, the links at the top (scripts, reference, transfers, etc.) along with the top and back buttons on each panel should be ignored when creating the flowchart. Any information or assistance in finding an application or a way to accomplish this would be greatly appreciated. Thanks in advance. I think there is a simple fix for this...but I can't think of it. My client has an existing site (not very well designed and no templates) with hundreds of static pages. She wants me to create a new home (index.htm) page that is just a simple landing page where people can choose to enter her website OR visit the store to purchase products. Simple enough...but, now all of the 100's of static pages have the link Home=index.htm on them. I want people to type in the URL: www.mysite.com (for example) and land on the new page to choose to go to the site to learn about her and her music OR go to the store to shop. Once they are in the site, however, and hit the home link, I don't want them to go 'all the way back out' to the new landing page. I want them to go back to the 'old' index.htm page (or her current home page), without having to change the index.htm links on those 100's of pages. Is there an easy fix for this, using a naming convention for the home page? Any help would be greatly appreciated. I am a bit stumped on this one. Hello Please see this page. I am trying to build a progress bar (static) to show how far for example someone has upgraded their health regen skill compared to how much it's possible to. The bar will always be 400 pixels wide, 12 pixels tall. PHP calculates the two widths (on/off) perfectly. The problem is rendering it. It is made up of 2 images: "On" "Off" I have come up with 3 possible ways to show these. Code: $bar = "<div class=\"barOff\" style=\"width: " .FULL. "px;\"><img src=\"images/layout/barOn.gif\" style=\"width: " .$widthOn. "px;\" alt=\"\" /></div>"; $bar = "<img src=\"images/layout/barOn.gif\" class=\"barOn\" style=\"width: " .$widthOn. "px;\" alt=\"\" /><img src=\"images/layout/barOff.gif\" class=\"barOff\" style=\"width: " .$widthOff. "px;\" alt=\"\" />"; $bar = "<table class=\"bar\"><tr><td class=\"barOn\" style=\"width: " .$widthOn. "px; \"></td><td class=\"barOff\" style=\"width: " .$widthOff. "px; \"></td></tr></table>"; Here is the CSS that goes with it: Code: .bar { width: 400px; height: 12px; background: none; border: none; border-collapse: collapse; } .barOn { height: 12px; background: #FF8000 url(images/layout/barOn.gif) no-repeat top left; } .barOff { height: 12px; background: #808080 url(images/layout/barOff.gif) no-repeat top right; } In relation to the 3 lines of code I gave you: Method 1: Image in a div. This allows all widths to show as desired, but sometimes the "Off" bar is on top of the "On" bar. Also, the "On" bar is nudged down a bit. Method 2: Two images. Positioning and sizes are correct, however the images are clearly crunched up. Method 3: Table with 2 cells. Positioning is correct, and images show fine, however probably due to minimum cell width under 2% and over 98% don't quite make it. There is always a tiny gap. I do so hate rendering problems very much. Fortunately both Internet Explorer and Firefox show the problems in the same way. I would be extremely greatful if someone comes up with a solution to this. Thanks for your time. Hi Experts, I have a form that is used to collect member information. After the members inputs the info and hits submit button it should redirect them to a Merchant site. Is it possible to have a dual action SUBMIT button on a form. For ex: Action -1) When the user clicks on a SUBMIT button the data gets saved to the database (which it does right now) Action -2) And at the same time redirect the user to merchant HTTPS Site for online payment processing .- How do I do this?? I want to incorporate the below code into the submit button as a secondary action. Code: <form action="https://www.myvirtualmerchant.com/VirtualMerchant/process.do" method="POST"> <input type="hidden" name="ssl_merchant_id" value="my_virtualmerchant_ID"> <input type="hidden" name="ssl_user_id" value="my_User_ID"> <input type="hidden" name="ssl_pin" value="my_PIN"> <input type="hidden" name="ssl_show_form" value="true"> <input type="hidden" name="ssl_test_mode" value="false"> <input type="hidden" name="ssl_invoice_number" value="???? PASS INVOICE"> <input type="hidden" name="ssl_transaction_type" value="ccsale"> <input type="hidden" name="ssl_amount" value="???????? PASS TOTAL $$$"> <input type="submit" value="Click Here to Complete Your Order - USE FORM BUTTOM"> </form> I would like to use one SUBMIT button for both actions. Thanks in advance for your help. Vinny Hi everyone, I hope I have posted this in the right area. This is my first time posting here. I currently have my main pages listed at the top of my site as graphics (see fussybaby.ca). I would like to potentially remove these graphics and use text links instead - I had the graphics designed for me, so I can't just go in and make new ones, however I'd like to change/rearrange the links and add some new ones. So my question is: How hard is this to do? Is this something I need to hire someone to do for me? Thanks in advance for any advice! I am looking to sell -shirts on Ebay and I would like to be able to point customers to my ebay store by links on the auction page similar to this seller here. http://<br />
http://cgi.ebay.com/C...QQcmdZViewItem Can someone tell me how to create something similar to what this seller has posted at the top where the blinking letters read Click on your size with the shirt sizes just to the right of that? Thank you! I want to create a Link bar, just like n4g's. Look right at the top and you will see a grey bar with liinks. How do i go about doing this? Thanks http://n4g.com/ Hi everyone, I am a new member of the forum. It is very pleasant for me to be in this forum. I read in the HTML for Dummies book and see the instruction of creating a background for the Website: "If you like backgrounds that provide a veritcal band down one side, you can create those backgrounds by making very short (just a few pixels) and very wide (at least 1280 pixels) images that look like a cross-section of the background effect you want. That image, after you tile it, produces aband down the side of the monitor" I don't really know how to do the background like the instruction above. Can anyone give me some advice to do it? Thanks a lot. Hi Experts, I want to create the page structure shown in the snapshot below using CSS and HTML. The header part is an image which is off same size as shown in the snapshot. All the blue boxes are links, along with the lists in the bottom of the page. Hi all, I have a menu as a list.... <ul> <li><a href="/jsp/forms_center/hr_general.jsp">HR General</a></li> <li> </li> <li><a href="/jsp/forms_center/benefits.jsp">Benefits</a></li> <li> </li> <li><a href="/jsp/forms_center/payroll.jsp">Payroll</a></li> <li> </li> <li><a href="/jsp/forms_center/it_forms.jsp">IT</a></li> <li> </li> <li><a href="/jsp/forms_center/office_forms.jsp">Office Services</a></li> <li> </li> </ul> From this I would like to have a separate sub-menu for each item on the list. For example when they move the mouse over benefits a separate menu should come up showing different benefits. Any suggestions? Thanks in advance for any help, Jehan I want to link to a website in such a manner so that when the person clicks on the link, a new browser window pops up in front of the current window? How is it done? I have an online Html game and was wondering if it is possible to make some sort of scoreboard system for it, the scoreboard just needs to be a list of names that someone can add themselves too. I need it so that when you get to the final finished page in the game you can enter your name once. I would like this list to be seen on the homepage but without the option to add your name to it. Thanks in advanced for any help. TTC, Hi All, I'm a co-founder of an organization by the name of CLEAN Education, I am responsible for the web site because I'm pretty tech savvy. The site is he www.cleaneducation.org I'm currently cleaning the website to try to make it much more functional for me to update and make it consistent on multiple browsers. Question: How can I make a template? Currently when I want to alter part of the non individual page specific parts (such as the right column that is for recent news) I have to go through each and every page to alter it. Can I make a a template that has everything other than the center white part that is page specific and then somehow call on the content for the page specific part for each page? Altering 10-15 pages on a weekly basis is becoming tedious. Thanks all How do you pick a minimum resolution for the website? Such as the width? Whats the current standard for browsers today would you say most people have today, 1000px wide would be a good guess? Ash |