Search…

X3 Photo Gallery Support Forums

Search…
 
mikeletron
Experienced
Topic Author
Posts: 25
Joined: 03 Feb 2010, 05:43

Vide icons

06 Feb 2016, 05:05

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
 
User avatar
mjau-mjau
X3 Wizard
Posts: 14452
Joined: 30 Sep 2006, 03:37

Re: Vide icons

07 Feb 2016, 00:44

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?
 
mikeletron
Experienced
Topic Author
Posts: 25
Joined: 03 Feb 2010, 05:43

Re: Vide icons

25 Feb 2016, 13:14

Ok, thank you very much for all the infos. I have to try them,
Ciao
Michele
 
mikeletron
Experienced
Topic Author
Posts: 25
Joined: 03 Feb 2010, 05:43

Re: Vide icons

25 Feb 2016, 13:16

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!
 
User avatar
mjau-mjau
X3 Wizard
Posts: 14452
Joined: 30 Sep 2006, 03:37

Re: Vide icons

25 Feb 2016, 13:41

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!
 
winph
Experienced
Posts: 236
Joined: 19 Jul 2008, 05:07

Re: Vide icons

29 Mar 2016, 04:55

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?
 
User avatar
mjau-mjau
X3 Wizard
Posts: 14452
Joined: 30 Sep 2006, 03:37

Re: Vide icons

29 Mar 2016, 07:51

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.
 
winph
Experienced
Posts: 236
Joined: 19 Jul 2008, 05:07

Re: Vide icons

30 Mar 2016, 02:36

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 :)