Adding more Feature Image ?

Discussion in 'ToomMorel WordPress Theme' started by comedyclubhouse, Mar 2, 2015.

  1. comedyclubhouse

    comedyclubhouse Member

    Joined:
    Apr 18, 2012
    Messages:
    72
    Likes Received:
    2
    Is it possible to have code for adding more Feature Image to site ? as I would like to add sponsors and there be more than 4.

    Thanks
     
  2. Pramod

    Pramod Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,847
    Likes Received:
    63
    Hello comedyclubhouse!


    You can add them in front-page.php but you have to put images in code not from theme option.

    HTML:
        <div class="clear"></div>
       
        <div class="one_fourth screen_shoot">
            <div class="effect">
                <a href="Your Link On IMAGE">               
                    <img src=" URL of Iamge"/>
                </a>
            </div>
        </div>
        <div class="one_fourth screen_shoot">
            <div class="effect">
                <a href="Your Link On IMAGE">               
                    <img src=" URL of Iamge"/>
                </a>
            </div>
        </div>
        <div class="one_fourth screen_shoot">
            <div class="effect">
                <a href="Your Link On IMAGE">               
                    <img src=" URL of Iamge"/>
                </a>
            </div>
        </div>
        <div class="one_fourth screen_shoot last">
            <div class="effect">
                <a href="Your Link On IMAGE">               
                    <img src=" URL of Iamge"/>
                </a>
            </div>
        </div>
    Please use link and and images URL correctly and follow below image.
    toommorel-march-3.png

    Thanks & Regards
    Pramod Patel
     
    comedyclubhouse likes this.
  3. comedyclubhouse

    comedyclubhouse Member

    Joined:
    Apr 18, 2012
    Messages:
    72
    Likes Received:
    2
    many thanks awesome ;)

    Can this be done on the Golden Eagle theme ?
     
  4. Pramod

    Pramod Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,847
    Likes Received:
    63
    Hello comedyclubhouse!
    HTML:
       
        <div class="clear"></div>
       
        <div class="feature-box-inner first">
            <div class="gallery_entry1">
                <div class="item_image1">
                    <ul>
                        <li>
                            <a href="---you link on image---"><span class="overlay"></span><img src="---Your image link----" class='portfolio' alt="Feature Image" /></a>
                        </li>
                    </ul>
                </div>
            </div>
        <h1><a href="--link on heading--">YOUR TEXT FOR HEADING</a></h1>
        <p>Your text for description</p>     
        </div>
        <div class="feature-box-inner ">
            <div class="gallery_entry1">
                <div class="item_image1">
                    <ul>
                        <li>
                            <a href="---you link on image---"><span class="overlay"></span><img src="---Your image link----" class='portfolio' alt="Feature Image" /></a>
                        </li>
                    </ul>
                </div>
            </div>
        <h1><a href="--link on heading--">YOUR TEXT FOR HEADING</a></h1>
        <p>Your text for description</p>     
        </div>
        <div class="feature-box-inner ">
            <div class="gallery_entry1">
                <div class="item_image1">
                    <ul>
                        <li>
                            <a href="---you link on image---"><span class="overlay"></span><img src="---Your image link----" class='portfolio' alt="Feature Image" /></a>
                        </li>
                    </ul>
                </div>
            </div>
        <h1><a href="--link on heading--">YOUR TEXT FOR HEADING</a></h1>
        <p>Your text for description</p>     
        </div>
        <div class="feature-box-inner">
            <div class="gallery_entry1">
                <div class="item_image1">
                    <ul>
                        <li>
                            <a href="---you link on image---"><span class="overlay"></span><img src="---Your image link----" class='portfolio' alt="Feature Image" /></a>
                        </li>
                    </ul>
                </div>
            </div>
        <h1><a href="--link on heading--">YOUR TEXT FOR HEADING</a></h1>
        <p>Your text for description</p>     
        </div>
       
        <div class="clear"></div>
    Please follow below image and use above given code.
    golden-eagle-4march-15-add-feature.png
    Thanks & Regards
    Pramod Patel
     

Share This Page