<html><head>    
    
          <style type="text/css" title="rt_noDelete">
    blockquote.rt {
    margin: 0 0 15px;
    border-left: 4px solid #81c784;
    padding: 0 0 0 12px;
    display: block;
    }
    p { margin: 0 0 0 0 }
.email-signature {font-family:"Calibri"; font-size: 12pt; font-style: italic; font-weight: normal; text-decoration: none; }
    </style><STYLE type="text/css" title="rt">BODY {margin: 10; font-family:"Calibri"; font-size: 18pt; color: #000000}
P {margin: 0; font-family:"Calibri"; font-size: 18pt; color: #000000}
PRE.RFCheader {font-family:"Consolas"; font-size: 16pt; color: #B73A67}
.email-signature { color: #424242; font-style: italic;font-weight: normal;text-decoration: none }
A {color: #0066CC; link: #0066CC; font-style: normal;font-weight: normal;text-decoration: underline }
BLOCKQUOTE.Odd {font-family:"Calibri"; font-size: 12pt; color: #9AA626; font-style: italic;font-weight: bold;text-decoration: none }
BLOCKQUOTE.Even {font-family:"Calibri"; font-size: 9pt; color: #50AF4C; font-style: italic;font-weight: bold;text-decoration: none }
.QOdd {font-family:"Calibri"; font-size: 12pt; color: #9AA626; font-style: normal;font-weight: bold;text-decoration: none }
.QEven {font-family:"Calibri"; font-size: 9pt; color: #50AF4C; font-style: normal;font-weight: bold;text-decoration: none }
PRE {font-family:"Consolas"; font-size: 12pt; font-style: normal;font-weight: normal;text-decoration: none }
BODY {background-color: #FFFFFF}
</STYLE></head><body><p class="norm">Hi Dave,<br/></p><p class="norm"></p><p class="norm"><br/></p><p class="norm">Monday, May 27, 2024, 7:11:01 PM, you wrote:</p><p class="norm"><br/></p><p class="norm"></p><blockquote class="rt">
    
    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
      <pre class="moz-quote-pre" wrap=""></pre><br/>
  </blockquote><p class="norm"><br/></p><p>the second markup definition is wrong, it should just read : class="hr-double"</p><p> </p><p>In the css file the rule for class=hr-double  could be written as </p><p>.hr-double { ....}</p><p> or  </p><p>hr.hr-double { ... }</p><p>This  latter restricts the rule to be applied only to hr HTML elements, which we want.</p><p>But it should not matter really which version of the css rule.</p><p> </p><p>Otherwise I am at a loss what is going wrong. </p><p>You could highlight some text followed by the horizontal line in your browser, and right click and select "inspect", which will open an HTML inspection panel. There you should find <hr class="hr-double: /> </p><p>If not then the markup definition is not applied.</p><p>If yes you can highlight the HTML and see the relevant css (in Edge browser I can see it).</p><p>So you can check if the browser picks up the correct CSS rules for the hr HTML element, or anything else.</p><p> </p><p>Make sure you did force the browser to reload css files (Ctrl-F5 in Windows) before any of the checks.</p><p> </p><p>cheers,</p><p>Hans</p></body>