Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3876900
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T22:26:07+00:00 2026-05-19T22:26:07+00:00

I’m using the dompdf HTML to PDF converter to dynamically generate PDF files based

  • 0

I’m using the dompdf HTML to PDF converter to dynamically generate PDF files based on certain variables. I have the script creating a PHP file, and then reading from that PHP file to prompt the download of a PDF file using dompdf.

My only problem is that the output doesn’t really care when it breaks the page in the PDF. For example, if I have a table towards the end of page 1, rather than moving the remainder of page 1 to page 2, it will cut the table in half and put one half on page 1 and one half on page 2.

I want to avoid this, and have the script truncate the PDF page so elements are succinctly aligned throughout the document.

Is there a way to do this in CSS, PHP, or some other way?

Here’s the script that is outputting the data to a PHP file:

 $filename = 'dompdf/www/test/' . $_GET['rubric'] . '_' . $_GET['student'] . '.php';
          $somecontent = "
<html><head>
<style type='text/css'>
html,body {
  font-family: 'myriad-pro-1','myriad-pro-2',Helvetica, Arial, Sans-Serif;
  height:100%;
  width:100%;
  overflow:auto;
  margin-left: 20px;
  margin-right: 20px;
}


     P.breakhere {page-break-before: always}

table
{
    border-color: #000;
    border-width: 1px;
    border-style: solid;
  border-collapse:collapse;
}

td
{
    border-color: #000;
    border-width: 1px 1px 0 0;
    border-style: solid;
}

#header {background:#ffffff url('gradient.png') no-repeat center center;
height: 100px;

}

#text {
position:relative;
text-align:center;
}

</style>
</head>
<body>


<div id='header'><div id='text'><h3>Upper School<br />";

".$rubricname."</h3></div></div>
Student Name: " . $student . "<br />
Division/Grade: " . $grade . "<br />
Teacher: " . $tname . "<br />
Date: " . $trow['due_date'] . "<br /><br />";

Habit 1: " . $1descrip . " <br />
<table width='100%'>
 <tr>
   <td>E</td>
   <td>M</td>
  <td>A</td>
   <td>D</td>
   <td>Skills and Content</td>
 </tr>

 <tr>
   <td width='30'>" . $grade_exceeds . "</td>
  <td width='30'>" . $grade_meets . "</td>
    <td width='30'>" . $grade_approaches . "</td>
      <td width='30'>" . $grade_doesnotmeet . "</td>
        <td>" . $crow['skill'] . "</td>
 </tr>


Habit 2: " . $2descrip . " <br />
<table width='100%'>
 <tr>
   <td>E</td>
   <td>M</td>
  <td>A</td>
   <td>D</td>
   <td>Skills and Content</td>
 </tr>

 <tr>
   <td width='30'>" . $grade_exceeds . "</td>
   <td width='30'>" . $grade_meets . "</td>
    <td width='30'>" . $grade_approaches . "</td>
     <td width='30'>" . $grade_doesnotmeet . "</td>
        <td>" . $crow['skill'] . "</td>
 </tr>

Habit 3: " . $3descrip . " <br />
<table width='100%'>
 <tr>
   <td>E</td>
   <td>M</td>
  <td>A</td>
   <td>D</td>
   <td>Skills and Content</td>
 </tr>

 <tr>
   <td width='30'>" . $grade_exceeds . "</td>
 <td width='30'>" . $grade_meets . "</td>
    <td width='30'>" . $grade_approaches . "</td>
      <td width='30'>" . $grade_doesnotmeet . "</td>
        <td>" . $crow['skill'] . "</td>
 </tr>

Habit 4: " . $4descrip . " <br />
<table width='100%'>
 <tr>
   <td>E</td>
   <td>M</td>
  <td>A</td>
   <td>D</td>
   <td>Skills and Content</td>
 </tr>

 <tr>
   <td width='30'>" . $grade_exceeds . "</td>
  <td width='30'>" . $grade_meets . "</td>
    <td width='30'>" . $grade_approaches . "</td>
      <td width='30'>" . $grade_doesnotmeet . "</td>
        <td>" . $crow['skill'] . "</td>
 </tr>

