Welcome!

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. A

    JavaScript Toggle four photos with a click

    Hi friends: I was successful with toggling two photos. I am trying to expand it to four photos without any success. I am grateful for your helps. <!DOCTYPE html> <html> <head> <title>Switch Images</title> <style> *{margin: 0; padding: 0; box-sizing: border-box; }...
  2. A

    Answered I want my second <div> text to go down instead on top

    Hi: I want the second <div> text to go below the logo and my selectors. Thanks for your help. <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <style> .floatleft{...
  3. A

    HTML & CSS To get the text inside the image

    Hello friends: I was fascinated with the website www.amaliyaFoundation.com. When I looked at the source code, it refers .php files as well. I am trying with what I know. I have attached my code. Right now, I am struggling with having to show the text inside the images. I used the guidance of...
  4. A

    Have the 3 images in the same line

    Hello Friends, I am trying to have the description of image come below the image. Once, I tried with figure and figcaption tags, the- second image goes below. I want to have the three images in same horizontal line while have the description to be below. If you run the code below, you may...
  5. A

    To have more space in right side

    Hello Friends: I am trying to have more space in right side of after the text. Photo, then, text. I extracted the part of the code. If you look at www.sis.anura7.ca , On the right side of the text, there is no space at all, specially on a smart phone. Thanks for your help. <!DOCTYPE...
  6. A

    JavaScript Angular Project help

    I am struggling. Hope you could help I have given the following code segment in an Angular Project. In this, teacher-table component's component.ts file, need the logic for searching inside the function Input : Searching text Output: Update the teacherdata array of the teacher class...
  7. A

    Python Check whether a whole number plus Numeric Numbe

    I need to verification for the following code and also, alternative ways to do. 1. Check whether it is a whole number if round(number) != number: raise TypeError("Number is not a whole number") 2. Number is not numeric try: total = total + number except ValueError: raise...
  8. A

    JavaScript Postman error or code syntax

    Hi: I am trying to get an understanding of server side programming. I am trying to test my POST Api with POSTMAN. 1. created server.js 2. created database.js 3. ran "npm init -y" 4. ran "npm install express" 5. ran "npm install sqlite3" 6. ran "node server.js" I have included the coding of...
  9. A

    Trying to have a space between text and image

    Hello friends: I am trying to have a space between the text and image border. It doesn't happen with my padding. When I remove, border CSS, I can have space between space between text and image. Thanks for helps. <!DOCTYPE html> <html> <head> <title>Learning Example</title> <style>...
  10. A

    My cursor doesn't move to drop down sub items

    Hello friends: there is dropdown items under "About Us" and "Services". When I move the cursor to either "About Us" or "Services", it shows the sib items under it. Once, I tries to move the cursor to subitems, it disappears. Thanks for your helps. <!DOCTYPE html> <html lang="en">...
  11. A

    JavaScript How to put a delay

    <script> var lastScrollTop = 0; window.addEventListener("scroll", function(){ var st = window.pageYOffset || document.documentElement.scrollTop; if (st > lastScrollTop){ closeNav(); } else { delay(3000); openNav(); } lastScrollTop = st <= 0 ? 0 ...
  12. A

    JavaScript JavaScript help

    Hi: I want the overlay window to appear only when the user scroll up. Now, the overlay window appear when user scroll down as well as up. Thanks for your helps Regards Anura <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <link...
  13. A

    HTML & CSS Chrome Issue

    Hi Friends I am in the process of developing a website. www.sis.anura7.ca When a particular user enters the above url, it gives image1 as expected. But when a particular user presses Menu, it gives the image2. It doesn't happen to me nor to my friend. It navigate nice Thanks for your helps.
  14. A

    My check boxes moving to right

    Hello Friends: I guess, you guys have the answer for this. My check boxes are moved to the right. Tried with a class for checkbox and it's label to be left aligned with no success. <!doctype html> <html> <head> <style> .container { width: 600px; margin: 25px auto; } form...
  15. A

    JavaScript Dynamacally load the web page content

    Hello friends: I created a fairly long webpage with some animations too. The web pages load at once. I can see only the first page's animation. How could I load the pages with scrolling. Thanks Anura
  16. A

    In the web site the letters in Sinhala appears different

    Hello Friends: I created the following page. When I viewed via File Explorer, it is fine. Then, I uploaded to my subdomain minoli.anura7.ca to see the letters to different. Thanks for your guidance. <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width...
  17. A

    JavaScript Images to move automatically as well

    I want this image to move automatically as well on top of pressing the two arrows. As the images are not loaded, it may be hard to visualize with running the code. Thanks for your helps. Regards Anura <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width...
Back
Top Bottom