10,650 Topics
| |
I have worked on this for hours and I can't get it to work...any help on the code appreciated! Thanks. <html> <head> <title> My Calculator - Constance Dobbins </title> <script> function getInputAsText(_id){return document.getElementById(_id).value} function getInputAsNumber(_id){return parseFloat(document.getElementById(_id).value)} function setOutput(_id, _value){document.getElementById(_id).value = _value} function calculate (code) { //declare variables var first var … | |
I got the js to load but i can not figuer out how to verify without mail being passed through instead of caught out using googles example and watching you tube videos. I am updating exisiting mail form that has validation on it. I tried the php plugins but they … | |
Hello, I would be grateful if someone could help me with aligning the text before the language flags, so that they are in the order: S'inscrire.... Contact Plan du Site, on the same line as the flags.... My link is http://www.parspas.ch/parspas/index.php TIA. | |
Hello, I have a png (png-24) image which currently makes 500kb, but it is taking a rather long time to load when posted on my website, and I would like to reduce its size to around 200kb so that it can load faster. Anyone knows how to do this on … | |
I know website with MSword -pretty simple...I need to create website like cnn.com-newsletter type.I tried the simpliest way- just creating single web page per each document,and hmm,it works, but when you start editing html , some of the pages can't be edited,because- all stuff wiped out only some buttons left. … | |
HI Hope someone can help I have 2 sets of tabs on the page both are the same code and pointing to the same css, when the page loads everything is shos fine. But if you select one of the first set of tabs the first tab on the 2nd … | |
Hi, I was given a task at my work to revamp a static website that our team frequently use. The page is just a repository of all the links, tools and reports we have that we use everyday. The current page looks like this [![Click Here](/attachments/small/1/Capture3.PNG "align-left")](null) Im not that … | |
quick question.Take this html <form id="the_form"> <input type="checkbox" value="ideal" name="ideal_drive" id="ideal"><label for="ideal">This is a test only only</label><br> ... Say I want to select the text in the label and give it a different colour. I tried this rule #the_form label[for='ideal']{ color:yellow; } It works ok but not in IE7. SO, … | |
Hi everyone, I need to hide the scrollbar on a div that has overflow:scroll; enabled so that the div will scroll with mouse and keyboard but the scrollbar itself will not be displayed. Is there a way of doing this with css or is javascript the way to go? | |
Hello there, after weeks of works and test the project on different web browsers I noticed that my site not working propably on IE9 and its totally missed up :(, how can I fix this problem test this link http://pic4u.netau.net/share | |
My URL is: http://www.mildaspergers.com/sitemap.txt and for robots: http://www.mildaspergers.com/robots.txt Hello, When I started, I only submitted one site to Google (which went fine). Then I tried adding more pages, and it would not go through. I have added a phpbb script, tried editing it, to no avail. I tired messing around … | |
Can any one tell me hoe to edit wordpress theme from edit option? I want to change my theme from theme edit option. | |
I am trying to get an animation, like the one at http://tympanus.net/Tutorials/TypographyEffects/index6.html But for some reason it is not animating at all. Is there any fix for this? My code is <DOCTYPE html> <html> <head> <title> Saturday Night Live </title> <style> body { background-image: url('http://images.fanpop.com/images/image_uploads/SNL-Wallpaper-saturday-night-live-784022_1024_768.jpg'); background-size: cover; } .letter-container h2 … | |
Hi, I have two paragraphs, and I am trying to get the second one to float:left; But the paragraph just stays where it is, without floating. I added `<div class="clear"></div>` to my html, but that did not help. Can anyone see what I am doing wrong? Url is [www.accupresh.com](http://www.accupresh.com) Thank … | |
I am trying to stretch a background image to fit 100% of the page, I can do it when it's not a background image with the code below but how do I set it as a background image of 100%? Thanks. I keep seeing z-index, wtf is that? Thanks. [html] … | |
<style> p.title { text-align: center; font-family: georgia,palatino; font-size: 18px; font-size: 20px; color:blue; font-style:italic; } p.cont { text-align: center; font-family: georgia,palatino; font-size: 18px; font-style:italic; } p.sun { text-align: center; font-family: georgia,palatino; font-size: 18px; font-size: 20px; color: #99cc00; font-style:italic; } p.rew { text-align: center; font-family: georgia,palatino; font-size: 14px; font-style:italic; } </style> <p … | |
> <style type="css"> p.jin { text-align:center; font:georgia; font-size:20px; color:blue; } </style> <html> <p class="jin">Summer Special</p> </html>Quoted Text Here | |
<div id="about-us-page"> <head> <style type="text/css"> a:link {color: #6c6a6a; text-decoration: none; } a:ctive {color: #6c6a6a; text-decoration: none; } a:visited {color: #6c6a6a; text-decoration: none; } a:hover {color: #6c6a6a; text-decoration: none; } table, tr, td { align:center; margin-left:30px; } </style> </head> <center> [soliloquy id="212"] </center> <span><p style="font-size:large">Retail Websites</br> Sites currently operational are:</p></span> <table … | |
I made artisteer template with swf header for joomla. The swf file has mp3 music to play but when template is added to joomla the music doesnt play....any one knows solution? | |
I can't seem to find anything on spacing landscape. I know you can add Vertical space with <br>, but is that the best way. Any thoughts would be appreciated. Thnks, Giddyup | |
Everything on my site looks fine when viewed from a normal, 100% zoom. When I zoom either in or out, the slogan and some other info on the header jump around on the page- either to the left or to the right. How can I fix this issue? The url … | |
How can I make a nav bar stretch the entire width of the browser (every size browser, even when zoomed in or out) without getting a horizontal scroll bar? The url to my site is [www.accupresh.com](http://www.accupresh.com). I have a nav bar that I want to be stretched to fill the … | |
<div class="parent"> <div class="child"></div> </div> /* Final Width: 200px */ div.parent { width: 200px; } /* Final Width: 202px (with border) */ div.child { width: 100%; border: 1px solid #000000; } /* Final Width: 200px (with border) */ div.child { /* Width Inherited -- Assumed as 200px? */ border: 1px … | |
Hi there, say I have this situation: `ul a[href$=".pdf"]{...}` to match any link that end in .pdf: how do I match any possible combination of "pdf"? Say "pDf", "PDF" etc? I thought that I could use regex in the css, but I really don't know anything about regex, so I … | |
So I've been doing this for a few days and still am not getting the result I want. I have some HTML coding something similar to this: <div> <div><img /><span></span></div> <div><img /><span></span></div> . . . </div> The problem I have is when the nested div exceeds the width of the … | |
how to medge html code with database using any language? | |
i have so many categories and each category have so many items. like a food website. ok now i want to use fancy box. when burger category was click . i want to show different fancy box. and when kebabas category was clicked i want to show another fancybox.. The … | |
My facts link is smaller than the rest for some unknown reason? http://spencedesign.netau.net/singaporehome.html | |
G'day. I created a simple FAQ page but the last line gets hidden behind the footer. I know why because the footer postion is set to fixed and I want it to be at the bottom too. Better explanation: http://i.imgur.com/eHZdv.png I don't see the need for posting any code right? … | |
I need help. I tried embedding a SWF banner I made for my website and when I try to preview it in either IE, or Firefox it doesnt even show the file. I have even tried to export the file to the remote server but still nothing. Suggestions? |
The End.