Habit 5: " . $5descrip . " <br />
<table width='100%'>
 <tr>
   <td>E</td>
   <td>M</td>
  <td>A</td>
   <td>D</td>
   <td>Skills and Content</td>
 </tr>

 <tr>
   <td width='30'>" . $grade_exceeds . "</td>
 <td width='30'>" . $grade_meets . "</td>
    <td width='30'>" . $grade_approaches . "</td>
      <td width='30'>" . $grade_doesnotmeet . "</td>
        <td>" . $crow['skill'] . "</td>
 </tr>

Habit 6: " . $6descrip . " <br />
<table width='100%'>
 <tr>
   <td>E</td>
   <td>M</td>
  <td>A</td>
   <td>D</td>
   <td>Skills and Content</td>
 </tr>

 <tr>
   <td width='30'>" . $grade_exceeds . "</td>
  <td width='30'>" . $grade_meets . "</td>
    <td width='30'>" . $grade_approaches . "</td>
     <td width='30'>" . $grade_doesnotmeet . "</td>
        <td>" . $crow['skill'] . "</td>
 </tr>

Habit 7: " . $7descrip . " <br />
<table width='100%'>
 <tr>
   <td>E</td>
   <td>M</td>
  <td>A</td>
   <td>D</td>
   <td>Skills and Content</td>
 </tr>

 <tr>
   <td width='30'>" . $grade_exceeds . "</td>
  <td width='30'>" . $grade_meets . "</td>
    <td width='30'>" . $grade_approaches . "</td>
      <td width='30'>" . $grade_doesnotmeet . "</td>
        <td>" . $crow['skill'] . "</td>
 </tr>


<font size='+1'>Comments</font><br />

</body></html>";


          // Let's make sure the file exists and is writable first.
          // In our example we're opening $filename in append mode.
          // The file pointer is at the bottom of the file hence
          // that's where $somecontent will go when we fwrite() it.
          if (!$handle = fopen($filename, 'w+')) {
              echo "Cannot open file ($filename)";
              exit;
          } //if (!$handle = fopen($filename, 'w+'))
          // Write $somecontent to our opened file.
          if (fwrite($handle, $somecontent) === false) {
              echo "Cannot write to file ($filename)";
              exit;
          } //if (fwrite($handle, $somecontent) === false)
          //echo "Success, wrote ($somecontent) to file ($filename)";
          //echo "Success!";
          fclose($handle);

Pure HTML output:

<html><head>
<style type='text/css'>
html,body {
    font-family: 'myriad-pro-1','myriad-pro-2',Helvetica, Arial, Sans-Serif;
    height:100%;
    width:100%;
    overflow:auto;
    margin-left: 20px;
    margin-right: 20px;
}


     P.breakhere {page-break-before: always}

table
{
    border-color: #000;
    border-width: 1px;
    border-style: solid;
    border-collapse:collapse;
}

td
{
    border-color: #000;
    border-width: 1px 1px 0 0;
    border-style: solid;
}

#header {background:#ffffff url('gradient.png') no-repeat center center;
height: 100px;

}

#text {
position:relative;
text-align:center;
}

</style>
</head>
<body>


<div id='header'><div id='text'><h3>Upper School<br />Spanish 3<br />
Testing Rubric</h3></div></div>
Student Name: [name]<br />
Division/Grade: Senior Institute/Grade 11<br />

Teacher: [name]<br />
Date: 2/1/2011<br /><br />

Habit Name: test22222 <br />
<table width='100%'>
 <tr>
   <td>E</td>
   <td>M</td>
  <td>A</td>

   <td>D</td>
   <td>Skills and Content</td>
 </tr>

 <tr>
   <td width='30'>&nbsp;</td>
  <td width='30'><center>X</center></td>
    <td width='30'>&nbsp;</td>

      <td width='30'>&nbsp;</td>
        <td>Testing 12</td>
 </tr>


 <tr>
   <td width='30'>&nbsp;</td>
  <td width='30'><center>X</center></td>
    <td width='30'>&nbsp;</td>

      <td width='30'>&nbsp;</td>
        <td>Testing 2</td>
 </tr>

