Stephen Paul Samynathan
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Question about responsive imageIf I understand if the viewport is 100% and width below 350px, it serves the 350w version ?
Hi @alex586 , you are right when the screen is at viewport width of 350px, the image of size 350px will be served.
You can find which image is served using the browser dev tools as well. Here are some further info on this matter. https://stackoverflow.com/questions/30900173/is-it-possible-to-see-which-srcset-image-a-browser-is-using-with-browser-develop
Hi @minanim . Here a few guides that might be able to help you out.
You can find more information on the charge by following this guide here:
https://wordpress.com/support/billing-history/You can also use this link to find more information on the transaction https://wpchrg.wordpress.com/ .
Forum: Fixing WordPress
In reply to: WordPress Wrapping tag within another tag in Navigation MenuTO make it more clear this is the result I am trying to achieve:
<div class="nav-drawer-top-links"> <a class="nav-content-column vertical-content-center" href="https://localhost/test/portfolio/"> <div class="nav-content-box"> Portfolio <span class="sub">Whatever</span> </div> </a> <a class="nav-content-column vertical-content-center" href="https://localhost/test/portfolio/"> <div class="nav-content-box"> Portfolio <span class="sub">Whatever</span> </div> </a> <a class="nav-content-column vertical-content-center" href="https://localhost/test/portfolio/"> <div class="nav-content-box"> Portfolio <span class="sub">Whatever</span> </div> </a> </div>
But the result that I keep getting is:
<div class="nav-drawer-top-links"> <a class="nav-content-column vertical-content-center" href="https://localhost/test/portfolio/"></a> <div class="nav-content-box"> <a class="nav-content-column vertical-content-center" href="https://localhost/test/portfolio/">Portfolio<br> <span class="sub">Whatever</span></a> </div> <a class="nav-content-column vertical-content-center" href="https://localhost/test/portfolio/"></a> <div class="nav-content-box"> <a class="nav-content-column vertical-content-center" href="https://localhost/test/portfolio/">Portfolio<br> <span class="sub">Whatever</span></a> </div> <a class="nav-content-column vertical-content-center" href="https://localhost/test/portfolio/"></a> <div class="nav-content-box"> <a class="nav-content-column vertical-content-center" href="https://localhost/test/portfolio/">Portfolio<br> <span class="sub">Whatever</span></a> </div> </div>