@livehybrid @ITWhisperer Thank you both for taking a look at my post. Sorry I should have been more clear. I am trying to place external hyperlinks on main dashboard. For example, I have a various web based applications which my team use frequently and I want to create a one view using the splunk dashboard for all the external links. They are not generated through events. I tried using containers as below- .container { display: flex; flex-direction: row ; margin-left: 0!important; margin-right: 0!important; background-color: lightgrey; text-align: center; } .field { padding: 20px; border: 1px solid #ccc; } <div class="field"> <li> <a href="https://abc.xyz.com/" style="color:#008080;">ABC </a> </li> </div> <div class="field"> <li> <a href="https://xxx.yyy.zzz" style="color:#008080;">XYZ</a> </li> </div> Using this external links are displayed as below- ABC XYZ --> (In one row, space separated) I am struggling to left align them so I thought of posting here to see if there is a better/simpler way of doing it. I am not HTML/Splunk expert, just a beginner. Thanks again for your time and advice. Regards
... View more