Hi Steve,
If the widget area is still in the back-end then it should be in the front-end too. Try installing this plugin and see if it helps: https://wordpress.org/plugins/classic-widgets/
Thanks Ben, I’ll give it a try in a while. What I should have said is that the widget itself is still visible in admin, bit the widget area is not there to drop it into. Is the widget area beneath the menu a premium feature?
Also, I don’t know if you can see it, but for some reason my search icon flashes a black background briefly when loading. It’s only a small thing but it really gets to me. Can you see where that might be coming from?
Thanks again
Steve
Okay I understand now. That widget area is added by Tracks Pro, so it will need to be activated on your site. You don’t need to renew the license key to continue using your current version.
As for the search bar, I think what’s happening is that there is some custom CSS added by a plugin and that code is being loaded asynchronously. That leads it to be styled one way and then styled another way right after.
This is the code I see: https://share.getcloudapp.com/04u5yk96
If you add that into the Additional CSS section in the Customizer instead, it should prevent the flash of black background.
Thanks Ben. Will I have to repurchase Tracks Pro in order to do that? Hopefully I can do that in a little while and I can get things back in order.
The Additional CSS section is available without Tracks Pro, so you can make that change right away.
If you need to re-download Tracks Pro, you can do that from your account page. No need to repurchase.
Awesome, thanks as always Ben.
In Tracks Pro, btw, is it possible to force columns to maintain the same height per post? For example, an article with a longer title will push the next post downwards below the level of the one next to it, making it out of line. This probably doesn’t bother most people and applies to the majority of blog layouts regardless of theme, but I’m a weird stickler with that sort of thing…
You’re using the two-column layout, right? This CSS should work:
#loop-container {
display: flex;
flex-wrap: wrap;
}
.excerpt {
float: none !important;
}
.excerpt-container {
height: 100%;
}
It will keep the posts in even rows rather than letting them stagger.
You’re the best, Ben, thanks so much!
One final thing, I promise…
Now I have 2x columns with equal rows, a black line has appeared down the edge of some of the pics. Where can I get rid of this?
Thanks man, I’ll leave you alone after that 🙂
Steve
Sure haha, try adding this code and let me know if it works:
@media all and (min-width: 56.25em) {
.two-column .featured-image {
right: 0;
}
}
Thanks Ben – that’s worked for some of the pics, but not all of them. The pictures in the right hand column still have the line, and weirdly some on the left further down the page.
No problem, let’s try one more variation. You can replace the last snippet with this instead:
@media all and (min-width: 56.25em) {
.two-column .featured-image {
right: 0 !important;
left: 0 !important;
}
}
That’s it! Thanks so much Ben.
Great! Glad that last snippet worked out.