Renew Theme, Button Element

Hi – What are the CSS classes for the button element in Renew? I need them for a function. E.g.:

<div class="x-btn"> //what class(es) should go here so button looks like Preset style (white knocked out of a med blue)
	<?php 
	$link = "<a href=\"" . $value[0] . "\" target=\"_blank\">";
	echo $link . $key . "</a>"; 
	?>
</div>

Any help appreciated.

Hi Janet,

Thank you for reaching out to us. You can simply assign a class x-btn to the anchor tag <a> to give it a default styling of the stack you’re using. You can try using this code instead:

<div class="custom-btn">
	<?php 
	$link = "<a class='x-btn x-btn-large' href=\"" . $value[0] . "\" target=\"_blank\">";
	echo $link . $key . "</a>"; 
	?>
</div>

Hope this helps!

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