Project 3: Product Landing Page (Queries)

Thank you for suggesting this.
It worked but the only problem is that the links don’t have spaces between them.
Here is a Screen Shot:

You can try space-around, space-between or space-evenly depending on your preference.

So, this is what I came up with:
https://codepen.io/Marathe07/pen/gOweZzG?editors=1100

The video is hiding behind the header.
How can I change it?
And also the Navigation tags are below the image which I want collinear.

In the #header-img
change the height to some 15px to 10px

I did it, but the Ferrari logo is becoming flat.

Give the Logo height and set to some 15 to 25 px

It’s becoming too small.

Give the px, which ever sets your need.

And also the navigation buttons are hiding the video.
They are below the image, and I want them besides the logo.

Yeah, so I took 60px.

1 Like
#nav-bar {
  font-size: 5px;
}

And you need to decrease the height of the nav-bar image.

When I do this I am geeting this:

But, the navigation links aren’t moving.

If I have include the navigation tag inside the header, shouldn’t the links move with the height I take?

yes. try it and see @alok.v.marathe

I created a new topic and moved the discussion here since this is an unrelated issue than the codepen technical difficulties.

You can change the title of the post if you want.

My main piece of advice is to use em or rem for font sizes and percentages for width and height.

Because right now you are making all of these changes but it is looking different on the various screen sizes.

It will save you a lot of headache if you don’t hard code in pixels.

3 Likes

Sorry about that.

So, I have done the following changes in my code and the image and nav-links have been aligned.

Now the problem that remains is the video.

It’s getting hidden behind the header.
How can I change it?

Yeah you could mess around with margin for the video.
Something like this

#video {
 margin:100px auto;
  display: block;
}

But there is a bigger issue.

You have a lot of elements nested inside other elements that are overly complicating the page when it doesn’t need to be.

For example:
<h1><title id="title"><p>Your dream car: FERRARI</p></title></h1>

You could just have an h1 because right now it is not displaying on the page.

So, I would comb through the html document and remove any unnecessary nesting.

If you just keep the html structure simple then it will make styling way easier.

2 Likes

Thank you so much. This worked!
But I got one more problem.
The header of the document is not moving.
I tried using align=" center" but it isn’t moving.

So there is no align center but rather text-align, or align items, align content.

But the actual header won’t really move because it is taking up 100% of the width. So you won’t really see a change anyway.

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