Difference between revisions of "WooThemes Canvas Customization Tips"

From Ittichai Chammavanijakul's Wiki
Jump to navigation Jump to search
(Created page with " * Remove the Business Slider's Prev and Next buttons http://support.woothemes.com/entries/22763687-Hiding-next-previous-Business-template-slider-arrow <pre> .business #looped...")
 
Line 1: Line 1:
 
  
 
* Remove the Business Slider's Prev and Next buttons
 
* Remove the Business Slider's Prev and Next buttons
Line 5: Line 4:
  
 
<pre>
 
<pre>
 
+
/* custom.css */
 
.business #loopedSlider a.flex-prev, .business #loopedSlider a.flex-next {
 
.business #loopedSlider a.flex-prev, .business #loopedSlider a.flex-next {
 
display: none;
 
display: none;

Revision as of 10:57, 24 March 2013

  • Remove the Business Slider's Prev and Next buttons

http://support.woothemes.com/entries/22763687-Hiding-next-previous-Business-template-slider-arrow

/* custom.css */
.business #loopedSlider a.flex-prev, .business #loopedSlider a.flex-next {
display: none;
}