Change link in the header section

Permalink
I have this div content in my header.php file contained in application/themes/custom_name/elements

<?php defined('C5_EXECUTE') or die("Access Denied.");
      $this->inc('elements/header_top.php');
      $cl_txt = $c->getAttribute('client_login_txt');
      $cl_url = $c->getAttribute('client_login_url');
?>
......
<div class="login">
  <a href="<?php echo $cl_url ?>" target="_blank">
    <button type="button" class="btn-login"><?php echo $cl_txt ?></button>
  </a>
</div>


I would like to change the link contained in the div.
Where can I do it?

 
hutman replied on at Permalink Reply
hutman
There are two Page Attributes, the link URL is called Client Link URL and the link text is called Client Link Text, you should be able to edit this by going to Full Sitemap and click on the page you are trying to change and select Attributes.
pierobond replied on at Permalink Reply
It worked, thanks a bunch!