[name] is approaching standards for the Habit Name. </table><br />
Habit Name: tes <br />
<table width='100%'>
 <tr>
   <td>E</td>

   <td>M</td>
  <td>A</td>
   <td>D</td>
   <td>Skills and Content</td>
 </tr>

 <tr>

   <td width='30'>&nbsp;</td>
   <td width='30'><center>X</center></td>
    <td width='30'>&nbsp;</td>
     <td width='30'>&nbsp;</td>
        <td>Testing 3</td>
 </tr>
[name] is not meeting standards for the Habit Name. </table><br />
Habit Name: test22222 <br />

<table width='100%'>
 <tr>
   <td>E</td>
   <td>M</td>
  <td>A</td>
   <td>D</td>
   <td>Skills and Content</td>

 </tr>

 <tr>
   <td width='30'>&nbsp;</td>
 <td width='30'><center>X</center></td>
    <td width='30'>&nbsp;</td>
      <td width='30'>&nbsp;</td>
        <td>Testing 4</td>

 </tr>

 <tr>
   <td width='30'>&nbsp;</td>
 <td width='30'><center>X</center></td>
    <td width='30'>&nbsp;</td>
      <td width='30'>&nbsp;</td>
        <td>Testing 5</td>

 </tr>

 <tr>
   <td width='30'>&nbsp;</td>
 <td width='30'><center>X</center></td>
    <td width='30'>&nbsp;</td>
      <td width='30'>&nbsp;</td>
        <td>Testing 6</td>

 </tr>
[name] is meeting standards for the Habit Name. </table><br />
Habit Name: test22222 <br />
<table width='100%'>
 <tr>
   <td>E</td>
   <td>M</td>
  <td>A</td>

   <td>D</td>
   <td>Skills and Content</td>
 </tr>

 <tr>
   <td width='30'>&nbsp;</td>
  <td width='30'><center>X</center></td>
    <td width='30'>&nbsp;</td>

      <td width='30'>&nbsp;</td>
        <td>TESTING 7</td>
 </tr>

 <tr>
   <td width='30'>&nbsp;</td>
  <td width='30'><center>X</center></td>
    <td width='30'>&nbsp;</td>

      <td width='30'>&nbsp;</td>
        <td>Testing 8</td>
 </tr>

 <tr>
   <td width='30'>&nbsp;</td>
  <td width='30'><center>X</center></td>
    <td width='30'>&nbsp;</td>

      <td width='30'>&nbsp;</td>
        <td>Testing 9</td>
 </tr>
[name] is exceeding standards for the Habit Name. </table><br />
Habit Name: test22222 <br />
<table width='100%'>
 <tr>
   <td>E</td>

   <td>M</td>
  <td>A</td>
   <td>D</td>
   <td>Skills and Content</td>
 </tr>

 <tr>

   <td width='30'>&nbsp;</td>
 <td width='30'><center>X</center></td>
    <td width='30'>&nbsp;</td>
      <td width='30'>&nbsp;</td>
        <td>Testing 10</td>
 </tr>

 <tr>

   <td width='30'>&nbsp;</td>
 <td width='30'><center>X</center></td>
    <td width='30'>&nbsp;</td>
      <td width='30'>&nbsp;</td>
        <td>Testing 11</td>
 </tr>
[name] is exceeding standards for the Habit Name. </table><br />
Habit Name: test22222 <br />

