Reply To: images as buttons

Support Forums Cian – WP Theme images as buttons Reply To: images as buttons

#4444
CreaboxThemes
Keymaster

Hi,

if you want that, you have to edit the page Header and follow the next steps:

  1. Upload the images for the google play and appple store and copy their links.
  2. Edit the page Header and delete the buttons
  3. Copy the next code (with the image links of the first step) and paste it into the option Text:
    Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin diam nisl, dictum a porttitor eget, lacinia nec purus vivamus imperdiet.
    
    <span>
    <a href="#">
    <img src="apple_store_image_link_here" />
    </a>
    <a href="#">
    <img src="google_play_image_link_here" />
    </a>
    </span>
  4. Go to the page Appearance > Theme Options > Custom Scripts and paste the next code in the option Custom CSS:
    .intro h3 span{
        display: block;
        margin-top: 30px;
    }
    
    .intro h3 span a{
        margin: 0 10px;
    }
    
    .intro h3 span a img{
        width: 70px;
    }

Regards