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

  • Boitumelo Sempe• 60

    @ShakexSempe

    Submitted

    Greetings all ! I will appreciate any feedback on my code, most particularly on the footer within the main element. How does one change the color of the "sunnyside" text from white to the same as the rest of the icons.

    Thanks.

    Monica Vargas• 105

    @monicavrgs

    Posted

    hey! really nice job! about the logo in the footer, you can use the svg logo they provide instead of using it as an <img>, just copy and paste the html tag, and then to change the color you use the fill and stroke attributes in the <path> element (the path is, as it's name says, the path that draws the svg, and it is within the svg tag). i would recommend doing some reading about svg so you can understand better what you're doing, but that's basically it to change the logo's color

    the css code would be something like this:

    .svg-selector path{
         fill: #color;
         stroke: #color;
    }
    

    Marked as helpful

    0