JackGraal
Forum Replies Created
-
Forum: Plugins
In reply to: [Disqus Conditional Load] Doesn't load comments in normal modeYes, as long as the newest version is 10.0.2 ??
Forum: Plugins
In reply to: [Disqus Conditional Load] Doesn't load comments in normal modeWordfence and Cloudflare
Forum: Plugins
In reply to: [Disqus Conditional Load] Doesn't load comments in normal modeI’m using the latest available WordPress version and I have a multisite, so I’ve activated normal mode on English site and “on scroll” on Polish site.
Here’s the same post on each site:
https://jackgraal.com/pl/gamergate-afera-skierowana-w-zla-strone/
https://jackgraal.com/en/gamergate-scandal-going-down-the-wrong-way/Forum: Themes and Templates
In reply to: [Hueman] Large images in posts are not 100% widthI’ve made it work.
Go to functions.php and find “add_image_size”.
All you have to do is to change dimensions in these lines of the code:
// Thumbnail sizes add_image_size( 'thumb-small', 160, 160, true ); add_image_size( 'thumb-medium', 520, 245, true ); add_image_size( 'thumb-large', 720, 340, true );
I changed it to:
// Thumbnail sizes add_image_size( 'thumb-small', 160, 160, true ); add_image_size( 'thumb-medium', 520, 245, true ); add_image_size( 'thumb-large', 780, 368, true );
Forum: Themes and Templates
In reply to: [Hueman] Large images in posts are not 100% widthI have no idea what causes this. I’ve tried to find something via Chrome Developer Tools and it seems that the width is always set to 720 px. I don’t know why.
Forum: Themes and Templates
In reply to: [Hueman] Large images in posts are not 100% widthIs there a way to fix this? I can’t seem to find anything in CSS that sets smaller width for images or some margin/padding.
Yeah, it works now ?? Thanks
https://jackgranatowski.natemat.pl/feed https://szachmatt.com/feed https://zpopk.pl/rss https://zombiesamurai.pl/feed https://wiedzmanaorbicie.pl/feed https://www.martapisze.pl/feeds/posts/default
I used chimpfeedr.com to mix the feeds and add only one link to Feedzy – that way it works. But there’s still the issue with displaying multiple feeds.
Forum: Themes and Templates
In reply to: [Hueman] Large images in posts are not 100% widthYes, that’s the code I’ve tried but it backfired with some smaller images being resized to 100% width of the page.
Awesome, thanks for your help ??
Hi, thanks for replay.
I’ve added the hook, but it still displays the author’s name.
Example page with Feedzy widget: https://jackgraal.com/pl/polecam/
Ok, got it. The css looks like this:
.nav-wrap.container.transition.expand { height: auto !important; }
It makes both menus (one is presented inline, the other is a fixed drop down menu) adjust to changes in browser window size in real time.
It doesn’t seem to work on my smartphone (when changing position from portrait to landscape and the other way) so I changed it to something like that:
@media only screen and (max-width: 959px ) { .nav-wrap.container.transition.expand { height: auto !important; } }
And now it works fine on any device or screen.
Thanks for your help ??
Take a look at your 3rd screenshot (530px) – there is an unnecessary second bar below the menu. I’m trying to get rid of it so it wouldn’t show up without refreshing the page.
Maybe this image will help ?? https://imgur.com/cEgjnup