<?xml version="1.0" encoding="UTF-8"?>
	<rss version="2.0"
		xmlns:content="http://purl.org/rss/1.0/modules/content/"
		xmlns:wfw="http://wellformedweb.org/CommentAPI/"
		xmlns:dc="http://purl.org/dc/elements/1.1/"
		xmlns:atom="http://www.w3.org/2005/Atom"

			>

	<channel>
		<title>BlueOwlCreative  &#187;  Topic: Customize buttons</title>
		<atom:link href="http://blueowlcreative.com/support_wp/forums/topic/customize-buttons/feed/" rel="self" type="application/rss+xml" />
		<link>http://blueowlcreative.com/support_wp/forums/topic/customize-buttons/feed/</link>
		<description></description>
		<pubDate>Sat, 18 Jul 2026 01:30:02 +0000</pubDate>
		<generator>http://bbpress.org/?v=2.5.3-5249</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/customize-buttons/#post-24546</guid>
					<title><![CDATA[Customize buttons]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/customize-buttons/#post-24546</link>
					<pubDate>Fri, 13 Nov 2015 10:25:04 +0000</pubDate>
					<dc:creator>MOconcepts</dc:creator>

					<description>
						<![CDATA[
						<p>Hi,</p>
<p>How to customize the buttons? I see only a few colour options, is there a way to add more colours (also on hoovering)?<br />
How to have buttons with different text, have still the same size?</p>
<p>Thanks!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/customize-buttons/#post-24548</guid>
					<title><![CDATA[Reply To: Customize buttons]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/customize-buttons/#post-24548</link>
					<pubDate>Fri, 13 Nov 2015 10:49:31 +0000</pubDate>
					<dc:creator>MOconcepts</dc:creator>

					<description>
						<![CDATA[
						This reply has been marked as private.						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/customize-buttons/#post-24557</guid>
					<title><![CDATA[Reply To: Customize buttons]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/customize-buttons/#post-24557</link>
					<pubDate>Fri, 13 Nov 2015 12:57:46 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>Sure you can overwrite one of the existing button classes with your Own colors.<br />
For example for the blue button you can set your own colors in your Child theme or your Theme options->Custom CSS:</p>
<pre><code>input.btn_blue, a.btn_blue, .btn_blue{
	background-color: purple;
}
input.btn_blue:hover, a.btn_blue:hover, .btn_blue:hover {
	background-color: green !important;
}
input.btn_blue.btn_outline, a.btn_blue.btn_outline, .btn_blue.btn_outline{
	color: purple!important;
	border: 2px solid purple;
	background: transparent;
}
input.btn_blue.btn_outline:hover, a.btn_blue.btn_outline:hover, .btn_blue.btn_outline:hover {
	background-color: purple !important;
	color: #fff !important;
}</code></pre>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/customize-buttons/#post-24558</guid>
					<title><![CDATA[Reply To: Customize buttons]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/customize-buttons/#post-24558</link>
					<pubDate>Fri, 13 Nov 2015 12:58:27 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>You can align them right by adding this class to the column that holds them: &#8220;al_right&#8221;</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/customize-buttons/#post-24575</guid>
					<title><![CDATA[Reply To: Customize buttons]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/customize-buttons/#post-24575</link>
					<pubDate>Fri, 13 Nov 2015 15:37:31 +0000</pubDate>
					<dc:creator>MOconcepts</dc:creator>

					<description>
						<![CDATA[
						This reply has been marked as private.						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/customize-buttons/#post-24576</guid>
					<title><![CDATA[Reply To: Customize buttons]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/customize-buttons/#post-24576</link>
					<pubDate>Fri, 13 Nov 2015 15:40:43 +0000</pubDate>
					<dc:creator>MOconcepts</dc:creator>

					<description>
						<![CDATA[
						This reply has been marked as private.						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/customize-buttons/#post-24582</guid>
					<title><![CDATA[Reply To: Customize buttons]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/customize-buttons/#post-24582</link>
					<pubDate>Fri, 13 Nov 2015 15:50:13 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>The Reason is simply cuz there is a CSS rule that generally keeps buttons apart from eachother, you can see it with WebDeveloper:</p>
<pre><code>.button + .button {
    margin-left: 12px;
}</code></pre>
<p>This basically adds a left margin to every button that has another button in front of it.<br />
You can add a custom class to this column and switch that rule off in your Theme options -> Custom CSS:</p>
<pre><code>.no_btn_margins .button + .button {
    margin-left: 12px;
}</code></pre>
<p>and then add the &#8220;no_btn_margins&#8221; class to the column that holds these buttons.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/customize-buttons/#post-24592</guid>
					<title><![CDATA[Reply To: Customize buttons]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/customize-buttons/#post-24592</link>
					<pubDate>Fri, 13 Nov 2015 16:28:58 +0000</pubDate>
					<dc:creator>MOconcepts</dc:creator>

					<description>
						<![CDATA[
						This reply has been marked as private.						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/customize-buttons/#post-24601</guid>
					<title><![CDATA[Reply To: Customize buttons]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/customize-buttons/#post-24601</link>
					<pubDate>Fri, 13 Nov 2015 17:04:23 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>Ooops sorry&#8230; make the margin 0:</p>
<pre><code>.no_btn_margins .button + .button {
    margin-left: 0;
}</code></pre>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/customize-buttons/#post-24602</guid>
					<title><![CDATA[Reply To: Customize buttons]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/customize-buttons/#post-24602</link>
					<pubDate>Fri, 13 Nov 2015 17:05:03 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>I don&#8217;t advise you to do the width of the buttons&#8230;<br />
You could though:</p>
<p>.button {<br />
    width: 200px;<br />
}</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

