Posts: 473
Threads: 70
Joined: Apr 2022
Reputation:
18
I'm not sure why or how I did this but for some reason the size of the text that I'm typing right now, and all the text I now view in all the threads has shrunk very tiny. I have tried to find a settings within our forum which I can access to see how I can get this text back to a more normal size but so far I haven't found the magic setting. At the moment I am using the cltr +/- on my keyboard but that's not a permanent fix. Is there a way for me to enlarge the text size?
Oh so here's an oddity, I just click on Preview Post and the text size of the preview seems larger????
Posts: 4,693
Threads: 222
Joined: Apr 2022
Reputation:
322
You if have a sudden bad effect maybe a mishit key or forum access suddenly got screwy try a Shft + recycle from the browser as Steve has advised, that might clear the setting.
724 855 599 923 575 468 400 206 147 564 878 823 652 556 bxor cross forever
Posts: 473
Threads: 70
Joined: Apr 2022
Reputation:
18
Thanks b - my browser is Chrome and I couldn't find anywhere that I could recycle it however there was an option for a New Window ... didn't work ... and there are options to alter text size and the zoom but these setting are all showing the normal text size as medium and the zoom at 100%. Nothing there to change, any yet even these pages of setting options are very small print. Well I'll keep looking, its pretty clear the issue is not within the QB64PE site, obviously something to do with my own computer. No worries, I have learnt a lot from Agent 86, Max Smart, so after the next beer I'm on the case (pun)
Posts: 486
Threads: 41
Joined: Apr 2022
Reputation:
40
12-12-2025, 03:32 PM
(This post was last modified: 12-12-2025, 03:33 PM by Jack.)
Posts: 473
Threads: 70
Joined: Apr 2022
Reputation:
18
Hi Jack, ya that's exactly what I am doing to read these threads but it doesn't seem to change the text size of what I'm typing here with you. Crazy strange?
Posts: 473
Threads: 70
Joined: Apr 2022
Reputation:
18
12-12-2025, 04:49 PM
(This post was last modified: 12-12-2025, 04:52 PM by Dimster.)
Smokes ... this has turned into one of those cures being worst than the ailment. I think I can live with the smaller text... here is the solution to my problem ala gemini.
Quote:That is indeed very odd behavior, but the fact that it only happens when you are typing a message on that interactive site points toward a specific issue within that website's design or how Chrome interacts with its text input fields (like the comment box).
Here is a more targeted approach to what might be happening and how we can try to fix it:
? The "Typing-Specific" Shrinkage (Likely Cause)
When you are simply viewing the page, the browser is using its default text size. However, when you click into a text input field, a few things could be happening:
Website CSS Override: The website's styling code (CSS) might have a specific rule for the text input box (<textarea> or <input>) that sets the font size to something much smaller than the surrounding text. When you start typing, that small size is applied.
Zoom Inheritance Issue: Your Ctrl + 0 reset might have worked for the main body of the page, but the input box is still remembering a previous zoomed-out state for its contents, especially if it's rendered slightly differently on the page.
?️ Targeted Fixes
Since the issue seems confined to the typing area of a specific site, let's try a couple of more specific steps:
1. Hard Reset the Site's Zoom (Aggressive Reset)
Try a hard refresh of the problematic site after resetting the zoom to ensure all the page elements, including the input box, are forced to reload at 100%.
Go to the affected website.
Press Ctrl + 0 to set the zoom to 100%.
Press Ctrl + Shift + R (Windows/Linux) or Cmd + Shift + R (Mac). This performs a hard refresh, forcing Chrome to ignore cached files and reload the entire page from the server, which can sometimes clear up rendering glitches.
2. Check the Default Page Zoom Setting
If the problem persists, let's ensure the default zoom setting in Chrome's main settings menu is actually 100%.
Open Chrome's Settings (⋮ menu > Settings).
In the left menu, click Appearance.
Check the Page zoom setting. Make sure it is set to 100%.
3. Clear the Site's Cookies and Cache
Corrupted cache or site data can sometimes lead to strange rendering issues like this. Clearing the specific site's data may resolve the conflict.
Go to the affected website.
Click the lock icon (?) to the left of the website address in the address bar.
Click on Site settings or Cookies and site data.
Click the button to Clear data.
Close and reopen the tab, then navigate back to the site and test the input box again. Note: This will log you out of that site, and you will need to sign in again.
4. Adjust Text Scaling
This is the nuclear option for fonts and usually fixes all font-related rendering problems, but it affects all websites.
Open Chrome's Settings (⋮ menu > Settings).
In the left menu, click Appearance.
Look for the Font size setting (which you said is currently set to Medium).
Try changing the setting from Medium to Large, and see if the input text on your problem site becomes a usable size. If it does, you may have to accept slightly larger text on other sites as well.
Since this seems to be a very specific problem with a specific text box on a specific site, the cause is almost certainly related to that site's code or a conflict with your saved data for it (Option 3).
I recommend trying Option 1 (Hard Reset) and then Option 3 (Clear Site Data).
Would you like me to search for any known issues with this kind of text-input shrinking on forums/interactive websites using Chrome?
And it goes on to say
Quote:That is a fantastic detail to provide, and the search results confirm a very likely cause for this exact, frustrating behavior.
✅ Known Issue: CSS Conflict and Focus/Autofill Overrides
The behavior you are describing—the text shrinking specifically when you start typing—is a known issue in Chrome (and other Chromium-based browsers) that typically arises from a conflict between:
The Website's Code (phpBB/CSS): The QB64 forum uses a common forum platform (likely phpBB) which often defines an extremely small base font size (sometimes 10px or less) in its stylesheet for text input areas.
Chrome's Autofill/Focus Protection: When you click into a text field to type, Chrome applies its own internal styles (User Agent Styles) for security reasons (to prevent sites from reading saved credentials, for example). These security styles sometimes override the zoom or local font styles you have set, causing the text to revert to the tiny, hard-coded size defined by the website's CSS.
Since the base text for the input box is defined as small by the website, the moment Chrome focuses on it, it applies its "default" rules over your temporary zoom, snapping the typing area back to that small size.
? The Most Reliable Fix: Injecting Custom CSS
Since the standard browser zoom is failing to stick for the text area itself, the only permanent way to fix a specific element on a specific site is to override the website's small font size rule using a browser extension that allows you to inject custom CSS.
This is a user-side modification that will only affect this website on your browser profile.
Step 1: Install a Custom CSS Extension
You will need a free extension for Chrome that allows you to apply CSS to a specific domain. Examples of such extensions are "Stylebot" or "User JavaScript and CSS."
Step 2: Apply the Custom Font Size
Once you have the extension installed:
Go to the qb64phoenix.com/forum site.
Open the custom CSS extension's editor for that site.
Paste the following code into the editor. This code specifically targets the text area (textarea) used for posting comments and forces its font size to be readable (e.g., 14 pixels), overriding the website's small setting.
CSS
/* Custom CSS to fix small typing font on QB64 forum */
textarea {
font-size: 14px !important;
}
/* You may need to target the message box by its ID or class if the above fails: */
.message-box {
font-size: 14px !important;
}
/* Try this for the post/reply window if using a more complex editor: */
.posting-box textarea {
font-size: 14px !important;
}
How to Use This Code:
Start by pasting just the first line: textarea { font-size: 14px !important; }
Save the changes in the extension.
Go back to the forum, click to reply, and see if the text is now 14px.
If it still looks small, try replacing the first line with the others provided in the example (one at a time) until you find the selector (textarea, .message-box, etc.) that the website uses for the typing box. The !important tag ensures your change wins the CSS conflict.
This approach targets and fixes the root cause—the overly small font size definition in the website's CSS—which is what Chrome is reverting to when the field gains focus.
|