styzer
Forum Replies Created
-
OMG! I’m so sorry for not responding earlier!! I think it was my AdBlocker that caused that.
I’m so very sorry for not letting you know. I just saw this because I was curious to see if I can build a whole website with Beaver Builder.
Andre
- This reply was modified 2 years, 1 month ago by styzer.
Forum: Fixing WordPress
In reply to: Cleaned virus – now WP uninstalled?Thank you James, very helpful to know!
Forum: Fixing WordPress
In reply to: Cleaned virus – now WP uninstalled?Hi George,
Thank you for your note, and YES the hosting tech support found they had left a few files in quarantine and restored them.
I will mark this resolved.
Best regards.
- This reply was modified 2 years, 3 months ago by styzer.
Forum: Plugins
In reply to: [Favorites] Bug? And is this plugin abandoned?Thanks for chiming in… too bad it was a good and simple one, and very helpful. Hope they pick it up again if they can. Hopefully it’s not due to a tragedy.
All the best!
Forum: Plugins
In reply to: [PDF.js Viewer] Full Screen View – add HOME button/link?For anyone else who would want to add a HOME link in the top toolbar, I found a way to do it. See code above.
1- I edited the file viewer.php located in pdfjs-viewer-shortcode\pdfjs\web.
2- I used the “button” code already in the file. I copied one instance of that and removed the specific class and id info, and created my own tabindex number (70, but it could be anything not used yet).
3- It has to be inserted in the toolbarViewerMiddle section. See code.
<div id="toolbarViewerMiddle"> <div class="splitToolbarButton"> <button id="zoomOut" class="toolbarButton zoomOut" title="Zoom Out" tabindex="21" data-l10n-id="zoom_out"> <span data-l10n-id="zoom_out_label">Zoom Out</span> </button> <div class="splitToolbarButtonSeparator"></div> <button id="zoomIn" class="toolbarButton zoomIn" title="Zoom In" tabindex="22" data-l10n-id="zoom_in"> <span data-l10n-id="zoom_in_label">Zoom In</span> </button> <!-- START HACK TO SHOW HOME BUTTON --> <div class="splitToolbarButtonSeparator"></div> <button title="Home" tabindex="70" style="margin:3px; padding: 3px; background: #d7d7d8; border: 1px #333;"> <a href="https://yourhomepage.com" title="Return to website"> > Home </a> </button> <!-- END HACK --> </div> </div>The result is to have a Home “button” on the native toolbar. As a matter of preference, I added a style in the header of that viewer.php file to remove the underline for the link.
<style> a:link { text-decoration: none; } </style>And finally as you can see, I added a background color, and a bit of margin and padding.
Hope that helps! 🙂
Andre
Forum: Themes and Templates
In reply to: [Fifty50] Side panel image: more than 1 on rotation?Just a short addendum in case anyone finds this support ticket: the website has been moved and here is the most recent, corrected URL:
https://understandingthefourfacesofthelivingcreatures.com/
Cheers!
- This reply was modified 2 years, 4 months ago by styzer.
Forum: Themes and Templates
In reply to: [Fifty50] Side panel image: more than 1 on rotation?On Android. Don’t worry about it, you have gone above and beyond and I truly appreciate all the help and suggestions and the codes snippets!
Consider this one resolved for good. If I have any other question I will start a new topic. ☺
Regards,
Andre
Forum: Themes and Templates
In reply to: [Fifty50] Side panel image: more than 1 on rotation?Thank you for looking at this.
https://gyazo.com/f3e0428fbf1116677f326c302497c84a
Even the side-column spills out.
https://gyazo.com/be5b1831ce431a4465b0b92605d81d77
It is disheartening to say the least. Even PDF plugin doesn’t word-wrap. I’ll have to rethink this.
Thank you for all your precious help. I might need to just find another PDF plugin, maybe that would fix this issue.
Best regards,
Andre
Forum: Themes and Templates
In reply to: [Fifty50] Side panel image: more than 1 on rotation?OK, sorry. I will do that for anything else after this since your reply matters for continuity
And it’s a Yes for the text on the right, BUT on mobile phones. On desktops it does wrap, but not on mobile.
Forum: Themes and Templates
In reply to: [Fifty50] Side panel image: more than 1 on rotation?Hi, I noticed on mobile if I zoom-in to make the text bigger, the text spills out of the screen. Is it possible to instead have the text become bigger but always contained within the screen frame?
Here:
https://understandingthefourfacesofthelivingcreatures.com/1/index.php/2024/01/18/chapter-1/
I tried to insert
.entry-content {
word-wrap: break-word;
}But no joy. How would I make the text globally responsive, no matter if its a page or post?
Thank you!
Forum: Themes and Templates
In reply to: [Fifty50] Side panel image: more than 1 on rotation?Absolutely, yes. ☺
Forum: Themes and Templates
In reply to: [Fifty50] Side panel image: more than 1 on rotation?Yes!!! I can’t thank you enough for your patience and the solutions. 🙂
Forum: Themes and Templates
In reply to: [Fifty50] Side panel image: more than 1 on rotation?OK, little by little! 🙂
Now the menu is centered, but the page has shifted toward the right, as if there was a side column again.
https://gyazo.com/c22f4505033acc86cefaf8dedeb672c0
I bet you there’s only one simple little tweak left. 🙂
Forum: Themes and Templates
In reply to: [Fifty50] Side panel image: more than 1 on rotation?Yes, same here. Except the page that I removed the sidecolumn, on that page it is not centered. Look at the screenshot below?
Forum: Themes and Templates
In reply to: [Fifty50] Side panel image: more than 1 on rotation?Almost! It is working for the pages without a sidecolumn. But then the page with one, the nav covers the top of the sidsecolumn image. I tried to adapt the code with a page-id but no luck.