I am trying to figure out how to position the Creams element underneath the "Name" section in my HTML setup. I have the following code:
<h4 class="wrap-title">Name</h4>
<button class="btn btn-primary btn-xs title-button" ng-click="uploadNewImage()"><span class="glyphicon glyphicon-upload"></span> Upload</button>
<p>{{venue.name}}</p>
and here is the CSS for it:
.wrap-title {
float:left;
margin-right: 5px;
}
.title-button {
cursor: pointer;
margin: 10px 0px;
float:none;
}
I would appreciate any help on getting the Creams element positioned correctly. Thanks!