laravel - Laravel4 + Bootstrap: Icon + Warning message on the same line -


i have code warning messaging on validation on form:

@if($errors->any())    <div class="alert alert-warning col-lg-12 centered">       <i class="glyphicon glyphicon-warning-sign"></i>        <ul>          {{ implode('', $errors->all('<li class="error">:message</li>')) }}        </ul>     </div> @endif 

it appear yellow box icon , errors. little issue icon on 1 line, , errors on line. how can keep icon on left, @ same line of errors? thank you

add float left glyphicon like:

.alert { float: left; font-size: 64px; margin-right: 32px; margin-left:16px; } 

example: http://bootply.com/84046


Comments

Popular posts from this blog

c# - How Configure Devart dotConnect for SQLite Code First? -

java - Copying object fields -

c++ - Clear the memory after returning a vector in a function -