Eliminating a underline under the word

Hi,
i created a link whit

  • <?= $this->Html->link('Adicionar', ['_name' => 'category'],['bold' => false ]); ?>

  • but, and the result was ADICIONAR , but I’d like to eliminater a underline under the work ADICIONAR, can you halp me please?

    find APP/webroot/cake.generic.css, look for code (somewhere near line 36):

    a {
    color: #003d4c;
    text-decoration: underline;
    font-weight: bold;
    }

    change “undeline” to “none”

    McS