Welcome to Code Forum!

Join a community that supports you and your coding journey from day one. We strive to be a friendly, supportive community that empowers everyone to be better developers. By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Search results

  1. SpongeBOB

    CSS Changing appearance of link A

    Thank you @Mutiny So a:visited { color:#888888; text-decoration-line: none; } a:visited:after { content: "<" } The color work, but the links are still underlined, and I do not have the < after...
  2. SpongeBOB

    CSS Changing appearance of link A

    HI everyone, I would like to have the unvisited link with a color, without underline. and the visited link grey, without underline , with > in front and < in the back I tried few thing without success: a:link { color: red; text-decoration: none; } a:hover { color:green...
  3. SpongeBOB

    HTML & CSS Limit images to 100% with Owl carousel

    I found :) I changed the owl.carousel.min.css .owl-carousel .owl-item img { display: block; margin: 0 auto; max-width: 100% }
  4. SpongeBOB

    HTML & CSS Limit images to 100% with Owl carousel

    Hi everyone, I'm using the Owl carousel in one of my html page (full screen) I would like that my images are not stretch-out (displayed more than 100%) How can I do achieve that ? <!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport"...
  5. SpongeBOB

    HTML & CSS Can't make work owl.carousel.js

    a second error on my end :/ <!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Carousel test</title> <link rel="stylesheet" href="static/OwlCarousel/owl.carousel.min.css"> <link rel="stylesheet"...
  6. SpongeBOB

    Solved highlighted code line do not work with the dark theme

    Just to let you know that when using highlight arg with CODE BB, it's doesn't show on the "Default - Dark" style theme. CODE lang="html" title="test" highlight="2" <html> <!-- the highlited line --> </html>
  7. SpongeBOB

    HTML & CSS Can't make work owl.carousel.js

    I've found the error ! (line 33) -> it was missing .js :x3: <!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Carousel test</title> <link rel="stylesheet"...
  8. SpongeBOB

    HTML & CSS How make a carousel without Bootstrap, JS or any external ressources.

    Thank you @simong1993 Yes apparently I will need JS :/ So i will use the Owlcarousel, I've opened a new topic because I'm already stuck with it :)
  9. SpongeBOB

    HTML & CSS Can't make work owl.carousel.js

    Hi everyone, I try to make owl.carousel.js working. I followed the instructions but instead of having I got : here the html: <!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Carousel...
  10. SpongeBOB

    HTML & CSS How make a carousel without Bootstrap, JS or any external ressources.

    Hi everyone, I would like to implement a carousel like this one -> https://www.immodemarneffe.be/fr/bien/a-vendre/maison/4530-villers-le-bouillet/4356925 Requirement: Pictures are side by side the whole carousel stretch to the width Click on picture make it "full screen" left & button...
  11. SpongeBOB

    HTML & CSS Align form vertically

    Almost there... Now I have this here My CSS & HTML form { float: left; margin-right: 10px; } <div> <form method = "POST" > <input type="hidden" name="langue" value="en"> <input type="image" src="static/us.gif" title="English"> </form> <form method = "POST" > <input type="hidden"...
  12. SpongeBOB

    HTML & CSS Align form vertically

    Hi everyone, I would like to display 4 little form side by side (with a space / gap between them) For now I have this <form method = "POST" > <input type="hidden" name="langue" value="en"> <input type="image" src="static/us.gif" title="English"> </form> <form method = "POST" > <input...
  13. SpongeBOB

    HTML Track element for video is not working.

    Hi everyone, I have followed the guidance of this URL : https://developer.mozilla.org/en-US/docs/Web/HTML/Element/track to add a track (aka subtitle/captions) on a video. but it's not working here the code of my page: <!doctype html> <html lang="en-us"> <head> <meta charset="utf-8">...
Back
Top Bottom