ccmcneil
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: More than a gig needed?! Pbm allocating memory@karimhadid
That’s exactly what you have to do. Vellum theme is incompatible with eAccelerator. A warning would have been nice. What a nightmare.Forum: Plugins
In reply to: [WP ChatBlazer] Plugin Outdated?I get the message “Domain is not allowed to host this application”
In order to use Chatblazer for chat you will need to signup for a free hosted chat for your domain at https://www.chatblazer.com.Forum: Plugins
In reply to: [WP Twitter] Fatal error: Call to undefined function mb_strlen()How did you solve this one, I just got this for the first time 4 days after installing it?
Just did.
*visibility:hidden;
It works for both media-queries.css and for the bootstrap individual screen sizes. Here’s how I did it in the media-queries and it works.
@media all and (max-width: 480px) { div#a37693cfc748049e45d87b8c7d8b9aacd-po.visiblebox { display: block; display:none !important; } div#a37693cfc748049e45d87b8c7d8b9aacd-po { position: absolute; background: rgba(0, 0, 0, 0) url(https://www.ideaforgetest2.com/wp-content/plugins/wordpress-popup/popoverincludes/css/default/images/opaque.png) repeat; z-index: 999; padding: 10px; visibility: visible; display:none !important; }
I probably could’ve just set visibily: none; but your way works too. Thanks a bunch!
Yeah, I guess I’m going to put all the CSS code that I find by inspecting element into each responsive sheet (i.e. 480p etc.) Then for each class or id, apply the display:none !important; rule. I’ll let you know how it goes. Thanks.