Jump to content

Andreas De Rudder

Members
  • Posts

    27
  • Joined

  • Last visited

Andreas De Rudder's Achievements

Newbie

Newbie (1/7)

2

Reputation

  1. Hello, I have on my website (http://msngent.be/information.html) under the title Restless for service 3 pictures. I would like to have them on one row next to each other width a total width of 100%, just like the text and titels. I learn at school that that is fluid of flexibel design. But it doesn't work on my website. Does anybody know what I have done wrong? I have put the css for the pictures in the head of the page. Thank you Andreas
  2. Hello, I learn at school about fluid and flexibel design. I want make now a slideshow on my website fluid, so it has the same width as the text and titles on each screen. I have given the pictures a div with width 100% in css, but it doesn't work. What have I done wrong? My website is: http://msngent.be/information.html Thanks for helping me, Andreas
  3. Hello, I try to put some youtube movies online on my website, but I find nowhere a good code. The first link to a movie is this: Could someone help me with a right code? Thank you Andreas
  4. Thank you. I have added a height in css code to the already existing class, and it works now. All the pictures, small and large, have now the same height, which is ok for me. But I have another question: Is it possible to have on one page two slide shows running at the same time? I have tried it with a div tag around each list of pictures, and do have two slide shows then, but the second starts running after the first has stopped.
  5. Maybe you have to push the refresh button to see the new page, I had to do that too.
  6. I'm sorry, I forgot to put the new page online. It's on the web now. http://msngent.be/information.html I don't know how I have to work with classes in JavaScript.
  7. I have given two pictures in the slideshow a class and then I have given them a height or width with css, but that doesn't work. Look at http://msngent.be/information.html Do I have to do that in an other way? The pictures are now temporary, but the pictures that will come eventually in the slideshow will probably have different sizes.
  8. Thank you very much! It works now. But I wonder one thing, I have now 7 temporary pictures that are all quite small. Later I will probably also use larger pictures. Could it be possible to progam a max size, or the same size for all pictures? thank you
  9. I've put it online: http://msngent.be/information.html The two pictures are temporary, just for the test.
  10. Thank you. I've tried it with script tags in the head or in the body, but it doesn't work either. It changes nothing....
  11. Hi, I try to make a slide show with information that I found on the W3school site (http://www.w3schools.com/w3css/w3css_slideshow.asp). But it doesn't function. Could anyone tell me why? I have this in the head between the style tags: var slideIndex = 0; carousel(); function carousel() { var i; var x = document.getElementsByClassName("mySlides"); for (i = 0; i < x.length; i++) { x.style.display = "none"; } slideIndex++; if (slideIndex > x.length) {slideIndex = 1} x[slideIndex-1].style.display = "block"; setTimeout(carousel, 2000); } And then I have this in the body: <img class="mySlides" src="images/index.jpg"> <img class="mySlides" src="images/indexfoto.jpg"> <a class="w3-btn-floating" onclick="plusDivs(-1)">❮</a> <a class="w3-btn-floating" onclick="plusDivs(+1)">❯</a> Thank you for trying to help me! Andreas
  12. I thank you very much for your answer, but I don't understand how I have to do this. Could you please give a full exemple? I would be very grateful. Thank you!
  13. Hello, I have on the index page of my website two lines of text with a white background. At this moment the white bar is the full width of the screen, but I would like it to be only the width of the text . How do I have to do that? My website is: www.msngent.be thank you Andreas
×
×
  • Create New...