Customizing the About Page
- Open
portfolio.cssfrom thecssfolder. - Let's add a little bit of space between all of the rows in our page
#about-page .row { padding-bottom: 50px; }- Here we are only selecting the
rowclass inside of theabout-pageid
- Here we are only selecting the
- Next, let's make the text in the biography section a little bit bigger
#about-page #bio { font-size: large; } - And finally, let's make it so that whenever you hover over a list item, it changes the background color!
#about-page .list-group-item:hover { background-color: #BCF3EE; }
One last step
- In
index.html, change the link for the about page from#topages/about.html<li><a href="pages/about.html">About Me</a></li>