Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

All comments

  • Godfred Gameli• 305

    @Godfredgameli

    Posted

    Thanks for the feedback. I will work on it.

    0
  • Godfred Gameli• 305

    @Godfredgameli

    Posted

    Kindly make your page more responsive for smaller screens.

    0
  • Godfred Gameli• 305

    @Godfredgameli

    Posted

    kindly check the price rates and the arrow in the message box. They down outside their respective containers. Thank you.

    0
  • Yustina Yasin• 310

    @yustinayasin

    Submitted

    Please give me feedbacks :) Is there another way to represent a progress or diagram like this? apart from meter and progress element

    Godfred Gameli• 305

    @Godfredgameli

    Posted

    Your solution helped me when I was working on mine. Thank you!

    1
  • Godfred Gameli• 305

    @Godfredgameli

    Posted

    Thank you for the feedback. I have updated the work now.

    0
  • carlito-jdp• 30

    @carlito-jdp

    Submitted

    Hi all,

    Developed the Huddle page using flexbox and used some scss to process css. Did a somewhat "hacky" approach to display the varying background image but it seems to work.

    I'm new to web development so any feedback is much appreciated. Let me know what you think.

    Godfred Gameli• 305

    @Godfredgameli

    Posted

    You are most welcome! You can reach out if you need assistance and I will be glad to help if I can.

    0
  • carlito-jdp• 30

    @carlito-jdp

    Submitted

    Hi all,

    Developed the Huddle page using flexbox and used some scss to process css. Did a somewhat "hacky" approach to display the varying background image but it seems to work.

    I'm new to web development so any feedback is much appreciated. Let me know what you think.

    Godfred Gameli• 305

    @Godfredgameli

    Posted

    hello, the footer icons are not displayed properly and should be moved downward as it has merged with the text writings.

    1
  • webkingcoder• 50

    @webkingcoder

    Submitted

    my question is the bottom bubble (light blue circle is irretating me) because it allow scroling the page but i dint want to scroll it so how to tackle it ?

    Godfred Gameli• 305

    @Godfredgameli

    Posted

    The SVG should be set as background images of the main container and the blue should be set as the background color to the body element. It should look similar to something like this: body { background-color: #19a2ae; }

    .main-container { background-image: url(images/bg-pattern-bottom.svg), url(images/bg-pattern-top.svg); background-repeat: no-repeat; background-position: 600px 450px , -400px -550px; }

    and position them to your taste

    0
  • Godfred Gameli• 305

    @Godfredgameli

    Posted

    You have to set the background of the body to white and to get the background image. Set the background image of the main container. It should look something like this:

    body, html { box-sizing: border-box; margin: 0; padding: 0; overflow: hidden; background-color: white; font-size: 15px; }

    .content-wrapper { width: 100%; height: 97vh; display: flex; justify-content: center; align-items: center; background-image: url(images/bg-pattern-bottom-desktop.svg), url(images/bg-pattern-top-desktop.svg); background-repeat: no-repeat; background-position: 270px 120px, -150px 0; }

    2