Clickable Telephone Number - Question | JoomShaper

Clickable Telephone Number

R

Richard

SP Page Builder 1 year ago

I am trying to make the telephone number clickable in a content box i have tried tel:1234567 also tried <a href=“tel:1234567”></a>

neither seem to work, thanks for your help

0
9 Answers
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 1 year ago #172053

I found it, it's problem caused by defult Template CSS styles. This time, please contact with Unitemplates and ask them how to correct it.

Our offical help ends here, JoomShaper Support Policy 8.8.

0
Ziaul Kabir
Ziaul Kabir
Accepted Answer
Support Agent 1 year ago #172037

Hello Richard,

Thank you for reaching out to us. It seems that the URL you shared has country restrictions or IP blocks. Please ensure that it is accessible from Bangladesh, or you can whitelist our IP. IP: 119.148.4.217

Thanks!

Edit:

If you are trying to do it from page builder you can use rawhtml addon. you can check screenshot.

0
R
Richard
Accepted Answer
1 year ago #172051

Ah yes sorry, all done. the server is about to be upgraded in 30 mins so if you look and its down please give it a couple of hours. many thanks

0
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 1 year ago #172052

HI Richard,

The HTML code that you used is correct. Addon that you used there, it doesn't look like ours , so I assume it was created by template developer.


Make a simple test, add that same HTML code in Text addon.

0
R
Richard
Accepted Answer
1 year ago #172055

Ok thanks

0
R
Richard
Accepted Answer
1 year ago #172277

Hi. Can you please look at the same page and tell me why the email address (which is a long one isnt all showing on a mobile and perhaps how i can achieve this?

0
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 1 year ago #172289

Becuase it doesn't fit, is too long.

You can "cheat" the system and reduce font-size for small screen only.

@media screen and (max-width: 420px) {
.sppb-addon-feature.feature-box-7 .sppb-addon-content .sppb-addon-text {
 color: #d4dadf;  font-size: 12px;}
}

OR alternative by using Breaking long words.

@media screen and (max-width: 420px) {
.sppb-addon-feature.feature-box-7 .sppb-addon-content .sppb-addon-text {
  color: #d4dadf; overflow-wrap: break-word;}
    }

Use it on that page only, in Page settings > CSS > Custom CSS

0
R
Richard
Accepted Answer
1 year ago #172291

Perfect many thanks

0
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 1 year ago #172292

OR as the last resort - reduction, I would hide icons by Custom CSS in that Feature addon on Mobile view to have more space for text content.

As you see you have at least 3 options ;] like in the SAS, surrender is not an option.

0