phpBB Forum

It is currently Thu 24. May 2012, 07:02

All times are UTC + 1 hour

Forum rules


Hello dearest user and welcome to our EQDKP-Plus support forum.

Please read the following rules and terms before posting anything! Failure in doing so will result in being ignored or being banned. Posting in our boards means you have read, understood and accepted those rules.

English Board Rules – Click here



Post new topic Reply to topic  [ 8 posts ] 
Author Message
Offline
 Post subject: warcraft SW:Tor mixed style (Almost finished any pointers?)
PostPosted: Thu 10. Nov 2011, 20:03 

Joined: Sun 6. Feb 2011, 12:59
Posts: 31
Since several of our guildies are hopping over to SW:TOR, ive started working on a template.

not to sure on the main color scheme yet, any suggestions are most apreciated, as this theme will probly be going public.

Also making custom rank images for the forums
example:

Image

changes update:

Main layout is styled after some searching and cussing :D
Rank images for the forums are done
Customized recruitment box, with big thx to wallenium for supplying the code
Image[/URL]

To do
Color scheme (keep the grey style or go darker?)
Convert to a republic blueish theme
Forum Styling

Any suggestions are welcome!

full view at: http://www.twitd.co.uk



Last edited by syncro on Thu 17. Nov 2011, 13:04, edited 3 times in total.

Top
 Profile  
 
Offline
 Post subject: Re: warcraft SW:Tor mixed style (**in progress)
PostPosted: Thu 10. Nov 2011, 20:53 

Joined: Wed 28. Apr 2010, 17:02
Posts: 70
Maybe you could post a package with templates, forumstyle, forumranks etc ? Would be cool



Top
 Profile  
 
Offline
 Post subject: Re: warcraft SW:Tor mixed style (**in progress)
PostPosted: Thu 10. Nov 2011, 21:38 
Core-Developer
User avatar

Joined: Wed 10. Dec 2008, 12:52
Posts: 4536
Location: Hannover - Germany
nice!!


EQdkp-Plus Project Lead
- Schreibt mir nie unaufgefordert PNs oder Emails! - Dont write me emails/pm!
- Schickt mir keine Zugangsdaten! Dont send me login infomations!
- Gebt immer eure EQdkp Version und einen Link zu eurer Seite an! We need your EQdkp Version and a link to your Site!
- Lest die Forenregeln!! - Read the Board Rules!



Top
 Profile  
 
Offline
 Post subject: Re: warcraft SW:Tor mixed style (**STUCK) (please help)
PostPosted: Wed 16. Nov 2011, 18:29 

Joined: Sun 6. Feb 2011, 12:59
Posts: 31
right, beware long post.

so, i'm trying to understand this luna_wotlk template. As it comes to colors, most things are pretty clear at the moment. But now i've come to the point where i want to take things a step further and things are getting confusing.

1) there seem to be 2 files wich affect the styling: style.php and luna_wotlk.css
here's the confusing part: i want to create an img for the left and right menu's in the portal, and a different one for the middle section as that one's width is longer.
so lets dig in the luna_wotlk.css file.

found the code wich should affect the left menu topimage:
Code:
th {
   background: #ff0000 url({EQDKP_ROOT_PATH}templates/luna_wotlk/images/head.jpg) repeat-x;
   color:#{T_HEADER_LINK};
   font-size: {T_FONTSIZE2}px;
   font-family: {T_FONTFACE1};
   height:25px;
   white-space:nowrap;
   text-align:left;
   padding-left:8px;
   padding-right:8px;
}


now when i made changes to this NOTHING was happening. So i dug into the style.php file and found the exact same code. When i made changes there, now THAT worked. So some stuff i need to edit in the luna.css file and other stuff only works when i change it in the style.php file. I've tried searching at the wiki page, but no answers there that helped me on figuring it out. So far so good, so now i know that its in the style.php file.

all, done, made the image and replaced it with my own. Super that worked. BUT.. it seems both the middle section and the menu's use that same exact image. So into the code again to see what class is assigned to the menu's so i can assign another class to the menu sections and use the default class for the middle section. To my suprise i find this in the page_header.html file:

Code:
<td class="portal_sidebar" valign="top" style="max-width: 210px;">
                        {PORTAL_LEFT1}
                        {MAIN_MENU1_V}
                        {MAIN_MENU2_V}
                        {MAIN_MENU3_V}<br />
                        {PORTAL_LEFT2}
                     </td>

i suppose that this defines the styling of atleast the left menu because when i change the width in that line it affects the width of the sidebar.
BUT i see here that the class is "portal_sidebar"... nowhere in the template folder is that class defined. and changing that to another class while defining it in luna_wotlk.css is not working either.

so now i'm confused. Where do i change what to make it work so that the sidebar has it own styling seperate from the middle section?



Top
 Profile  
 
Offline
 Post subject: Re: warcraft SW:Tor mixed style (update, stuck pls help out)
PostPosted: Thu 17. Nov 2011, 10:23 

Joined: Sun 6. Feb 2011, 12:59
Posts: 31
searching and learning myself, aint that fun! As i said before, i aint no specialist in php, but i'm not afraid to look for things that i dont understand and learn from it.
So maybe interesting for fellow themers that also have this problem.
I found that every <th tag has a styling attached to it, i didnt know this was possible. That explains the code below and why that the specifeid image was being used everywhere.
Code:
th {
   background: #ff0000 url({EQDKP_ROOT_PATH}templates/luna_wotlk/images/head.jpg) repeat-x;
   color:#{T_HEADER_LINK};
   font-size: {T_FONTSIZE2}px;
   font-family: {T_FONTFACE1};
   height:25px;
   white-space:nowrap;
   text-align:left;
   padding-left:8px;
   padding-right:8px;
}


now to fix what i want, was to go to the page_header.html and look for the code where the sidebar starts and override the th styleling.
the Sidebar has a styling for the title of every bar namely: "smalltitle". So all i had to do was add a background image in the style.php for that class and problem solved!



Top
 Profile  
 
Offline
 Post subject: Re: warcraft SW:Tor mixed style (Almost finished any pointer
PostPosted: Thu 17. Nov 2011, 13:05 

Joined: Sun 6. Feb 2011, 12:59
Posts: 31
updated, see first post.



Top
 Profile  
 
Offline
 Post subject: Re: warcraft SW:Tor mixed style (Almost finished any pointer
PostPosted: Mon 12. Dec 2011, 15:53 

Joined: Mon 12. Dec 2011, 11:21
Posts: 3
we decided to go darker ;)

http://www.tor-hmilch.de

Image[/img]



Top
 Profile  
 
Offline
 Post subject: Re: warcraft SW:Tor mixed style (Almost finished any pointer
PostPosted: Mon 19. Dec 2011, 18:54 

Joined: Mon 19. Dec 2011, 18:12
Posts: 2
Hey i have a little question.
How can i take my portal in the middle like you that is not stretching when it is on an bigger screen can you help me??



Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 8 posts ] 

All times are UTC + 1 hour


Who is online

Users browsing this forum: No registered users and 1 guest


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
cron

(C) The EQdkp-Plus Developer Team
EQdkp Plus Template by Ramon Kaes