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

  • @lucaspicinini

    Posted

    Get some rest, read the theory a little more and try again... Don't give up bro, you can do it, we all start from somewhere. You can start by selecting a height and width for your image container, hope this can help you... :)

    Marked as helpful

    0
  • @AmirhosseinHashemi

    Submitted

    Hello everyone

    In this project I tried create two html page but I have had problem with link them together so I did it in one html page.

    built with :

    • HTML
    • CSS
    • SASS
    • JS

    Here is my result => Link

    what I learned

    I leaned how to customize radio button and work with that.

    Feel free to write your comment and idea to code better :)

    @lucaspicinini

    Posted

    You can set the cursor property to pointer on your input labels. This way, the mouse would not revert to its normal appearance when hovering over the numbers on the buttons.

    0
  • @lucaspicinini

    Posted

    Você pode usar o pseudo elemento ::before pra acrescentar o svg com a imagem do carrinho antes do botao "Add to Cart":

    botaoaddtocart::before {
    content: ""; /*essa propriedade é usada com os pseudoelementos ::before e ::after para gerar conteúdo em um elemento*/
    background-image: url("../images/icon-cart.svg");
    width: 15px; /*defina o tamanho do ícone*/
    height: 15px; 
    /*depois que a imagem aparecer é só usar outras declarações de formatação que você preferir para posicioná-la melhor.*/
    

    Marked as helpful

    0