benvoide
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Make a logo bigger for mobileHello @juan4520,
I think themax-widthis exactly the problem. Since you applied that property, the image will not expand beyond its container and, because you are also usingheight: auto;then the image will try to fit (and look) as good as possible inside the container.If you set the image to
max-width: none;then you will be able to handle the size of the image without those restrictions, but I think this is not the goal you want to achieve. My suggestion on this is to handle the size of the logo in the image source directly (maybe using a conditional one for mobile devices) and then print it at full size.I hope this helps.
Sincerely.- This reply was modified 4 years, 7 months ago by benvoide.
Forum: Fixing WordPress
In reply to: Featured images not showing correctlyHi again @nic727,
is it$post->IDbringing the expected ID for each post? Could you print in some way the full content of$f_image, so we can check what is bringing? Perhaps you can do something like:1. Add in your code, after
$f_image definition, the following block of code -> https://0bin.net/paste/yecKXRmf#xeGLVkvbvdpmBnwif+yGCWHZNS0fQZfMMdSCqYfGTit
2. Use the browser inspector to check this block of code and analyze the results. We are expecting some kind of array.Thanks,
regards.Forum: Fixing WordPress
In reply to: Cannot access Installed Plug In pageHey @gemdris,
if you are unable to access the WP admin page, my advice is to disable all plugins by renaming them via FTP (or any file manager) to something like “_plugin”. Then you should be able to access WP admin again and continue debugging your issue.Regards.
Forum: Everything else WordPress
In reply to: One image in thumbnail shareHey Ben,
it seems you are talking about OG properties. Please, take a look at this guide.Regards.
Forum: Fixing WordPress
In reply to: Featured images not showing correctlyHi @nic727,
could you provide a PROD URL or something where I can check in real-time?I noticed a small thing, I do not think this solves the issue but… who knows. You are missing a semicolon here -> http://i.imgur.com/cglIyjT.png
Thanks,
regards.- This reply was modified 5 years ago by benvoide.