Everything posted by tinimic
-
Web Design breaks in IE8
Check out: Markup errors Your code is causing IE8 to display in IE7 standards mode, and the errors cascade to your contact form.
-
CSS:How do I make the 2nd line sentence align with the 1st line ?
Change the CSS to: #right-column p{ margin:5px 0; padding-right:5px; padding-left:50px; float: left; color:#000; font-size:13px; font-family:"veranda", "Lucida Sans Unicode", "Lucida Sans", Helvetica, Arial, sans-serif; border: #EE82EE; background-image:url(arrow.gif); background-repeat: no-repeat; } and change the paragraph to: <p><a class="foo" href="article140610.html"> How to make your child study better? Read on.</a></p> You will have to change the padding-left value to whatever it takes to clear the background-image arrow.gif
-
Please help me fix my JavaScript errors
Try: <div id="google_translate_element"></div><script type="text/javascript"> and: <script type="text/javascript" src="http://translate.google.com/translate_a/element.js?cb=googleTranslateElementInit"></script> They aren't JavaScript errors. type="" is an attribute that the W3C requires for validation when using the <script> tag.
-
Javascript carousel - with caption?
Do a search for "javascript tooltips". There's thousands.
-
how to add text alternative to JS incase scripts are disabled
That's what the noscript tag is for: <html> <body> <script type="text/javascript"> document.write("Hello World!") </script> <noscript>Sorry, your browser does not support JavaScript!</noscript> <p>A browser without support for JavaScript will show the text in the noscript element.</p> </body> </html>
-
Window Cleaning Quote
Looks like you need a simple function to format your total. Try: document.write("<TR><TH>" + "Your total is £" + total.toFixed(2) + "</TH></TR>"); This should work in ie5.5+ and most other current browsers.
-
jQuery - Fancybox
Looks to me like you have to use the iframe link element to get what you are looking for. You're trying to pull some content from another Web page, not inline content from the page you're on. <a class="iframe" href="contact.html#primarycontent">Contact us</a> then modify the .iframe class in the fancybox style.css file to get the look you want.
-
Need someone with time, patience and knowledge
I'm new to Web development myself, but I am doing my best to learn HTML/CSS and use best practices principles in designing to my abilities. I would be glad to look at your project. You can find my email in my profile. Thanks