html - How to get images I'm uploading to the wordpress menu section to resize? -


i'm adding img tags navigation label field in menus section in order create social media buttons. want them 25px 25px, want them ready retina screens, images i'm uploading 50 50px.

the annoying thing is, managed 3 hours ago, since coming it, they're no longer re-sizing , i'm left massive icon.

the code using scale them down was:

<img src=“url here” height=“25” width=“25”>  

is there way of fixing this, or easier way achieve i'm trying do?

thanks

you using stylized quotation marks in code.

<img src=“url here” height=“25” width=“25”> 

this invalid html. did copy , paste code ms word? that's reason.

you need unformatted characters, basic text editors provide.

keep quotation marks simple , basic:

<img src="url here" height="25" width="25"> 

these ascii quote marks valid html.

although quote marks optional in html5, recommend using them best practice. here reasons why: do quote html5 attributes?


Comments

Popular posts from this blog

how to insert data php javascript mysql with multiple array session 2 -

multithreading - Exception in Application constructor -

windows - CertCreateCertificateContext returns CRYPT_E_ASN1_BADTAG / 8009310b -