Page 1 of 1

Vide icons

Posted: 06 Feb 2016, 05:05
by mikeletron
After a few fighting days I was able to set up x3: http://www.emmekappati.com/
X3 is really so much different from X2!
The only thing I really can not obtain is [b]icons previews [/b]on the movie page, the files are there but nothing show up,
can you help me please? http://www.emmekappati.com/i3/video/
I also would like:
- to put a small looping animation as logo if possible (wich format gif, swf? )
- customize the buttons under the menu (Fbk, G+ and Twitter)
Thank you very much

Michele

Re: Vide icons

Posted: 07 Feb 2016, 00:44
by mjau-mjau
mikeletron wrote:After a few fighting days I was able to set up x3: http://www.emmekappati.com/
X3 is really so much different from X2!
Yes it is very different. I believe you meant X3 was here? http://www.emmekappati.com/i3/
mikeletron wrote:The only thing I really can not obtain is icons previews on the movie page, the files are there but nothing show up,
can you help me please? http://www.emmekappati.com/i3/video/
X3 does not support automatic layout of videos yet. What video file types are you using? There is an option in content editor to embed videos from within your current folder:
Code
<video width=100% controls>
<source src="{{path}}videofilename.mp4" type="video/mp4">
</video>
Image
mikeletron wrote:to put a small looping animation as logo if possible (wich format gif, swf? )
Animated logo? SWF isnt supported on most devices any more, so don't use that please. You can use GIF, but it would generally be considered bad practice to have an animated GIF logo. I don't think an average visitor will appreciate being forced to see an animated logo for the entire length of their visit.
mikeletron wrote:- customize the buttons under the menu (Fbk, G+ and Twitter)
In what way do you mean customize? You set up these buttons from settings->footer ... that is not customization enough?

Re: Vide icons

Posted: 25 Feb 2016, 13:14
by mikeletron
Ok, thank you very much for all the infos. I have to try them,
Ciao
Michele

Re: Vide icons

Posted: 25 Feb 2016, 13:16
by mikeletron
About "customize the buttons under the menu" I was meaning changing them to address the click on MY Fbk or Twitter page and not the Imagevue one, maybe I'm helpless!

Re: Vide icons

Posted: 25 Feb 2016, 13:41
by mjau-mjau
mikeletron wrote:About "customize the buttons under the menu" I was meaning changing them to address the click on MY Fbk or Twitter page and not the Imagevue one, maybe I'm helpless!
You mean in the FOOTER at bottom of page?
Image

All the icon-links can be changed from panel SETTINGS->FOOTER:
Image
Change the links!

Re: Vide icons

Posted: 29 Mar 2016, 04:55
by winph
mjau-mjau wrote:
mikeletron wrote:About "customize the buttons under the menu" I was meaning changing them to address the click on MY Fbk or Twitter page and not the Imagevue one, maybe I'm helpless!
You mean in the FOOTER at bottom of page?
Image

All the icon-links can be changed from panel SETTINGS->FOOTER:
Image
Change the links!
Can i change size for footer icon?

Re: Vide icons

Posted: 29 Mar 2016, 07:51
by mjau-mjau
winph wrote:Can i change size for footer icon?
Yes, with custom CSS. Just keep in mind you are dealing with advanced stuff.
Code
.icon-buttons a {
  font-size: 2.5em;
}
* Default is 1.7. Add a lower value to make buttons smaller.

Re: Vide icons

Posted: 30 Mar 2016, 02:36
by winph
mjau-mjau wrote:
winph wrote:Can i change size for footer icon?
Yes, with custom CSS. Just keep in mind you are dealing with advanced stuff.
Code
.icon-buttons a {
  font-size: 2.5em;
}
* Default is 1.7. Add a lower value to make buttons smaller.

Thanks :)