Scheduled Maintenance: 10-11-2025 Electricity company maintenance between 09:00 and 15:00.
3.1.x Extensions Database 3.1 / 3.2 ⇒ [DEV] Live time clock
- 
				x8BiTw0LFx
 - Users

 - Posts: 79
 - Joined: 02 Nov 2015, 15:37
 
Re: [DEV] Live time clock
Thank you :) And if I want to remove it on mobiledevices, should I simply delete:Sniper_E wrote: 01 Jul 2016, 06:07 In the all4phone/ltc/styles/prosilver/theme/ltc.css , ltc_pulse.css and ltc_throb.css at the bottom...This code above is missing } something...Code: Select all
@media only screen and (max-width: 500px), only screen and (max-device-width: 500px) { p.responsive-last-visit-date { text-align: center; float: none; }
It should be written like this:With the extra/missing } and I added the width:100%; to fix the mobile view on the last visit time.Code: Select all
@media only screen and (max-width: 500px), only screen and (max-device-width: 500px) { p.responsive-last-visit-date { text-align: center; float: none; width:100%; } }
Code: Select all
@media only screen and (max-width: 500px), only screen and (max-device-width: 500px)
{
p.responsive-last-visit-date {
	text-align: center;
	float: none;
}
- 
				all4phone
 - Donator

 - Posts: 75
 - Joined: 29 May 2016, 13:33
 
Re: [DEV] Live time clock
Sniper_E thank U very much for your solution. If you let it will be included in new release v 0.1.5 soon  
  (next Monday I think).
			
			
									
						
										
						- 
				Sniper_E
 - VIP

 - Posts: 1157
 - Joined: 14 Oct 2014, 19:01
 
Re: [DEV] Live time clock
No, I would suggest hiding it in that class if you want it gone.x8BiTw0LFx wrote: 01 Jul 2016, 16:07Thank you :) And if I want to remove it on mobiledevices, should I simply delete:
Code: Select all
@media only screen and (max-width: 500px), only screen and (max-device-width: 500px)
{
	p.responsive-last-visit-date {
 		display: none;
 	}
}
- 
				all4phone
 - Donator

 - Posts: 75
 - Joined: 29 May 2016, 13:33
 
Re: [DEV] Live time clock
First post updated:
- css bug fixed
- css changes
- added ability to disable Day display
- new download v 0.1.5
			
			
									
						
										
						- css bug fixed
- css changes
- added ability to disable Day display
- new download v 0.1.5
- 
				zardos
 - Users

 - Posts: 175
 - Joined: 26 Feb 2016, 23:20
 
Re: [DEV] Live time clock
Very nice m8, thanks again seems to work fine.  
			
			
									
						
										
						- 
				all4phone
 - Donator

 - Posts: 75
 - Joined: 29 May 2016, 13:33
 
Re: [DEV] Live time clock
Thanks for testing pal  
			
			
									
						
										
						- 
				x8BiTw0LFx
 - Users

 - Posts: 79
 - Joined: 02 Nov 2015, 15:37
 
Re: [DEV] Live time clock
WorksSniper_E wrote: 01 Jul 2016, 21:02No, I would suggest hiding it in that class if you want it gone.x8BiTw0LFx wrote: 01 Jul 2016, 16:07Thank you :) And if I want to remove it on mobiledevices, should I simply delete:[ Post made via Samsung Galaxy S5 Active ]Code: Select all
@media only screen and (max-width: 500px), only screen and (max-device-width: 500px) { p.responsive-last-visit-date { display: none; } }![]()

