I'm trying to create the CREATIVE EVENTS hr looking thing in css on this page: http://www.wix.com/website-template/view/html/689?utm_content=ma_html_fwt_temp_1_4creaeven&utm_medium=template_banner&utm_campaign=ma_fwt&utm_source=freewebsitetemplates&experiment_id=ma_html_fwt_temp_1_4creaeven&utm_term=services
However, I am only getting a result which looks a bit off from it :(
Can anyone help?
Here is my code so far:
<ul id="hr">
<li id="dot"></li>
<li class="random_thing">....................<bold>CLIFFEDGE</bold> STUDIOS....................</li>
<li id="dot"></li>
</ul>
#hr {
list-style-type: none;
float: left;
}
#hr li {
display: inline-block;
}
#dot {
border-radius: 15px;
background-color: black;
height: 15px;
width: 15px;
}
Thanks!