Currently in the process of developing an application using Bootstrap and incorporating a user feed for admins which is inspired by the Dark Admin theme. The structure of my HTML resembles the demo provided, with CSS styling being compared to ensure consistency:
<div id="feed_box">
<section class="feed-item">
<div class="icon pull-left"><i class="fa fa-info"></i></div>
<div class="feed-item-body">
<div class="text">Some text goes here</div>
<div class="time pull-left">44 minutes ago.</div>
</div>
</section>
<section class="feed-item">
<div class="icon pull-left"><i class="fa fa-info"></i></div>
<div class="feed-item-body">
<div class="text">Some text goes here</div>
<div class="time pull-left">44 minutes ago.</div>
</div>
</section>
</div>
Despite following the similar structure as shown in the demo, upon opening the page in my own project, the alignment of the icon pull-left
items appears scattered:
Attempts were made to create a jsFiddle for demonstration purposes but the exported HTML page seemed to display correctly.
Seeking guidance on why there are discrepancies in the indentation of these icons and how it can be rectified.
If additional information is required or any clarifications needed, please don't hesitate to reach out.