Now Reading: Add an image in a menu | Jump To Comments
This is a tutorial on how to add an image to a side menu.
Look for this:
< !-- start left side -- > or < !-- start right side -- >
Depending on which side your menu is, one of these will be where the text of your side-menu is.
Just add whatever you want in there, in normal HTML code. So if you want to put an image in there, find the place you want to put the image and use the normal code -
< img src="photo url">
(copied from WP's comment in previous post)
If you want to make a whole new menu with just images, this is how you want it to look:
< h5 >menu title< / h5 >
< img src="photo url">
Keep in mind that the menu commands in your template may not be h5. It may be h2 or h3 whatever, just modify it to suit your template. :)
Look for this:
< !-- start left side -- > or < !-- start right side -- >
Depending on which side your menu is, one of these will be where the text of your side-menu is.
Just add whatever you want in there, in normal HTML code. So if you want to put an image in there, find the place you want to put the image and use the normal code -
< img src="photo url">
(copied from WP's comment in previous post)
If you want to make a whole new menu with just images, this is how you want it to look:
< h5 >menu title< / h5 >
< img src="photo url">
Keep in mind that the menu commands in your template may not be h5. It may be h2 or h3 whatever, just modify it to suit your template. :)