(EDK4) Themes

Discuss/Upload themes created for EDK here.
Mr Twinkie
Greenhorn
Posts: 21
Joined: Sun Nov 15, 2015 10:37

Re: (EDK4) Themes

Post by Mr Twinkie »

Thread is super dead but shot in the dark... using EDK+ I get a formatting issue using the IGB

http://i.imgur.com/ZiCgXqT.png

I tried putting a second page break after the date div but that didn't help (the second break actually doesn't even show up at all despite clearing caches and whatnot)
User avatar
Salvoxia
Developer
Posts: 1598
Joined: Wed Feb 22, 2012 12:11

Re: (EDK4) Themes

Post by Salvoxia »

Hi,

yes, it is sad that most (if not all) themes and mods are no longer maintained properly.. :(

However, I toyed a bit around with that theme and the IGB and the following seems to fix it:
Add the clear: left CSS property to the kb-kl-table CSS class.
In themes/eveplus/style.css find the kb-kl-table class in line 1336:

Code: Select all

.kb-kl-table
{
	margin-left: auto;
	margin-right: auto;
	text-align: left;
	width: 100%;
}
and add "clear: left; as property

Code: Select all

.kb-kl-table
{
	margin-left: auto;
	margin-right: auto;
	text-align: left;
	width: 100%;
	clear: left;
}
Did the trick for me.

Regards,
Salvoxia
User avatar
Salvoxia
Developer
Posts: 1598
Joined: Wed Feb 22, 2012 12:11

Re: (EDK4) Themes

Post by Salvoxia »

Since these themes were sadly no longer maintained, I took the liberty to attend to that.
Please remember that all the creative work was done by Vecati, not me, and he deserves all the credit. I just make sure that you have access to all of EDK's functionality using these beautiful themes.

Links can be found in the opening post.

Best Regards,
Salvoxia

P.S.: Please excuse the poor formatting, the still suffers from PHP7.
User avatar
Vec
Apprentice
Posts: 55
Joined: Fri Jul 15, 2011 05:44

Re: (EDK4) Themes

Post by Vec »

Salvoxia wrote: Fri Feb 12, 2016 19:24 Since these themes were sadly no longer maintained, I took the liberty to attend to that.
Please remember that all the creative work was done by Vecati, not me, and he deserves all the credit. I just make sure that you have access to all of EDK's functionality using these beautiful themes.

Links can be found in the opening post.

Best Regards,
Salvoxia

P.S.: Please excuse the poor formatting, the still suffers from PHP7.
Thanks Salvoxia that is very appreciated!

Apologies to anyone who could not download the themes, am glad that its now still maintained.
Vecati
nefrit
Apprentice
Posts: 56
Joined: Sun Mar 10, 2013 21:10

Re: (EDK4) Themes

Post by nefrit »

How can i use video in background ? default theme example
User avatar
Salvoxia
Developer
Posts: 1598
Joined: Wed Feb 22, 2012 12:11

Re: (EDK4) Themes

Post by Salvoxia »

Hi,

the following basic example (with inline css to make it easier) assumes you have an MP4 type video called background.mp4 in your themes/default folder.

Open themes/default/index.tpl, and find

Code: Select all

<div id="stuff4"></div>
After this, add

Code: Select all

<div id="backgroundVideo" style="z-index: -10; position: fixed; overflow: hidden; top: 0px; left: 0px; bottom: 0px; right: 0px; background: #000000">
	<video style="width: 100%; position: absolute; top: 0px; left: 0px;" loop autoplay>
		<source src="{$kb_host}/themes/default/background.mp4" type="video/mp4">
	</video> 
</div>
Then open your themes/default/default.css and remove line 3, which should be

Code: Select all

background-color: #222;
Best Regards,
Salvoxia
nefrit
Apprentice
Posts: 56
Joined: Sun Mar 10, 2013 21:10

Re: (EDK4) Themes

Post by nefrit »

YEAH! Thank you! ;)
nefrit
Apprentice
Posts: 56
Joined: Sun Mar 10, 2013 21:10

Re: (EDK4) Themes

Post by nefrit »

o7

Where/how i can change Top locations on main page to Top Solokillers
User avatar
Salvoxia
Developer
Posts: 1598
Joined: Wed Feb 22, 2012 12:11

Re: (EDK4) Themes

Post by Salvoxia »

Hi,

unfortunately that's not a pure Theme thing, but requires changes of core files. I'll look into that and post again.

Best Regards,
Salvoxia
User avatar
Salvoxia
Developer
Posts: 1598
Joined: Wed Feb 22, 2012 12:11

Re: (EDK4) Themes

Post by Salvoxia »

Hi,

I created a little mod for replacing the Top Locations with Top Solokillers: viewtopic.php?f=505&t=21911

Best Regards,
Salvoxia
Post Reply