- Posts: 7
- Thank you received: 0
Meetup Change homepage video
-
hale.wilson
Inactive member - Topic Author
- New Member
Less
More
3 years 2 months ago #48136
by hale.wilson
Meetup Change homepage video was created by hale.wilson
How do you change the home page video for the theme Meetup?
Please Log in to join the conversation.
-
milos
Support Staff - Moderator
Less
More
- Posts: 6742
- Thank you received: 715
3 years 2 months ago #48139
by milos
Replied by milos on topic Meetup Change homepage video
Hello,
The video is located in the Video module (position header2) and its HTML code is:
So, you can create your video and name it as video.webm and video.mp4 (use both formats for better browser support). Using FTP or Joomla Media Manager, upload the video to the folder "images/video" (overwrite or delete the original video files). You can also upload a video poster image (name your image as video.jpg).
If you want to use only one format, for example mp4, the HTML code should be changed to:
Regards,
Milos
The video is located in the Video module (position header2) and its HTML code is:
Code:
<video autoplay muted loop poster="images/video/video.jpg">
<source src="images/video/video.webm" type="video/webm">
<source src="images/video/video.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
So, you can create your video and name it as video.webm and video.mp4 (use both formats for better browser support). Using FTP or Joomla Media Manager, upload the video to the folder "images/video" (overwrite or delete the original video files). You can also upload a video poster image (name your image as video.jpg).
If you want to use only one format, for example mp4, the HTML code should be changed to:
Code:
<video autoplay muted loop poster="images/video/video.jpg">
<source src="images/video/video.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
Regards,
Milos
Please Log in to join the conversation.
-
hale.wilson
Inactive member - Topic Author
- New Member
Less
More
- Posts: 7
- Thank you received: 0
3 years 2 months ago #48140
by hale.wilson
Replied by hale.wilson on topic Meetup Change homepage video
A big thank you, Milo! Trying to get back into the swing of things. With so little documentation available on J4 finding my way around is taking longer than I would have imagined. Thanks again.
Please Log in to join the conversation.
-
hale.wilson
Inactive member - Topic Author
- New Member
Less
More
- Posts: 7
- Thank you received: 0
3 years 2 months ago #48142
by hale.wilson
Replied by hale.wilson on topic Meetup Change homepage video
Are we allowed to remove the copyright in the footer?
Please Log in to join the conversation.
-
milos
Support Staff - Moderator
Less
More
- Posts: 6742
- Thank you received: 715
3 years 2 months ago - 3 years 2 months ago #48147
by milos
Replied by milos on topic Meetup Change homepage video
Hello,
Yes, you can change the company name used in the footer (under template settings, go to Features > Brands), or to remove the copyright block (under template settings, go to Layout and remove the blue "copyright" block). Also, you can edit the entire copyright text if you edit file /templates/sparky_framework/library/c.php and edit this paragraph:
to anything, for example:
Regards,
Milos
Yes, you can change the company name used in the footer (under template settings, go to Features > Brands), or to remove the copyright block (under template settings, go to Layout and remove the blue "copyright" block). Also, you can edit the entire copyright text if you edit file /templates/sparky_framework/library/c.php and edit this paragraph:
Code:
<p class="copyright">Copyright © <?php echo date("Y ").$copyright; ?>. <a href="https://www.hotjoomlatemplates.com">Joomla templates</a> powered by Sparky.</p>
to anything, for example:
Code:
<p class="copyright">My Copyright Text</p>
Regards,
Milos
Last edit: 3 years 2 months ago by milos.
Please Log in to join the conversation.
-
swvanderlaan
Active member - Member
Less
More
- Posts: 51
- Thank you received: 0
1 year 3 months ago #50726
by swvanderlaan
Replied by swvanderlaan on topic Meetup Change homepage video
What should the width/height settings be of a video to make it similar to the looks of the original template (the top menu being over the video)? I was looking for this in the typography page, but couldn't find it.
It is automatically changed to this:
It is automatically changed to this:
Code:
<p><video poster="images/video/video.jpg" autoplay="autoplay" loop="loop" muted="" width="300" height="150">
<source src="images/video/video.webm" type="video/webm" />
<source src="images/video/video.mp4" type="video/mp4" />
Your browser does not support the video tag.</video></p>
Please Log in to join the conversation.
Time to create page: 0.286 seconds