Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS CSS Roadblocks with WP Genesis Child-Theme Creation Re: CSS Roadblocks with WP Genesis Child-Theme Creation

#119358
DustinWoods
Member

I can help you with your third issue.
Your footer **ul** width is being set to 550px, and centered. And the links inside are floating to the left. I would recommend have the **ul** and **li** elements be inline, and have the _text-align_ set to _center_. I changed some of your code. This works well:



#footer .wrap {
overflow: hidden;
padding: 10px 15px;
text-align: center;
}

#menu-menu-footer {
margin: 0 auto;
padding: 0;
display: inline;
}

#menu-menu-footer li {
padding: 0 4px 0;
border-left: 1px solid black;
list-style-type: none;
font-size: 12px;
display: inline;
}