Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. MrGTheBeast

    Strange extra bottom margin on image - validated

    have a look at thread215-1302955 sounds like a similar problem
  2. MrGTheBeast

    Space beneath an image

    Can you check the URL?
  3. MrGTheBeast

    Circular Based Webpage

    Image maps + gifs/pngs with transparent backgrounds? see http://www.w3schools.com/tags/tag_area.asp if you need help with image maps If you want to use javascript see http://www.w3schools.com/js/js_image_maps.asp
  4. MrGTheBeast

    href css to trigger function in javascript

    Could aural style sheets help if you are just looking to play a sound? use with a:hover? or am I being silly
  5. MrGTheBeast

    Justify Images in Frame using CSS

    try <img src="image1.jpg" style="float: left;"> <img src="image3.jpg" style="float: right;"> <img src="image2.jpg"> NOTE: the order is important. The other option is to use display: inline eg <img src="image1.jpg" style="display: inline;"> <img src="image2.jpg" style="display: inline;">...
  6. MrGTheBeast

    JS Standards

    The closest thing to a standard for JavaScript can be found at http://www.ecma-international.org/publications/files/ECMA-ST/Ecma-262.pdf For an explaination of why I think this is the standard can be found at http://www.devguru.com/Technologies/ecmascript/quickref/javascript_intro.html As...
  7. MrGTheBeast

    Changeable pictures

    use javascript. you should look in the javascript forum for a more details but it would be something like <img src="image1.jpg" id="change"> <a onclick="document.getElementById('change').src='image2.jpg'">image 2</a>
  8. MrGTheBeast

    Making a HTML page display in a DIV container...

    The easiest way to do this would be to use an iframe instead of a div for your maincontent otherwise you would have to use some kind of script to change the inner html which would probably be quite clumsy.
  9. MrGTheBeast

    Gap between H4 and P

    try padding-top and padding-bottom
  10. MrGTheBeast

    site layout with css -- n00b

    I think cssplay.co.uk will have a layout that you can use
  11. MrGTheBeast

    javascript and Markup Validation Service

    try putting your script in comment tags, something like <script> <!-- your javascript goes here // --> </script> this will make it work in older browsers I would actually recommend that you put your script in an external js file then provide a link to it. For example create a file called...
  12. MrGTheBeast

    IE and Firefox problem - text is all white in FF, ok in IE

    try checking the font tags around "contact us" I think you are missing a closing tag.
  13. MrGTheBeast

    Want to get rid of a scrol bar within a frame

    This is really a question for the HTML, XHTML & CSS forum. I am assuming the template is the html file which contains the frameset. You can learn more about HTML frames at w3schools.com in the frame tag that has your homepage add the attribute scrolling="no" Hope this helps
  14. MrGTheBeast

    help me out with slideshow pleasee

    can you try making it work on clicking something something like <p onclick="window.setInterval(forward(), 5000)">clicking here should work</p> let me know if it works
  15. MrGTheBeast

    help me out with slideshow pleasee

    did it work when you just added the setInterval.... into the <body> tag?
  16. MrGTheBeast

    help me out with slideshow pleasee

    if you are looking to change the image every few seconds as if you were calling the forward function use setinterval. For example you could use it in the body tag <body onload="window.setInterval(forward(), 5000)"> what setInterval(forward(), 5000) does is call the forward function every 5000...
  17. MrGTheBeast

    Table Widths Grrrrrrrrrrrrrr!!

    I'll consider my wrists slapped. guess I'll have to go through my old pages to see if I've done them right. Should kill a bit of time.
  18. MrGTheBeast

    Table Widths Grrrrrrrrrrrrrr!!

    There are two things I can see that might be causing a problem Change all the width attributes to the format e.g. width="200px" The other thing to mention is that all your text is one word try putting some spaces in the text then it will move on to the next line automatically. If you are...
  19. MrGTheBeast

    Is it possible to include html page in another html page?

    You have got the code right. try naming the file include_test.asp You will also need to test it on a server that supports asp for more info I would look in the asp forum or have a look at w3schools.com
  20. MrGTheBeast

    trouble with css layout

    Yes it is, but it is a real pain and any minor change to the content may cause real problems. Why do you want to do this? there may be an easier work round.

Part and Inventory Search

Back
Top