Announcement

Collapse
No announcement yet.

<hr> beneath address book option

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    <hr> beneath address book option

    Dear Community

    Actinic is inserting and <HR> element beneath the <B>Check here to add new address to your address book</B> message.

    I can't find it in Act_Order02.html or Design Text.

    Any ideas?

    Regards
    Peter

    #2
    Hi Peter,

    This <hr> tag is coming from ActinicAddressbook.pm which is in your site1 folder. Please open this file in notepad and then do a search for

    Code:
    $html .= $self->HR();
    This would be on line 383

    Change this to read
    Code:
    # $html .= $self->HR();
    Save it and then update the site. Now the <hr> tag will be removed

    Kind Regards
    Nadeem Rasool
    SellerDeck Development

    Comment

    Working...
    X