Jump to content

how to add an image here?


Recommended Posts

  • 2 weeks later...

The area you circled is the "Session" box. The contents for it is in the template file box.session.php.

The first line is:

<div class="right text-right show-for-medium-up" id="box-session">

Add after:
<i class="fa fa-arrow-right" style="color:orange;"></i>

It won't be real image, but you get the idea. You can add several icons to make a string of them.

Link to comment
Share on other sites

  • 2 months later...

thank you, I got there. thank you for your help, thanks to you, I amazes himself.

can you just tell me if my little code is correct.

box.session.php

<span class="blink_me"><i class="fa fa-arrow-right" style="color:red;"></i></span>

and in foundation.css

.blink_me {
	-webkit-animation-name: blinker;
	-webkit-animation-duration: 1s;
	-webkit-animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;

	-moz-animation-name: blinker;
	-moz-animation-duration: 1s;
	-moz-animation-timing-function: linear;
	-moz-animation-iteration-count: infinite;

	animation-name: blinker;
	animation-duration: 1s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}
@-moz-keyframes blinker {  
	0% { opacity: 1.0; }
	50% { opacity: 0.0; }
	100% { opacity: 1.0; }
}
@-webkit-keyframes blinker {  
	0% { opacity: 1.0; }
	50% { opacity: 0.0; }
	100% { opacity: 1.0; }
}
@keyframes blinker {  
	0% { opacity: 1.0; }
	50% { opacity: 0.0; }
	100% { opacity: 1.0; }
}

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...