Home › Forums › Azuma Pro › Add an image in the header › Reply To: Add an image in the header
September 22, 2020 at 7:35 pm
#12208
Andy
Keymaster
Try absolute positioning with something like this:
.tree {
position: absolute;
top: 0;
right: 30%;
}
Additional info, you may also need to give the menu a z-index value to make sure its background color doesn’t disappear behind the tree image:
#site-navigation {
z-index: 1;
}
- This reply was modified 4 years, 2 months ago by Andy. Reason: Added additional information