cjrune
Forum Replies Created
-
Thanks so much, Scott!
Version 1.5.7 does fix the issue for me.
Hi Scott,
Thanks for checking. I am using the theme Kadence and also using the page builder Elementor.
…FYI:
The Holler Box was popping up too much on the site, so I changed it to appear after a delay of 5 seconds and stay gone after user interaction.
Still having the odd issue, though, with the popup loading the same page it appears on.
Hi @scottopolis,
I’m having (I believe) is the same problem. No matter which page you visit on my site, the Holler Box will display the current page inside of it (except on the home page where it oddly displays the last post linked on that page). Below all of this, at the very bottom of the Holler Box box, it displays the “Small text above email field” and input field & button, but not the main text message or popup image.
You can see this on my Home Page at cjrune.com
But also check what it does if you go to the Contact Page, for example, at cjrune.com/contact-cj-rune/
Wondering if you can help. I’ve set Holler Box to Notification Box and to display on all pages, to all visitors, show immediately, and on all page loads so, hopefully, you can test it more easily.
Using Holler Box version 1.5.6 and Elementor version 3.1.4.
Thanks!
..oh, and I should add – this works perfectly with the comment plugin WPDiscuz.
Awesome! Thank you so much. I never would have figured out the CSS code for the Subscribe > Email placeholder text on my own.
As for the bounced email problem, I’ll wait and see if they become excessive. I’ve added Social Login so, hopefully, many will use it instead of Guest user. If it becomes a big problem, I’ll definitely post a new topic in the wpDiscuz.com support forum.
Thanks again!
Forum: Everything else WordPress
In reply to: Themes with different media for desktop and mobileThe
<img srcset>code provides the browser with a list of images to choose from and it’ll pick the best size for its current display width.If you like, you can then also specify the
<max-width>. This tells browsers up to what width it should use the mobile image, then over that width to always use the larger desktop image.Forum: Everything else WordPress
In reply to: Themes with different media for desktop and mobileThemes are intended to create a basic consistency for your site – those things that repeat all throughout; such as headers, footers, sizes and types of fonts, and, especially, keeping the colors of all these things consistent. When it comes to the content that exists between the headers and footers, themes don’t usually control much of that, except for the overall width of that content, the colors and sizes of the fonts used, background colors, etc.
A mobile device downloading a large image is really no different than a desktop doing it though. Not anymore, anyway. This used to be critical.
However, there are still a couple of options:
For one, make sure the image has been compressed using a free service such as TinyPNG. Their system does a great job of reducing file size without loss of quality. Simply compress it at their site before uploading to WP (and if uploading images often, they also offer a free WP plugin to automatically losslessly compress .png and .jpg images as you upload them)
If that’s still not enough, then you can do as stated in the first response and designate a smaller image for mobile devices. I found the easiest way to do this is by using a WSYWIG HTML designer such as Elementor, but you can also code it manually with something like:
<img srcset="elva-fairy-480w.jpg 480w, elva-fairy-800w.jpg 800w" sizes="(max-width: 600px) 480px, 800px" src="elva-fairy-800w.jpg" alt="Elva dressed as a fairy">Forum: Everything else WordPress
In reply to: Themes with different media for desktop and mobile…honestly, though, it’s not that often you need to take these additional steps unless you want the layout to change completely between various browser/device types, or you have a specific layout issue related to mobile.
Forum: Everything else WordPress
In reply to: Themes with different media for desktop and mobileMost designs simply insert the full-size image into the page and let the code take care of the sizing, such as through the use of a DIV tag. That way, when the available width of the viewing device decreases, so does the image width. It still loads the larger image but shows it smaller.
If you want only a smaller, separate image loaded on mobile browsers, then you would have to insert two separate images, one for large screens and one for mobile, then tell the browsers which one they need to load and show.
Forum: Everything else WordPress
In reply to: Themes with different media for desktop and mobileMost mobile browsers will resize the images automatically, but if you have a specific layout issue with a specific image, then what I mentioned above can help. In most cases, you won’t likely have to specify separate mobile images each time.
Also, by default, WordPress does automatically create multiple sizes of each image you upload. You can adjust the sizes of these default “thumbnail” images in WordPress>Settings>Media.
Themes are just that though – a way to theme your site (overall color, layout, headers, footers, etc.) For images within the bodies of the pages – the content – you do have to code those, and design plugins like the one mentioned makes this work much easier.
Forum: Everything else WordPress
In reply to: Themes with different media for desktop and mobileIf your current theme doesn’t provide this option then you will have to add it (many don’t except perhaps for in the Header and/or Footers).
One easy way to do this is to use a design plugin such as the free Elementor. With it, you can insert an image and then under Advanced options, choose Responsiveness and set it so that the image doesn’t show on Mobile displays. Then add another Mobile-only image and set it in the same way, but so that it doesn’t display on Desktop or Tablet.