1
Hello, I have a small problem, I added a horizontal menu to the html of the site and I wanted to put an image beside (right) but it won’t, I tried by float, align, margin and nothing, I don’t know if you can help me solve the problem, but I thank you all.
HTML code looks like this: In the case "alignright" is just an example
<div id="button">
<div class="divimg2">
<ul>
<li><a href="">Aqui estão a lista do menu</a></li>
<div class="alignright"><img src "css/images/sidimg.png"></div>
</ul>
</div>
</div>
And the CSS is like this:
.alignright { float:right; }
I believe a lot is missing (or not) to align the image to the right of the menu
With this added the image but was all misaligned and stood over the menu, the link is http://barietoner.com.br/area-de-cobertura.html
– João Victor Gomes Moreira
worked now, just remove the "div alignright" from inside the div button, thanks @Edu
– João Victor Gomes Moreira