OK, I'm designing my portfolio with html/css and this is my first time. So far it's coming out nice, the contact links doesn't work yet. And I need to shrink the thumb nails in my portfolio section.
Here's my question: When I use the list-style-type option it doesn't take out the bullets. What should I do?
CSS
My other question was how to align text(description) with the pictures on the home page with a vertical line between?
Thanks a lot!!
Here's my question: When I use the list-style-type option it doesn't take out the bullets. What should I do?
HTML:
<div id="about_me">
<div class="post">
<h1 class="title">About<strong>Me</strong></h1>
<div class="entry">
<ul>
<li><strong>Name:</strong> Anthony Betancourt</li>
<li><strong>What:</strong> Graphic/Web Designer, Student</li>
<li><strong>Edu:</strong> Herny Ford Community College, Specs Howard School of Broadcast Arts</li>
<p>Hello, I’m Anthony Betancourt and I currently attend Henry Ford Community College for graphic design. After HFCC I plan on attending Wayne State University for my BFA degree. I love to design! Researching different designers, typefaces, and art is something I enjoy to do with my free time. Currently, I’m a freelance graphic designer, student. I enjoy reading National Geographic and get a lot of inspiration from there. I’ve been into global change, nature, and world religions lately, so I’ve made a couple environmental posters that I’m going post around town and campus, so look out!.</p>
</ul>
</div>
HTML:
#about_me {
float: right;
width: 900px;
}
.post {
margin: 0px 0px 30px 0px;
}
.post .title {
margin: 0px;
background: #444444 url(images/img02.jpg) no-repeat left 50%;
padding: 7px 25px;
font-size: 1.4em;
}
.post .title h1 {
}
.post .entry {
padding: 0 20px;
list-style-type: none;
}
.post .byline {
margin: 0px;
padding-left: 20px;
}
My other question was how to align text(description) with the pictures on the home page with a vertical line between?
Thanks a lot!!