Html to change fonts and font size

Hi there,
I have been going crazy with this html code. I would like all of this to appear in (font) VERDANA in size 14 but it just won’t work…

Local call 06-4718 3050

International call (+66) 6-4718 3050

I have tried so many ways. Does anybody know how to handle such situation in RW?
Thank you SOOOO much
Hucky

Here is the code…buy why not just do it in a text box.
"style="font:14px Verdana, sans-serif; “>This is a text box in stacks….in stacks I set everything to VERDANA at 14 points.”

Bear in mind that while Verdana is available on iOS, MacOS and Windows, it isn’t available on all systems. It doesn’t come with Android, although I think most Android browsers will download it on demand.

Well I hope this code helps you.

how can I send you the code without creating the link automatically so that you could see it?
As soon as I key it in and save it turns into a hyperlink which means you can’t actually see the code…
Sorry, I am not very fluent in all of this stuff… Thank you

Thank you, Peter

in the edit box, inser tour code then select it and click the </> button in the tool bar

<a href="https://amithailand.com/resources/amirecords_LINE-QR.jpg">LINE ID: @amirecords</a>
<br>
<a href="mailto:info@amithailand.com">Email: info@amithailand.com</a>
<br>
<a href="tel:0647183050">Local call: 06-4718 3050</a>
<br><a href="tel:+66647183050">International call: +66-6-4718 3050</a>
<br><a href="https://wa.me/Whatsapp: +66-8-1920 0259">WhatsApp: +66-8-1920 0259</a>

thanks a lot, this works. My question now is: how can I get this entire thing into a certain font & size? preferably verdana 14 ? and then keep it as such in a html field, i assume? though somebody suggested that it can also be done in an ordinary text field? I can’t see how that would work? would be FANTASTIC if it did though…

In a Stacks text box…select all the text and set the font to verdana 14

Since I’m not sure how/ where you are using this I will give you a couple options:
If it’s in an html stack (or another stack) put the whole thing in the free weavers.space CSS-box stack and give it a class or id.
Then you can target it with CSS like this:
.YourId a{
font-size:14px;
font-family:YourFont Family;
}

if you need to style it “in-line” just add the style tags directly for each link:

<a href="url" style="font-size:14px;font-family=YourFontFamily;">Label Here</a>
2 Likes

You could also just encapsulate the code within a <div> with an id or class:

<div id="myfontsize>
<a href="https://amithailand.com/resources/amirecords_LINE-QR.jpg">LINE ID: @amirecords</a>
<br>
<a href="mailto:info@amithailand.com">Email: info@amithailand.com</a>
<br>
<a href="tel:0647183050">Local call: 06-4718 3050</a>
<br><a href="tel:+66647183050">International call: +66-6-4718 3050</a>
<br><a href="https://wa.me/Whatsapp: +66-8-1920 0259">WhatsApp: +66-8-1920 0259</a>
</div>

Then add this to the CSS for the page or site:

#myfontsize a{
   font-family: Verdana, Geneva, sans-serif;
    font-size: 14px;
}
1 Like

Simple Stacks page…

  1. each text box
  2. Command-A (select all
  3. Set text to whatever you want (font & size)

Done…No code…KISS rule…(Keep It Simple Stupid)
Part of why we all use Rapidweaver!
http://www.ibize.com/font/

Thank you guys. I need to learn about these possibilities. Tonight I can’t get it going either way yet…
I will try it tomorrow morning Bangkok time. Thanks a lot and good night to all of you. Talk again tomorrow

As much as I agree with joemart1951 and as much as I would like to do it all in a text box (I am much more used to deal with that than html codes…) I just can’t get it done. If I copy the code which works in a html box (except for the font and size that is) into a text box, it looks like a battle field…please have a look at: https://amithailand.com/contact/
the top right paragraph is in html box, the lower right is exactly the same code in a text box. I don’t know how to work that around the it looks like the top box BUT with VERDANA font in size 14

I do not see a top right paragraph on that page. Just the two address boxes at the bottom left.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.