Wordpress nerds! I am trying to figure out how to edit bits in code on their editor, but when I replace my navigation that looks like this, with my own html it won't show up.

What is this code? Css? What the heck?
Aaghrjgrj

#wordpress #FediHelp #BeginnerCoder

I'm just a lil guy who wants to put this kind of navigation html into wordpress

<a href="artwork.html"><img src="images/menu/artwork.png"></a>
<a href="comics.html"><img src="images/menu/comics.png"></a>

daddy wordpress does not like.

@JenJen You could try to put the <img src="blah"> bit into the "label" value. If that doesn't work, you can set the images using CSS based on the IDs, you can put the images as backgrounds on the elements.

(If you end up using <img>, remember to add alt text. And if you use CSS, remember to add regular text-based labels, you can hide them wit CSS later. Can't rely on viewers to be able to see the images.)

@eishiya img into the label... gonna try that now and see what happens, thanks!
@eishiya tried that and no dice! Wordpresssssssss arerjgfggggggggg
@JenJen Dang. Does the stuff in that code at least correspond to what you see on your page, i.e. is it actually some sort of templating thing? If it is, you can try the other thing I suggested (putting the text label and URLs in there, and adding the artwork via CSS).
@eishiya Yeah it does show in the visual view what the code does, so I can play around and see what happens instantly which is cool at least! I'll have a poke around