Frank Medrano Tribute Page Review

Hi there,
I’d appreciate any feedback on my first ever coding project. Thank you in advance.

Frank Medrano Tribute Page

1 Like

Hi @kasiaczar
Good job in getting started.

I would recommend taking a look at the readability of the text against the background as i know on mobile at least its difficult to read the black against the bricks.

Good luck!

Thank you, I couldn’t find a way to change the background opacity behind the text. I would love it to be semi transparent with a sort of milky effect that would counteract the sharp pictures edges.

Take a look here- may help :slight_smile:

https://www.w3schools.com/css/css_image_transparency.asp

Hej Kasia, dobra robota!

As @mikechristopher already said you could improve the readability of the text.

At the moment you set the background in two different places.

In this div wrapper (HTML):

<main id="main">
  <div style="background-image: url('https://images.unsplash.com/22/brick-wall.JPG?ixlib=rb-1.2.1&q=85&fm=jpg&crop=entropy&cs=srgb');">

And in the body (CSS):

body {
  ...
  background-image: url("https://images.unsplash.com/22/brick-wall.JPG?ixlib=rb-1.2.1&q=85&fm=jpg&crop=entropy&cs=srgb");
}

The easiest way to go about it would be to remove that wrapper div completely and add linear gradient with some transparency to background-image:

body {
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)),
    url("link-to-the-photo");
}

Good luck :slight_smile:

Thank you, it looks like it’s not possible to change the brick background opacity the way I want to. I decided to change the background image, not 100% happy with it but the text looks more clear…

Hey, thanks :slight_smile: I tried but it didn’t quite look the way I wanted to. I changed the background image instead and I learnt a lot looking for a solution …

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.