<!DOCTYPE html>
<html>
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  </head>
  <body>
    Thanks for sticking with me Hans<br>
    <br>
    I changed my local.css to what you suggested below.<br>
    <br>
    I tried both <br>
     Markup('^====','>^->','/^====+/','<:block,1> <hr
    class="hr-double" />');<br>
    and<br>
     Markup('^====','>^->','/^====+/','<:block,1> <hr
    class="hr.hr-double" />');<br>
    in my config.php (no change either way<br>
    <br>
    I tested it in Chrome and Edge with no change. I still see a single
    line no matter what I try.<br>
    <br>
    My only recipe is wsplus.php<br>
    <br>
    It is on a wiki farm so I changed them ("tools" is the field) in<br>
    tools/css /local.css<br>
    and<br>
    tools/local/config.php<br>
    <br>
    I'm using the generic pmwiki install and the default responsive skin<br>
    <br>
    My sites are only used for simple documentation.<br>
    <br>
    <span
style="color: rgb(0, 0, 0); font-family: Arial, Helvetica, sans-serif; font-size: 14.6667px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; display: inline !important; float: none;">Running
      ver pmwiki-2.3.32<br>
      <br>
      It's not a huge deal but I like the look of a double underline!<br>
    </span><br>
    Dave<br>
    <br>
    <div class="moz-cite-prefix">On 5/23/2024 3:57 AM, Hans Bracker
      wrote:<br>
    </div>
    <blockquote type="cite"
      cite="mid:1854204748.20240523095702@softflow.uk">
      <pre class="moz-quote-pre" wrap="">Hi Dave,

not sure what is going on there. Perhaps check if there is any CSS rule set for hr, in a skin css file for instance.
And make sure that the browser is forced to load all files fresh (Ctrl-F5 on Windows).
The browser may use some general rules for <hr> and then also the new CSS rule for class hr-double.

I wanted to test myself, and found that I needed to change this rule to something like this, because there was too much of a vertical gap for the double line <hr>:

hr.hr-double {
    margin-top:-0.75em;
    margin-bottom: 0.25em;
    height:2px; 
    border:none; 
    border-top:1px solid #aaa;
    border-bottom:1px solid #aaa; 
    background:#fff;
    }

Perhaps try that, and adjust any of those values to suit your needs.

cheers,
Hans

</pre>
    </blockquote>
    <br>
  </body>
</html>