Hi @tuanphan in case I want my second logo to be placed next to main logo on the left side. Kindly advise css? Thank you.
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script>
$(document).ready(function() {
$('<img class="second-logo" src="https://cdn.pixabay.com/photo/2021/07/09/06/57/lavender-6398425__480.jpg"/>').insertBefore('.header-display-desktop');
});
</script>
<style>
img.second-logo {
width: 100px;
}
</style>