How to remove underline from mobile numbers in footer section

Topic summary

A user seeks help removing underlines from mobile phone numbers displayed in their website footer at karmasports.au. They also mention wanting to change the color of a blue “Shop Now” button.

Solution provided:

  • Another participant suggests adding CSS code targeting mobile numbers wrapped in <span> tags with class “mobile-numb”
  • The recommended CSS rule is: text-decoration: none;

Status:

  • A third user indicates the issue appears to be resolved
  • The discussion seems concluded with the CSS solution addressing the underline removal request
Summarized with AI on November 12. AI used: claude-sonnet-4-5-20250929.

hye

how to remove underline from mobile numbers in footer section

here is my website karmasports.au Also there is a button of shownow which is blue i also want to change its color

Assuming the mobile numbers are wrapped in tags with a class name of “mobile-number” */
here is the code CSS to add:

.mobile-number { text-decoration: none; }

@zikriarathore - I think you have solved your issue