<table width='100%'>
 <tr>
   <td>E</td>
   <td>M</td>
  <td>A</td>
   <td>D</td>
   <td>Skills and Content</td>

 </tr>

 <tr>
   <td width='30'>&nbsp;</td>
  <td width='30'><center>X</center></td>
    <td width='30'>&nbsp;</td>
     <td width='30'>&nbsp;</td>
        <td>Testing 12</td>

 </tr>

 <tr>
   <td width='30'>&nbsp;</td>
  <td width='30'><center>X</center></td>
    <td width='30'>&nbsp;</td>
     <td width='30'>&nbsp;</td>
        <td>Testing 13</td>

 </tr>
[name] is exceeding standards for the Habit Name. </table><br />

Habit Name: test22222 <br />
<table width='100%'>
 <tr>
   <td>E</td>
   <td>M</td>
  <td>A</td>

   <td>D</td>
   <td>Skills and Content</td>
 </tr>

 <tr>
   <td width='30'>&nbsp;</td>
  <td width='30'><center>X</center></td>
    <td width='30'>&nbsp;</td>

      <td width='30'>&nbsp;</td>
        <td>Testing 14</td>
 </tr>
[name] is exceeding standards for the Habit Name. </table>
<P CLASS='breakhere'>

<font size='+1'>Comments</font><br />This is testing a large comment. 

