• text too small on phone

    From Dale@dalekellytoo@gmail.com to comp.infosystems.www.authoring.html,comp.infosystems.www.authoring.stylesheets,alt.html on Fri Jul 10 12:45:30 2026
    From Newsgroup: alt.html


    Going to change some design of my Website.

    https://www.dalekelly.org/

    Regular text is okay on my computer but too small on my iPhone:

    <p>Regular Text</p>

    Headers are okay on iPhone:

    <h1>Largest Header</h1>
    <h2>Medium Header</h2>
    <h3>Smallest Header</h3>

    I really don't want to replace regular text with header text. I would
    like to use Style or my Cascading Style Sheet (CSS). I have two CSS and
    really a beginner on CSS programming. My CSS files do adjust things for
    window size.

    mystyle2.css is for index.html

    https://www.dalekelly.org/mystyle2.css

    mystyle.css is for all other pages

    https://www.dalekelly.org/mystyle.css


    Design Thoughts?

    Here is something that made me think of this:

    https://www.dalekelly.org/weblog.html#text
    --
    Mystery? -> https://www.dalekelly.org/

    --- Synchronet 3.22a-Linux NewsLink 1.2
  • From Dale@dalekellytoo@gmail.com to comp.infosystems.www.authoring.html,comp.infosystems.www.authoring.stylesheets,alt.html on Fri Jul 10 22:23:54 2026
    From Newsgroup: alt.html

    On 7/10/2026 12:45 PM, Dale wrote:


    Regular text is okay on my computer but too small on my iPhone:


    I got some replies on Reddit.

    This worked for a web page on computer and phone:

    https://www.dalekelly.org/weblog.html


    <style>

    p {
    font-size: 30px;
    }

    </style>


    Here is where this worked well:

    https://www.dalekelly.org/weblog.html#text

    Didn't seem to work in CSS when I tried.


    I really don't want this to be a page variable. Prefer my Cascading
    Style Sheets (CSS). I have two CSS and really a beginner on CSS
    programming. My CSS files do adjust things for menu look on image size
    based on window size.

    mystyle2.css is for index.html

    https://www.dalekelly.org/mystyle2.css

    mystyle.css is for all other pages

    https://www.dalekelly.org/mystyle.css
    --
    Mystery? -> https://www.dalekelly.org/
    --- Synchronet 3.22a-Linux NewsLink 1.2
  • From JJ@jj4public@gmail.com to comp.infosystems.www.authoring.html,comp.infosystems.www.authoring.stylesheets,alt.html on Sat Jul 11 09:42:35 2026
    From Newsgroup: alt.html

    On Fri, 10 Jul 2026 12:45:30 -0400, Dale wrote:
    Going to change some design of my Website.

    https://www.dalekelly.org/

    Regular text is okay on my computer but too small on my iPhone:

    <p>Regular Text</p>

    Headers are okay on iPhone:

    <h1>Largest Header</h1>
    <h2>Medium Header</h2>
    <h3>Smallest Header</h3>

    I really don't want to replace regular text with header text. I would
    like to use Style or my Cascading Style Sheet (CSS). I have two CSS and really a beginner on CSS programming. My CSS files do adjust things for window size.

    mystyle2.css is for index.html

    https://www.dalekelly.org/mystyle2.css

    mystyle.css is for all other pages

    https://www.dalekelly.org/mystyle.css

    Design Thoughts?

    Here is something that made me think of this:

    https://www.dalekelly.org/weblog.html#text

    Avoid using `px` units, since computer/device screen sizes are different.
    For fonts, use `pt` (points).
    For others use `%` or `vw`/`vh`.

    `%` is a percentage relative to block/inline-block container width/height.

    `vw` is a percentage relative to the browser's viewport width excluding scrollbar.

    `vh` is a percentage relative to the browser's viewport height excluding scrollbar.
    --- Synchronet 3.22a-Linux NewsLink 1.2
  • From JJ@jj4public@gmail.com to comp.infosystems.www.authoring.html,comp.infosystems.www.authoring.stylesheets,alt.html on Sat Jul 11 09:47:53 2026
    From Newsgroup: alt.html

    On Sat, 11 Jul 2026 09:42:35 +0700, JJ wrote:
    For fonts, use `pt` (points).

    FYI, 1 point is equal to 1/72 inch. The default for most (if not all)
    browsers is 12pt.

    Alternative units:
    `in` for inch.
    `cm` for centimeter.
    `mm` for millimeter.
    --- Synchronet 3.22a-Linux NewsLink 1.2
  • From Dale@dalekellytoo@gmail.com to comp.infosystems.www.authoring.html,comp.infosystems.www.authoring.stylesheets,alt.html on Sat Jul 11 11:54:47 2026
    From Newsgroup: alt.html

    On 7/10/2026 10:23 PM, Dale wrote:
    On 7/10/2026 12:45 PM, Dale wrote:



    I got some replies on Reddit.


    Got my <p> text big enough for phone. Added this to bottom of my two CSS files.

    p {font-size: 150%;}

    I got a reply on Reddit that said add it to the bottom of the file. I
    had tried to add it to the top. Might have just been I didn't refresh a
    CSS file for the HTML files

    This file is for HOME page:

    https://www.dalekelly.org/mystyle2.css

    This file is for all other HTML pages:

    https://www.dalekelly.org/mystyle.css
    --
    Mystery? -> https://www.dalekelly.org/
    --- Synchronet 3.22a-Linux NewsLink 1.2
  • From Dale@dalekellytoo@gmail.com to comp.infosystems.www.authoring.html,comp.infosystems.www.authoring.stylesheets,alt.html on Sat Jul 11 14:00:43 2026
    From Newsgroup: alt.html

    On 7/11/2026 11:54 AM, Dale wrote:
    On 7/10/2026 10:23 PM, Dale wrote:
    On 7/10/2026 12:45 PM, Dale wrote:



    I got some replies on Reddit.


    Got my <p> text big enough for phone. Added this to bottom of my two CSS files.

    p {font-size: 150%;}

    I got a reply on Reddit that said add it to the bottom of the file. I
    had tried to add it to the top. Might have just been I didn't refresh a
    CSS file for the HTML files

    This file is for HOME page:

    https://www.dalekelly.org/mystyle2.css

    This file is for all other HTML pages:

    https://www.dalekelly.org/mystyle.css





    CSS edit doesn't change text size with Chrome browser for iPhone. Works
    with Safari browser on iPhone.

    Works with Chrome, Edge and Firefox browsers on computer with Windows 10.
    --
    Mystery? -> https://www.dalekelly.org/
    --- Synchronet 3.22a-Linux NewsLink 1.2
  • From Dale@dalekellytoo@gmail.com to comp.infosystems.www.authoring.html,comp.infosystems.www.authoring.stylesheets,alt.html on Sat Jul 11 18:30:33 2026
    From Newsgroup: alt.html

    On 7/11/2026 2:00 PM, Dale wrote:
    On 7/11/2026 11:54 AM, Dale wrote:
    On 7/10/2026 10:23 PM, Dale wrote:
    On 7/10/2026 12:45 PM, Dale wrote:



    I got some replies on Reddit.


    Got my <p> text big enough for phone. Added this to bottom of my two
    CSS files.

    p {font-size: 150%;}

    I got a reply on Reddit that said add it to the bottom of the file. I
    had tried to add it to the top. Might have just been I didn't refresh
    a CSS file for the HTML files

    This file is for HOME page:

    https://www.dalekelly.org/mystyle2.css

    This file is for all other HTML pages:

    https://www.dalekelly.org/mystyle.css





    CSS edit doesn't change text size with Chrome browser for iPhone. Works
    with Safari browser on iPhone.

    Works with Chrome, Edge and Firefox browsers on computer with Windows 10.


    <p> in <style> on an individual page works on iPhone Chrome.

    Figured out how to refresh an HTML page for the Chrome Web Browser for
    iPhone on an icon of the Chrome browser. Still didn't load the new
    bigger text size for smart phones. May have to refresh the CSS file. The problem is that I can't type file names into the iPhone screen well. I
    do most things with voice. Text edit already works on iPhone Safari browser.

    Have replies on Reddit, I got an answer that I may be able to put a
    refresh into CSS file. Will be searching w3 and w3schools.
    --
    Mystery? -> https://www.dalekelly.org/
    --- Synchronet 3.22a-Linux NewsLink 1.2
  • From Dale@dalekellytoo@gmail.com to comp.infosystems.www.authoring.html,comp.infosystems.www.authoring.stylesheets,alt.html,misc.phone.mobile.iphone on Sat Jul 11 21:45:56 2026
    From Newsgroup: alt.html

    On 7/11/2026 6:30 PM, Dale wrote:
    On 7/11/2026 2:00 PM, Dale wrote:
    On 7/11/2026 11:54 AM, Dale wrote:
    On 7/10/2026 10:23 PM, Dale wrote:
    On 7/10/2026 12:45 PM, Dale wrote:



    I got some replies on Reddit.


    Got my <p> text big enough for phone. Added this to bottom of my two
    CSS files.

    p {font-size: 150%;}

    I got a reply on Reddit that said add it to the bottom of the file. I
    had tried to add it to the top. Might have just been I didn't refresh
    a CSS file for the HTML files

    This file is for HOME page:

    https://www.dalekelly.org/mystyle2.css

    This file is for all other HTML pages:

    https://www.dalekelly.org/mystyle.css





    CSS edit doesn't change text size with Chrome browser for iPhone.
    Works with Safari browser on iPhone.

    Works with Chrome, Edge and Firefox browsers on computer with Windows 10.


    <p> in <style> on an individual page works on iPhone Chrome.

    Figured out how to refresh an HTML page for the Chrome Web Browser for iPhone on an icon of the Chrome browser. Still didn't load the new
    bigger text size for smart phones. May have to refresh the CSS file. The problem is that I can't type file names into the iPhone screen well. I
    do most things with voice. Text edit already works on iPhone Safari
    browser.

    Have replies on Reddit, I got an answer that I may be able to put a
    refresh into CSS file. Will be searching w3 and w3schools.


    Refresh code worked on an HTML page I put it in . Text size on links
    from the page were still plain <p>. Just doesn't work on Chrome browser
    on iPhone. Probably need to refresh the CSS in Chrome.

    Normal CSS link on an HTML page without refresh:

    <link rel="stylesheet" type="text/css" href="https://www.dalekelly.org/mystyle.css">

    When I added refresh to the link:

    <link rel="stylesheet" type="text/css" href="https://www.dalekelly.org/mystyle.css?v=1">
    --
    Mystery? -> https://www.dalekelly.org/
    --- Synchronet 3.22a-Linux NewsLink 1.2
  • From Dale@dalekellytoo@gmail.com to comp.infosystems.www.authoring.html,comp.infosystems.www.authoring.stylesheets,alt.html,misc.phone.mobile.iphone on Sat Jul 11 22:28:11 2026
    From Newsgroup: alt.html

    On 7/11/2026 9:45 PM, Dale wrote:
    On 7/11/2026 6:30 PM, Dale wrote:
    On 7/11/2026 2:00 PM, Dale wrote:
    On 7/11/2026 11:54 AM, Dale wrote:
    On 7/10/2026 10:23 PM, Dale wrote:
    On 7/10/2026 12:45 PM, Dale wrote:



    I got some replies on Reddit.


    Got my <p> text big enough for phone. Added this to bottom of my two
    CSS files.

    p {font-size: 150%;}

    I got a reply on Reddit that said add it to the bottom of the file.
    I had tried to add it to the top. Might have just been I didn't
    refresh a CSS file for the HTML files

    This file is for HOME page:

    https://www.dalekelly.org/mystyle2.css

    This file is for all other HTML pages:

    https://www.dalekelly.org/mystyle.css





    CSS edit doesn't change text size with Chrome browser for iPhone.
    Works with Safari browser on iPhone.

    Works with Chrome, Edge and Firefox browsers on computer with Windows
    10.


    <p> in <style> on an individual page works on iPhone Chrome.

    Figured out how to refresh an HTML page for the Chrome Web Browser for
    iPhone on an icon of the Chrome browser. Still didn't load the new
    bigger text size for smart phones. May have to refresh the CSS file.
    The problem is that I can't type file names into the iPhone screen
    well. I do most things with voice. Text edit already works on iPhone
    Safari browser.

    Have replies on Reddit, I got an answer that I may be able to put a
    refresh into CSS file. Will be searching w3 and w3schools.


    Refresh code worked on an HTML page I put it in . Text size on links
    from the page were still plain <p>. Just doesn't work on Chrome browser
    on iPhone. Probably need to refresh the CSS in Chrome.

    Normal CSS link on an HTML page without refresh:

    <link rel="stylesheet" type="text/css" href="https://www.dalekelly.org/ mystyle.css">

    When I added refresh to the link:

    <link rel="stylesheet" type="text/css" href="https://www.dalekelly.org/ mystyle.css?v=1">


    Only doesn't work for me on iPhone Google Chrome Web Browser.
    --
    Mystery? -> https://www.dalekelly.org/
    --- Synchronet 3.22a-Linux NewsLink 1.2
  • From Dale@dalekellytoo@gmail.com to comp.infosystems.www.authoring.html,comp.infosystems.www.authoring.stylesheets,alt.html,misc.phone.mobile.iphone on Sun Jul 12 12:18:02 2026
    From Newsgroup: alt.html

    On 7/11/2026 10:28 PM, Dale wrote:
    On 7/11/2026 9:45 PM, Dale wrote:
    On 7/11/2026 6:30 PM, Dale wrote:
    On 7/11/2026 2:00 PM, Dale wrote:
    On 7/11/2026 11:54 AM, Dale wrote:
    On 7/10/2026 10:23 PM, Dale wrote:
    On 7/10/2026 12:45 PM, Dale wrote:



    I got some replies on Reddit.


    Got my <p> text big enough for phone. Added this to bottom of my
    two CSS files.

    p {font-size: 150%;}

    I got a reply on Reddit that said add it to the bottom of the file. >>>>> I had tried to add it to the top. Might have just been I didn't
    refresh a CSS file for the HTML files

    This file is for HOME page:

    https://www.dalekelly.org/mystyle2.css

    This file is for all other HTML pages:

    https://www.dalekelly.org/mystyle.css





    CSS edit doesn't change text size with Chrome browser for iPhone.
    Works with Safari browser on iPhone.

    Works with Chrome, Edge and Firefox browsers on computer with
    Windows 10.


    <p> in <style> on an individual page works on iPhone Chrome.

    Figured out how to refresh an HTML page for the Chrome Web Browser
    for iPhone on an icon of the Chrome browser. Still didn't load the
    new bigger text size for smart phones. May have to refresh the CSS
    file. The problem is that I can't type file names into the iPhone
    screen well. I do most things with voice. Text edit already works on
    iPhone Safari browser.

    Have replies on Reddit, I got an answer that I may be able to put a
    refresh into CSS file. Will be searching w3 and w3schools.


    Refresh code worked on an HTML page I put it in . Text size on links
    from the page were still plain <p>. Just doesn't work on Chrome
    browser on iPhone. Probably need to refresh the CSS in Chrome.

    Normal CSS link on an HTML page without refresh:

    <link rel="stylesheet" type="text/css" href="https://
    www.dalekelly.org/ mystyle.css">

    When I added refresh to the link:

    <link rel="stylesheet" type="text/css" href="https://
    www.dalekelly.org/ mystyle.css?v=1">


    Only doesn't work for me on iPhone Google Chrome Web Browser.



    If I put <p> size in <style> on an HTML page it works. That would
    require edits of all HTML pages. Really want to do CSS. What I have done
    with <p> in CSS works with every browser except iPhone Chrome. If I add
    a refresh code to the CSS link in an HTML page then Chrome works. But
    again, I would have to edit all pages. Is there just an issue that
    iPhone Chrome doesn't reload the CSS page?
    --
    Mystery? -> https://www.dalekelly.org/
    --- Synchronet 3.22a-Linux NewsLink 1.2
  • From Dale@dalekellytoo@gmail.com to comp.infosystems.www.authoring.html,comp.infosystems.www.authoring.stylesheets,alt.html,misc.phone.mobile.iphone on Sun Jul 12 14:42:04 2026
    From Newsgroup: alt.html

    On 7/12/2026 12:18 PM, Dale wrote:
    On 7/11/2026 10:28 PM, Dale wrote:
    On 7/11/2026 9:45 PM, Dale wrote:
    On 7/11/2026 6:30 PM, Dale wrote:
    On 7/11/2026 2:00 PM, Dale wrote:
    On 7/11/2026 11:54 AM, Dale wrote:
    On 7/10/2026 10:23 PM, Dale wrote:
    On 7/10/2026 12:45 PM, Dale wrote:



    I got some replies on Reddit.


    Got my <p> text big enough for phone. Added this to bottom of my
    two CSS files.

    p {font-size: 150%;}

    I got a reply on Reddit that said add it to the bottom of the
    file. I had tried to add it to the top. Might have just been I
    didn't refresh a CSS file for the HTML files

    This file is for HOME page:

    https://www.dalekelly.org/mystyle2.css

    This file is for all other HTML pages:

    https://www.dalekelly.org/mystyle.css





    CSS edit doesn't change text size with Chrome browser for iPhone.
    Works with Safari browser on iPhone.

    Works with Chrome, Edge and Firefox browsers on computer with
    Windows 10.


    <p> in <style> on an individual page works on iPhone Chrome.

    Figured out how to refresh an HTML page for the Chrome Web Browser
    for iPhone on an icon of the Chrome browser. Still didn't load the
    new bigger text size for smart phones. May have to refresh the CSS
    file. The problem is that I can't type file names into the iPhone
    screen well. I do most things with voice. Text edit already works on
    iPhone Safari browser.

    Have replies on Reddit, I got an answer that I may be able to put a
    refresh into CSS file. Will be searching w3 and w3schools.


    Refresh code worked on an HTML page I put it in . Text size on links
    from the page were still plain <p>. Just doesn't work on Chrome
    browser on iPhone. Probably need to refresh the CSS in Chrome.

    Normal CSS link on an HTML page without refresh:

    <link rel="stylesheet" type="text/css" href="https://
    www.dalekelly.org/ mystyle.css">

    When I added refresh to the link:

    <link rel="stylesheet" type="text/css" href="https://
    www.dalekelly.org/ mystyle.css?v=1">


    Only doesn't work for me on iPhone Google Chrome Web Browser.



    If I put <p> size in <style> on an HTML page it works. That would
    require edits of all HTML pages. Really want to do CSS. What I have done with <p> in CSS works with every browser except iPhone Chrome. If I add
    a refresh code to the CSS link in an HTML page then Chrome works. But
    again, I would have to edit all pages. Is there just an issue that
    iPhone Chrome doesn't reload the CSS page?



    updated chrome from the app store, that didn't fix it, my phone is
    iPhone17, Safari browser works fine, all computer browsers work fine
    including computer Chrome, your code with my file is for all pages
    except index.html where the CSS file is mystyle2.css ...

    <link rel="stylesheet" href="https://www.dalekelly.org/mystyle.css?v=1">

    ... on an HTML page that code works fine on iPhone Chrome, ,I would just
    have to edit all pages
    --
    Mystery? -> https://www.dalekelly.org/
    --- Synchronet 3.22a-Linux NewsLink 1.2
  • From Chris@ithinkiam@gmail.com to misc.phone.mobile.iphone,comp.infosystems.www.authoring.html,comp.infosystems.www.authoring.stylesheets,alt.html on Mon Jul 13 07:11:37 2026
    From Newsgroup: alt.html

    Dale <dalekellytoo@gmail.com> wrote:
    On 7/12/2026 12:18 PM, Dale wrote:
    On 7/11/2026 10:28 PM, Dale wrote:
    On 7/11/2026 9:45 PM, Dale wrote:
    On 7/11/2026 6:30 PM, Dale wrote:
    On 7/11/2026 2:00 PM, Dale wrote:
    On 7/11/2026 11:54 AM, Dale wrote:
    On 7/10/2026 10:23 PM, Dale wrote:
    On 7/10/2026 12:45 PM, Dale wrote:



    I got some replies on Reddit.


    Got my <p> text big enough for phone. Added this to bottom of my >>>>>>> two CSS files.

    p {font-size: 150%;}

    I got a reply on Reddit that said add it to the bottom of the
    file. I had tried to add it to the top. Might have just been I
    didn't refresh a CSS file for the HTML files

    This file is for HOME page:

    https://www.dalekelly.org/mystyle2.css

    This file is for all other HTML pages:

    https://www.dalekelly.org/mystyle.css





    CSS edit doesn't change text size with Chrome browser for iPhone. >>>>>> Works with Safari browser on iPhone.

    Works with Chrome, Edge and Firefox browsers on computer with
    Windows 10.


    <p> in <style> on an individual page works on iPhone Chrome.

    Figured out how to refresh an HTML page for the Chrome Web Browser
    for iPhone on an icon of the Chrome browser. Still didn't load the
    new bigger text size for smart phones. May have to refresh the CSS
    file. The problem is that I can't type file names into the iPhone
    screen well. I do most things with voice. Text edit already works on >>>>> iPhone Safari browser.

    Have replies on Reddit, I got an answer that I may be able to put a >>>>> refresh into CSS file. Will be searching w3 and w3schools.


    Refresh code worked on an HTML page I put it in . Text size on links
    from the page were still plain <p>. Just doesn't work on Chrome
    browser on iPhone. Probably need to refresh the CSS in Chrome.

    Normal CSS link on an HTML page without refresh:

    <link rel="stylesheet" type="text/css" href="https://
    www.dalekelly.org/ mystyle.css">

    When I added refresh to the link:

    <link rel="stylesheet" type="text/css" href="https://
    www.dalekelly.org/ mystyle.css?v=1">


    Only doesn't work for me on iPhone Google Chrome Web Browser.



    If I put <p> size in <style> on an HTML page it works. That would
    require edits of all HTML pages. Really want to do CSS. What I have done
    with <p> in CSS works with every browser except iPhone Chrome. If I add
    a refresh code to the CSS link in an HTML page then Chrome works. But
    again, I would have to edit all pages. Is there just an issue that
    iPhone Chrome doesn't reload the CSS page?



    updated chrome from the app store, that didn't fix it, my phone is
    iPhone17, Safari browser works fine, all computer browsers work fine including computer Chrome, your code with my file is for all pages
    except index.html where the CSS file is mystyle2.css ...

    <link rel="stylesheet" href="https://www.dalekelly.org/mystyle.css?v=1">

    ... on an HTML page that code works fine on iPhone Chrome, ,I would just have to edit all pages


    The days coding your own HTML are long gone. The likes of chatGPT are
    perfect for answering these types of niggly questions. It will also write
    the HTML for you just as you want it.

    --- Synchronet 3.22a-Linux NewsLink 1.2
  • From Dale@dalekellytoo@gmail.com to misc.phone.mobile.iphone,comp.infosystems.www.authoring.html,comp.infosystems.www.authoring.stylesheets,alt.html on Mon Jul 13 10:41:17 2026
    From Newsgroup: alt.html

    On 7/13/2026 3:11 AM, Chris wrote:
    Dale <dalekellytoo@gmail.com> wrote:
    On 7/12/2026 12:18 PM, Dale wrote:
    On 7/11/2026 10:28 PM, Dale wrote:
    On 7/11/2026 9:45 PM, Dale wrote:
    On 7/11/2026 6:30 PM, Dale wrote:
    On 7/11/2026 2:00 PM, Dale wrote:
    On 7/11/2026 11:54 AM, Dale wrote:
    On 7/10/2026 10:23 PM, Dale wrote:
    On 7/10/2026 12:45 PM, Dale wrote:



    I got some replies on Reddit.


    Got my <p> text big enough for phone. Added this to bottom of my >>>>>>>> two CSS files.

    p {font-size: 150%;}

    I got a reply on Reddit that said add it to the bottom of the
    file. I had tried to add it to the top. Might have just been I >>>>>>>> didn't refresh a CSS file for the HTML files

    This file is for HOME page:

    https://www.dalekelly.org/mystyle2.css

    This file is for all other HTML pages:

    https://www.dalekelly.org/mystyle.css





    CSS edit doesn't change text size with Chrome browser for iPhone. >>>>>>> Works with Safari browser on iPhone.

    Works with Chrome, Edge and Firefox browsers on computer with
    Windows 10.


    <p> in <style> on an individual page works on iPhone Chrome.

    Figured out how to refresh an HTML page for the Chrome Web Browser >>>>>> for iPhone on an icon of the Chrome browser. Still didn't load the >>>>>> new bigger text size for smart phones. May have to refresh the CSS >>>>>> file. The problem is that I can't type file names into the iPhone
    screen well. I do most things with voice. Text edit already works on >>>>>> iPhone Safari browser.

    Have replies on Reddit, I got an answer that I may be able to put a >>>>>> refresh into CSS file. Will be searching w3 and w3schools.


    Refresh code worked on an HTML page I put it in . Text size on links >>>>> from the page were still plain <p>. Just doesn't work on Chrome
    browser on iPhone. Probably need to refresh the CSS in Chrome.

    Normal CSS link on an HTML page without refresh:

    <link rel="stylesheet" type="text/css" href="https://
    www.dalekelly.org/ mystyle.css">

    When I added refresh to the link:

    <link rel="stylesheet" type="text/css" href="https://
    www.dalekelly.org/ mystyle.css?v=1">


    Only doesn't work for me on iPhone Google Chrome Web Browser.



    If I put <p> size in <style> on an HTML page it works. That would
    require edits of all HTML pages. Really want to do CSS. What I have done >>> with <p> in CSS works with every browser except iPhone Chrome. If I add
    a refresh code to the CSS link in an HTML page then Chrome works. But
    again, I would have to edit all pages. Is there just an issue that
    iPhone Chrome doesn't reload the CSS page?



    updated chrome from the app store, that didn't fix it, my phone is
    iPhone17, Safari browser works fine, all computer browsers work fine
    including computer Chrome, your code with my file is for all pages
    except index.html where the CSS file is mystyle2.css ...

    <link rel="stylesheet" href="https://www.dalekelly.org/mystyle.css?v=1">

    ... on an HTML page that code works fine on iPhone Chrome, ,I would just
    have to edit all pages


    The days coding your own HTML are long gone. The likes of chatGPT are
    perfect for answering these types of niggly questions. It will also write
    the HTML for you just as you want it.


    could I use C++ ?
    --
    Mystery? -> https://www.dalekelly.org/
    --- Synchronet 3.22a-Linux NewsLink 1.2