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

  • @GeorgeFarg

    Submitted

    any suggestion is appreciated again

    @RajSanjel

    Posted

    • You forgot to add hover effects. You can see those effect design in design/active-states.
    • You haven't used semantic html. You can learn about it here.

    You have made it responsive and it looks great! Hope this was helpful.

    Marked as helpful

    0
  • @RajSanjel

    Posted

    There is a bug in your website. When user click on 1 and then submit it doesn't submit.

    0
  • @RajSanjel

    Posted

    Update your breakpoint width to 1000px it looks ugly at current breakpoint.

    0
  • Pon Huang 190

    @ponhuang

    Submitted

    My FIRST JavaScript challenge, it took me 4 hours to finish this. 😅 In the end, it seems to work well, however, there are 2 things I don't know how to make it work yet.

    1. I use toggle to apply "active" class when user clicks the rating value, but it didn't apply the CSS property in the end. (It should show and keep the primary orange color when the button is clicked.)

    2. How can we just show mainly the latest button with active class, when the user click it. They could click many times with different values, but how can we just show the latest clicked?

    If you know how to solve the problems or any idea, welcome to give me any advice, thanks for helping. :)

    @RajSanjel

    Posted

    • You should style active class in css.
    • You can add if else for removing the active class from previously clicked button.
    • When user doesn't click anything and submit the score it shows "You selected out of 5" you should set it 1 by default or add alert saying rating must be selected.
    • You can improve your design. Hope this helped.
    2
  • @RajSanjel

    Posted

    Overall it looks great but you should do following things-:

    • That cyan color is for current day if you read the readme carefully.
    • On hovering the chart the opacity of bar should decrease a little bit(can be seen on hover effect design pic).
    • The problem with price while clicking in mobile should be fixed. Image of it going beside the bar click to see the image.
    • Don't keep unecessary comments in the code.

    Marked as helpful

    1
  • @Kooroshoo

    Submitted

    What did I find difficult while building the project? I couldn't get rid of the small gap between the image and the bottom of the container

    Which areas of my code I am unsure of? The way I implemented the image swap when switching to mobile devices. Not sure if this is the correct way to do it.

    Do I have any questions about best practices? Any feedback about my implementation which can be improved upon is welcomed.

    @RajSanjel

    Posted

    h1, h2, h3, h4, h5, h6, p, blockquote, pre,
    a, abbr, acronym, address, big, cite, code,
    del, dfn, em, img, ins, kbd, q, s, samp,
    small, strike, strong, sub, sup, tt, var,
    b, u, i, center,
    dl, dt, dd, ol, ul, li,
    fieldset, form, label, legend,
    table, caption, tbody, tfoot, thead, tr, th, td,
    article, aside, canvas, details, embed, 
    figure, figcaption, footer, header, hgroup, 
    menu, nav, output, ruby, section, summary,
    time, mark, audio, video {
    	margin: 0;
    	padding: 0;
    	border: 0;
    	font-size: 100%;
    	font: inherit;
    	vertical-align: baseline;
    }
    

    Instead of that big line make it

    *{
    margin: 0;
       padding: 0;
       border: 0;
       font-size: 100%;
       font: inherit;
       vertical-align: baseline;
    }
    
    • And that little space is because of line height in line 31 make it 0 and it will look as you expected. Hope this helped.

    Marked as helpful

    0
  • @RajSanjel

    Posted

    My suggestions:-

    • Use semantic html (read here)[https://medium.com/before-semicolon/10-html-semantic-tags-and-when-to-use-them-5ae7d7d0b0f2]
    • According to challenge cyan is for current day so add logic for highlighting current day by using cyan color.
    • In mobile its upper part and lower part is touching the edge. You should fix that by giving margin top and bottom or padding top or bottom.

    Hope this helped.

    Marked as helpful

    1
  • @karanbadhwar

    Submitted

    Hello Guys, I hope you all are doing good. I made this app without React, and please do let me know What else could have I done with the CSS, because I struggle in CSS somewhat? I apologize in advance as I am a newbie here, if I missed something

    @RajSanjel

    Posted

    Suggestions-:

    • Use semantic html read about it here.
    • You can center your design by
    body{
        min-width:100vw;
        min-height:100vh;
        display:grid;
        place-items:center;
    }
    
    • There is a bug in the code. When user clicks on multiple rating and clicks submit it show all the number. If I click on 2 then 3 it says you have rated 23.

    Marked as helpful

    1
  • @z3sb

    Submitted

    if you have any advice for me i will be happy

    @RajSanjel

    Posted

    Everything looks great but when there is error and user puts his/her email and gets out of the email box it shows email@example/com and user email can't be seen. You should fix it.

    0
  • @Marcelqayoomtaylor135

    Submitted

    I found managing the margins difficult as adjusting them seemed to impact other elements when I didn't intend for that to happen.

    Flexbox. While it works, I'm unsure if grid would have been better here.

    How do you manage margins in the best way?

    Responsive landing page using SCSS

    #accessibility#sass/scss

    1

    @RajSanjel

    Posted

    Congrats on completing 1st challange:-

    • You can give padding instead of margin(margin is outside)(padding is inside).
    • Improve mobile version the design is touching the edge. (you can give margin-top and bottom).
    • Use semantic html read about it by clicking here

    Hope this helped.

    Marked as helpful

    1
  • @RajSanjel

    Posted

    Hey it looks good but looks like you haven't added background img. You can add background img by using background-image:url('url-to-img'); property. and set background-repeat:no-repeat; after that you can position it by background-position:[top,bottom,left,right,center]; you can give two position too by background-position:top right;. Learn more by clicking here

    Marked as helpful

    0
  • @RajSanjel

    Posted

    Desktop version looks great but mobile version is not made. You should make it responsive.

    0
  • P
    Taha 310

    @thaykrgl

    Submitted

    I would be very happy if you could help me with the parts I need to improve. Thank you for your feedback.

  • @RajSanjel

    Posted

    My suggestions:-

    • wrap the content in main tag instead of giving body container class
    • improve mobile version its kinda messed up.
    0
  • @dumpdope1

    Submitted

    I enjoy this project so much it's incomplete I don't have any idea how to do hover functionality in CSS while the data is an HTML attribute called data-percentage.

    If you have any idea to help please let me know so I can go back and fix it.

    but the rest I'm very satisfied with the whole project

    @RajSanjel

    Posted

    my suggestions:-

    • For hover effect I used js mouseover and mouseout event but I am not sure if this is the right way.
    • When hovering I noticed that it changes color to cyan which is not expected according to design guideline cyan is for current day only.
    • Instead of div with class mainDiv use main tag to wrap main content of page. If you want to rea d more about semantic tags click here

    If you want to see mine its here and my js is here

    Note:- There are many ways to do same things so you can take idea and implement in your project. Hope this helped

    0
  • @RajSanjel

    Posted

    I think you should do following things:-

    • reduce timer for "You selected 5 out of 5" Its take a bit more time to show up and its not a good user experience.
    • Try to make design more closer and I believe you can do it.
    • Use semantic html tags Click here to read about it

    Hope this helped.

    Marked as helpful

    0
  • @khushi-2002

    Submitted

    I don't know how to set the background pattern (two blue balls) in the correct position, can anyone help me to set the background ?? Cheers!

    @RajSanjel

    Posted

    You can use background-image property. Then set background-repeat: no-repeat;. Then set background-position:[center,top,bottom,left] Read more about it here.

    0
  • @RajSanjel

    Posted

    Looks like you forgot to add hover effect.

    0
  • aman kumar 710

    @amankumar1222

    Submitted

    please give me your valuable feedback thanks -: please give me your valuable feedback thanks -: i were faced problems when i set background img

    html css

    #accessibility#cube-css#materialize-css#astro

    1

    @RajSanjel

    Posted

    You can add background image by property background-image:url('url-to-img'); and by default it repeats so you should use background-repeat:no-repeat; and you can position it by background-position:[top,center,right,left]; you can give position like top right or bottom left etc. Read About background-image here

    Marked as helpful

    1
  • @RajSanjel

    Posted

    Your design looks great but in mobile I would say don't hard code the tooltip at the bottom. I mean just make it toggle like in pc. Why we should do it-:

    • For good user experience.
    • It will show the user who posted it.
    • It will show all the content its supposed to show

    Hope this helped.

    0
  • @RajSanjel

    Posted

    My suggestions:-

    • You can center your component by
    body{
    min-width:100vw;
    min-height:100vh;
    display:grid;
    place-items:center;
    }
    
    • Add background img by
    main{
        background-image: url('url-to-img');
        background-repeat: no-repeat;
    }
    
    • Your design is little bit bigger. You can improve it.
    0
  • Vani 160

    @VANIMEHTA

    Submitted

    1. Can someone help me design a better popup menu 2)Also some better styling to share button