</body></html>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-19T22:26:08+00:00Added an answer on May 19, 2026 at 10:26 pm

    Adding this to your CSS fixes it for me:

    table {
        page-break-inside: avoid
    }
    

    <html>
    <head>
    <style type='text/css'>
    html, body {
        font-family: 'myriad-pro-1', 'myriad-pro-2', Helvetica, Arial, Sans-Serif;
        margin-left: 20px;
        margin-right: 20px;
    }
    p.breakhere {
        page-break-before: always
    }
    table {
        border-collapse: collapse;
        page-break-inside: avoid
    }
    td {
        border: 1px solid #000
    }
    .noBorder {
        border: 0
    }
    #header {
        background:#ffffff url('gradient.png') no-repeat center center;
        height: 100px;
    }
    #text {
        position:relative;
        text-align:center;
    }
    </style>
    </head>
    <body>
    <div id='header'>
        <div id='text'>
            <h3>Upper School<br />
                Spanish 3<br />
                Testing Rubric</h3>
        </div>
    </div>
    Student Name: [name]<br />
    Division/Grade: Senior Institute/Grade 11<br />
    Teacher: [name]<br />
    Date: 2/1/2011<br />
    <br />
    <table width='100%'>
        <tr>
            <td>E</td>
            <td>M</td>
            <td>A</td>
            <td>D</td>
            <td>Skills and Content</td>
        </tr>
        <tr>
            <td width='30'>&nbsp;</td>
            <td width='30'><center>
                    X
                </center></td>
            <td width='30'>&nbsp;</td>
            <td width='30'>&nbsp;</td>
            <td>Testing 12</td>
        </tr>
        <tr>
            <td width='30'>&nbsp;</td>
            <td width='30'><center>
                    X
                </center></td>
            <td width='30'>&nbsp;</td>
            <td width='30'>&nbsp;</td>
            <td>Testing 2</td>
        </tr>
        <tr>
            <td width='30'>&nbsp;</td>
            <td width='30'><center>
                    X
                </center></td>
            <td width='30'>&nbsp;</td>
            <td width='30'>&nbsp;</td>
            <td>Testing 2</td>
        </tr>
            <tr>
            <td width='30'>&nbsp;</td>
            <td width='30'><center>
                    X
                </center></td>
            <td width='30'>&nbsp;</td>
            <td width='30'>&nbsp;</td>
            <td>Testing 2</td>
        </tr>
            <tr>
            <td width='30'>&nbsp;</td>
            <td width='30'><center>
                    X
                </center></td>
            <td width='30'>&nbsp;</td>
            <td width='30'>&nbsp;</td>
            <td>Testing 2</td>
        </tr>
        <tr>
            <td colspan="5" class="noBorder">[name] is approaching standards for the Habit Name.</td>
        </tr>
    </table>
    <span style="color: #fff">-</span>
    
    <table width='100%'>
        <tr>
            <td>E</td>
            <td>M</td>
            <td>A</td>
            <td>D</td>
            <td>Skills and Content</td>
        </tr>
        <tr>
            <td width='30'>&nbsp;</td>
            <td width='30'><center>
                    X
                </center></td>
            <td width='30'>&nbsp;</td>
            <td width='30'>&nbsp;</td>
            <td>Testing 12</td>
        </tr>
        <tr>
            <td width='30'>&nbsp;</td>
            <td width='30'><center>
                    X
                </center></td>
            <td width='30'>&nbsp;</td>
            <td width='30'>&nbsp;</td>
            <td>Testing 2</td>
        </tr>
        <tr>
            <td width='30'>&nbsp;</td>
            <td width='30'><center>
                    X
                </center></td>
            <td width='30'>&nbsp;</td>
            <td width='30'>&nbsp;</td>
            <td>Testing 2</td>
        </tr>
            <tr>
            <td width='30'>&nbsp;</td>
            <td width='30'><center>
                    X
                </center></td>
            <td width='30'>&nbsp;</td>
            <td width='30'>&nbsp;</td>
            <td>Testing 2</td>
        </tr>
            <tr>
            <td width='30'>&nbsp;</td>
            <td width='30'><center>
                    X
                </center></td>
            <td width='30'>&nbsp;</td>
            <td width='30'>&nbsp;</td>
            <td>Testing 2</td>
        </tr>
        <tr>
            <td colspan="5" class="noBorder">[name] is approaching standards for the Habit Name.</td>
        </tr>
    </table>
    <span style="color: #fff">-</span>
    
    <table width='100%'>
        <tr>
            <td>E</td>
            <td>M</td>
            <td>A</td>
            <td>D</td>
            <td>Skills and Content</td>
        </tr>
        <tr>
            <td width='30'>&nbsp;</td>
            <td width='30'><center>
                    X
                </center></td>
            <td width='30'>&nbsp;</td>
            <td width='30'>&nbsp;</td>
            <td>Testing 12</td>
        </tr>
        <tr>
            <td width='30'>&nbsp;</td>
            <td width='30'><center>
                    X
                </center></td>
            <td width='30'>&nbsp;</td>
            <td width='30'>&nbsp;</td>
            <td>Testing 2</td>
        </tr>
        <tr>
            <td width='30'>&nbsp;</td>
            <td width='30'><center>
                    X
                </center></td>
            <td width='30'>&nbsp;</td>
            <td width='30'>&nbsp;</td>
            <td>Testing 2</td>
        </tr>
            <tr>
            <td width='30'>&nbsp;</td>
            <td width='30'><center>
                    X
                </center></td>
            <td width='30'>&nbsp;</td>
            <td width='30'>&nbsp;</td>
            <td>Testing 2</td>
        </tr>
            <tr>
            <td width='30'>&nbsp;</td>
            <td width='30'><center>
                    X
                </center></td>
            <td width='30'>&nbsp;</td>
            <td width='30'>&nbsp;</td>
            <td>Testing 2</td>
        </tr>
        <tr>
            <td colspan="5" class="noBorder">[name] is approaching standards for the Habit Name.</td>
        </tr>
    </table>
    <span style="color: #fff">-</span>
    
    <table width='100%'>
        <tr>
            <td>E</td>
            <td>M</td>
            <td>A</td>
            <td>D</td>
            <td>Skills and Content</td>
        </tr>
        <tr>
            <td width='30'>&nbsp;</td>
            <td width='30'><center>
                    X
                </center></td>
            <td width='30'>&nbsp;</td>
            <td width='30'>&nbsp;</td>
            <td>Testing 12</td>
        </tr>
        <tr>
            <td width='30'>&nbsp;</td>
            <td width='30'><center>
                    X
                </center></td>
            <td width='30'>&nbsp;</td>
            <td width='30'>&nbsp;</td>
            <td>Testing 2</td>
        </tr>
        <tr>
            <td width='30'>&nbsp;</td>
            <td width='30'><center>
                    X
                </center></td>
            <td width='30'>&nbsp;</td>
            <td width='30'>&nbsp;</td>
            <td>Testing 2</td>
        </tr>
            <tr>
            <td width='30'>&nbsp;</td>
            <td width='30'><center>
                    X
                </center></td>
            <td width='30'>&nbsp;</td>
            <td width='30'>&nbsp;</td>
            <td>Testing 2</td>
        </tr>
            <tr>
            <td width='30'>&nbsp;</td>
            <td width='30'><center>
                    X
                </center></td>
            <td width='30'>&nbsp;</td>
            <td width='30'>&nbsp;</td>
            <td>Testing 2</td>
        </tr>
                <tr>
            <td width='30'>&nbsp;</td>
            <td width='30'><center>
                    X
                </center></td>
            <td width='30'>&nbsp;</td>
            <td width='30'>&nbsp;</td>
            <td>Testing 2</td>
        </tr>
                <tr>
            <td width='30'>&nbsp;</td>
            <td width='30'><center>
                    X
                </center></td>
            <td width='30'>&nbsp;</td>
            <td width='30'>&nbsp;</td>
            <td>Testing 2</td>
        </tr>
                <tr>
            <td width='30'>&nbsp;</td>
            <td width='30'><center>
                    X
                </center></td>
            <td width='30'>&nbsp;</td>
            <td width='30'>&nbsp;</td>
            <td>Testing 2</td>
        </tr>
        <tr>
            <td colspan="5" class="noBorder">[name] is approaching standards for the Habit Name.</td>
        </tr>
    </table>
    <span style="color: #fff">-</span>
    
    <table width='100%'>
        <tr>
            <td>E</td>
            <td>M</td>
            <td>A</td>
            <td>D</td>
            <td>Skills and Content</td>
        </tr>
        <tr>
            <td width='30'>&nbsp;</td>
            <td width='30'><center>
                    X
                </center></td>
            <td width='30'>&nbsp;</td>
            <td width='30'>&nbsp;</td>
            <td>Testing 12</td>
        </tr>
        <tr>
            <td width='30'>&nbsp;</td>
            <td width='30'><center>
                    X
                </center></td>
            <td width='30'>&nbsp;</td>
            <td width='30'>&nbsp;</td>
            <td>Testing 2</td>
        </tr>
        <tr>
            <td width='30'>&nbsp;</td>
            <td width='30'><center>
                    X
                </center></td>
            <td width='30'>&nbsp;</td>
            <td width='30'>&nbsp;</td>
            <td>Testing 2</td>
        </tr>
            <tr>
            <td width='30'>&nbsp;</td>
            <td width='30'><center>
                    X
                </center></td>
            <td width='30'>&nbsp;</td>
            <td width='30'>&nbsp;</td>
            <td>Testing 2</td>
        </tr>
            <tr>
            <td width='30'>&nbsp;</td>
            <td width='30'><center>
                    X
                </center></td>
            <td width='30'>&nbsp;</td>
            <td width='30'>&nbsp;</td>
            <td>Testing 2</td>
        </tr>
        <tr>
            <td colspan="5" class="noBorder">[name] is approaching standards for the Habit Name.</td>
        </tr>
    </table>
    <span style="color: #fff">-</span>
    
    
    
    <font size='+1'>Comments</font><br />
    This is testing a large comment.
    </body>
    </html>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm new to using the Perl treebuilder module for HTML parsing and can't figure
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I want to count how many characters a certain string has in PHP, but
Is it possible to replace javascript w/ HTML if JavaScript is not enabled on
In order to apply a triggered animation to all ToolTip s in my app,
I want use html5's new tag to play a wav file (currently only supported
I ran into a problem. Wrote the following code snippet: teksti = teksti.Trim() teksti
Seemingly simple, but I cannot find anything relevant on the web. What is the
Does anyone know how can I replace this 2 symbol below from the string

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.