Cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Change size and color of button text

How would i write the CSS to change size and color of a button text?

https://github.com/kmpm | Using: Ionic | Retired: Alta
Best Answer
0 Votes
1 REPLY 1

I've played around with various css selectors and I didn't manage to do it. I'm sure you're aware, but for others, you can change them inline though using the attributeName attribute

 

 <use id="btn-name" href="#square-button" y="0%" fill="fb-red">
<set href="#text" attributeName="text-buffer" to="Button" />
<set href="#text" attributeName="font-size" to="30" />
<set href="#text" attributeName="fill" to="fb-blue" />
</use> 

From googling around it looks like an SVG limitation maybe?

Best Answer