Trying to create a menu using Bootstrap, but experiencing issues with the 'col' class not working correctly. Here is the sample HTML code provided:
<div class="logo col">
<a href="index.html"><img src="Content/Logo.png" class="logo"/></a>
</div>
<div class="menu col">
<ul>
<li><a href="index.html" class="GradientText">Home</a></li>
<li><a href="Views/Portfolio.html" class="GradientText">Portfolio</a></li>
<li><a href="Views/Contact.html" class="GradientText">Contact</a></li>
</ul>
</div>
The classes menu and logo are defined in a custom CSS file.
Current Bootstrap version used is 5.1.3
Observed result can be seen here: https://i.sstatic.net/PfE4l.png