Offer slider issue

Hi,

I'm using the offer slider on my homepage, but the theme places the details under the image, please take a look at it here: http://www.drumpedals.org/

Comments

  • Hi,

    this happen because offer item has been created for Full width section layout. When you edit this item in muffin builder, you see info about that what you can check on http://snag.gy/zzoTh.jpg
  • Thanks. I got it now.

    Is it possible to change the offer button color and the icon in it?
  • Button color can be changed with below custom css:
    .offer .desc_wrapper a.button .button_icon { background: #000; color: #FFF; }
    .offer .desc_wrapper a.button .button_label { background: #000; color: #FFF; }
    But icon, can be changed only in theme files. This can be done in functions/theme-shortcodes.php file. Just find line which looks like below:
    if( $link ) $output .= '<a href="'. $link .'" class="button button_js" '. $target .'><span class="button_icon"><i class="icon-layout"></i></span><span class="button_label">'. get_post_meta( get_the_ID(), 'mfn-post-link_title', true) .'</span></a>';
    and change bolded value inside. Current icon is called icon-layout, but you can replace it with any icon from http://themes.muffingroup.com/betheme/shortcodes/typography#icons

    Of course you need to be careful because after any update in future you will lose it as files after each update, overwrite all theme files.
Sign In or Register to comment.