I only believe it was difficult because I don’t know exactly how to search for examples and questions on the internet quite yet. And my inexperience with web dev stuff. Got through it though, I just had to be patient. THANK YOU STACKOVERFLOW
One thing I had a problem figuring out was at the italicized quotation at the bottom of the page. I couldn’t for the life of me figure out how to center it. I think it might be because the logo to the right of it is in a container that rests on the same line? So I should be able to somehow center both of them right?
Hey student31cs
it’s always a great satisfaction to finally complete a hard project. I’m happy for you.
I think it might be because the logo to the right of it is in a container that rests on the same line? So I should be able to somehow center both of them right?
Are you talking about CSS, correct?
Can you post an image of the problem you’re seeing? Also a snippet of the code related to that part would be good.
centering elements in css is the most common issue every developer finds itself. Is a great thing you research the topic as there are many different ways to do that. The only way to actually master somethin is to DYOR
In your case I suggested to make the parent div 100% of the viewport in order to give you:
responsiveness
a div.content centered in respect to the center of the viewport.
If for example you wanted it centered in respect of something else, the styling rules would have been different.