Page Index Toggle Pages: 1 Send TopicPrint
Hot Topic (More than 10 Replies) 2.4 Templates (Green) (Read 10268 times)
DaveRolph
New Member
*
Offline


I love YaBB 1G - SP1.2!

Posts: 10
Joined: Oct 4th, 2008
2.4 Templates (Green)
Jul 8th, 2009 at 5:24am
Print Post  
I tried to PM the user who created the Garden Green template as it has been taken off-line.

Does anyone know where I can get a decent Green template for 2.4 ?

It's for  a Junior Football Club.

Thanks in advance Dave
  
Back to top
 
IP Logged
 
LWS
Senior Member
****
Offline


seek and ye shall find...i
must be BLIND!!

Posts: 285
Location: Southern Ohio
Joined: Feb 25th, 2007
Re: 2.4 Templates (Green)
Reply #1 - Jul 8th, 2009 at 8:25pm
Print Post  
I may be able to make you one..  might be 7-10 days before i can really work on it though.. working night shift.
if you want specific shades of green.. or other detail feel free to post in my request board on my site  or in a pm
  

LoneWebSurfer.com Nothing but YaBB templates
Back to top
WWW  
IP Logged
 
Cable
Junior Member
**
Offline


I love YaBB 1G - SP1.2!

Posts: 97
Joined: Sep 28th, 2007
Re: 2.4 Templates (Green)
Reply #2 - Jul 9th, 2009 at 12:16pm
Print Post  
See your PMs
  
Back to top
 
IP Logged
 
DaveRolph
New Member
*
Offline


I love YaBB 1G - SP1.2!

Posts: 10
Joined: Oct 4th, 2008
Re: 2.4 Templates (Green)
Reply #3 - Jul 11th, 2009 at 5:17am
Print Post  
Thanks for the help.

driven, thanks for the offer, I ended up making my own

http://www.mapmavs.co.uk/cgi-bin/yabb24/YaBB.pl

Its not quite there yet because I cant work out how to change the links (the dark blue ones) cant seem to find them in the style sheet !

Cable thanks for sending me the garden template I will have a go at adding that one as well.

Nice one  Wink
  
Back to top
 
IP Logged
 
LWS
Senior Member
****
Offline


seek and ye shall find...i
must be BLIND!!

Posts: 285
Location: Southern Ohio
Joined: Feb 25th, 2007
Re: 2.4 Templates (Green)
Reply #4 - Jul 11th, 2009 at 12:34pm
Print Post  
ahh yes.. yabbs multi color links lol always fun finding them all isnt it?
here's a tip in css.. links always have an a with them..
the dark blue links for the breadcrum (links just above your board) can be changed by finding and editing this in your style sheet
Code
Select All
/* YaBB navigation links */
.nav, a.nav, a.nav:visited {
	font-weight: bold;
	font-size: 10px;
	color : #000033;
	text-decoration: none;
}
a.nav:hover {
	color: #990000;
	text-decoration: underline;
}

 



Most of the other links ( links to each board, posts etc.etc.) can be changed with this portion of the style sheet ** near the top
Code
Select All
/* General layout */
a {
	font-weight: normal;
	color: #333366;
	font-family: Verdana, Arial, Sans-Serif;
	text-decoration: none;
}
a:hover {
	color: #000000;
	font-family: Verdana, Arial, Sans-Serif;
	text-decoration: underline;
}
a:visited {
	font-weight: normal;
	color: #333366;
	font-family: Verdana, Arial, Sans-Serif;
 

  

LoneWebSurfer.com Nothing but YaBB templates
Back to top
WWW  
IP Logged
 
DaveRolph
New Member
*
Offline


I love YaBB 1G - SP1.2!

Posts: 10
Joined: Oct 4th, 2008
Re: 2.4 Templates (Green)
Reply #5 - Jul 14th, 2009 at 7:21pm
Print Post  
driven, thanks so much for the reply, I will do this over the weekend.

I know this is probably not the right place but after I get the links hover sorted the only other thing I need is to force the entire board to 800 Pixels wide (it's 100% at the moment but if I try and change it there is no effect I need some more breadcrumbs !)
  
Back to top
 
IP Logged
 
LWS
Senior Member
****
Offline


seek and ye shall find...i
must be BLIND!!

Posts: 285
Location: Southern Ohio
Joined: Feb 25th, 2007
Re: 2.4 Templates (Green)
Reply #6 - Jul 14th, 2009 at 10:09pm
Print Post  
DaveRolph wrote on Jul 14th, 2009 at 7:21pm:
know this is probably not the right place but after I get the links hover sorted the only other thing I need is to force the entire board to 800 Pixels wide (it's 100% at the moment but if I try and change it there is no effect I need some more breadcrumbs !)  


True, this entire thread could best be served in Template Help & Troubleshooting section.. maybe one of the moderators will move it there, but its not like you hijacked someone elses thread Wink so no real harm done
Constraining the forum to 800px can be done by finding  in the style sheet:
Code
Select All
}
#maincontainer{
	width: 92%;
	margin-left: auto;
	margin-right: auto;
	padding: 0px;
	border-top: 0px;
	margin-bottom: 10px;
 



Change the highlighted to 800px. Dont worry about the #container class.. it should be left at 100% as that ensures it fills up the #maincontainer completly.
If you dont mind my asking, why do you want to do that?  with it currently using 92% its fluid ..meaning it auto adjusts for what ever screen resolution a visiter is on.. myself I prefer fluid sites over a fixed width.. of course I realize some designs need a fixed width  to keep images lined up.. this site is a perfect example Cheesy
are you planning on using custom images with your layout?
  

LoneWebSurfer.com Nothing but YaBB templates
Back to top
WWW  
IP Logged
 
DaveRolph
New Member
*
Offline


I love YaBB 1G - SP1.2!

Posts: 10
Joined: Oct 4th, 2008
Re: 2.4 Templates (Green)
Reply #7 - Jul 16th, 2009 at 1:20pm
Print Post  
Thanks Driven, all sorted now.

Yes I have an image in the header, take a look

http://www.mapmavs.co.uk/cgi-bin/yabb24/YaBB.pl
  
Back to top
 
IP Logged
 
LWS
Senior Member
****
Offline


seek and ye shall find...i
must be BLIND!!

Posts: 285
Location: Southern Ohio
Joined: Feb 25th, 2007
Re: 2.4 Templates (Green)
Reply #8 - Jul 16th, 2009 at 3:16pm
Print Post  
Looks great! Are you going to replace the folders and such also?
  

LoneWebSurfer.com Nothing but YaBB templates
Back to top
WWW  
IP Logged
 
LWS
Senior Member
****
Offline


seek and ye shall find...i
must be BLIND!!

Posts: 285
Location: Southern Ohio
Joined: Feb 25th, 2007
Re: 2.4 Templates (Green)
Reply #9 - Jul 16th, 2009 at 5:21pm
Print Post  
This Topic was moved here from Template Vault [move by] driven.
  

LoneWebSurfer.com Nothing but YaBB templates
Back to top
WWW  
IP Logged
 
DaveRolph
New Member
*
Offline


I love YaBB 1G - SP1.2!

Posts: 10
Joined: Oct 4th, 2008
Re: 2.4 Templates (Green)
Reply #10 - Jul 16th, 2009 at 5:45pm
Print Post  
Thanks Driven glad someone of your tellent likes it.

Do you mean the folder images etc ? yes I would like to change them, I do have a few tweeks to make here and there (like the colour of the links to the users etc).

Thanks again for all your help, a brilliant forum with brilliant support.
If you can give me some pointers to replacing the icons that would be great !

Oh yeah one final one (honestly) the menu buttons at the top don't have hover is this possible ?
  
Back to top
 
IP Logged
 
LWS
Senior Member
****
Offline


seek and ye shall find...i
must be BLIND!!

Posts: 285
Location: Southern Ohio
Joined: Feb 25th, 2007
Re: 2.4 Templates (Green)
Reply #11 - Jul 16th, 2009 at 11:12pm
Print Post  
easiest method for changing icons for me is to simply name the new images the same as those i replace.. then upload them to my host overwriting the old.
Of course.. if you have more than one template using the same image folder..it will effect each of them.
The boards icon (folder) can be done that way too.. or you can upload your new image and edit each board to use your custom image
to do that go in Admin Center>>>Forum Controls>> Boards.

Adding a hover to tabs can be done also in the style sheet Wink
Just find:
Code
Select All
}
.tabmenu span a:hover {
	text-decoration: none;
 



then decide what mouse over effect you want..

To change the color of the tab add   background-color: #488A53;  (of course you may want to choose a different color  Grin )

Another thing i like to do is make it so it uses the tab_selected image when moused over so it looks like the tab is raise when you put the mouse on it. for this add background-image: url(./default/tab_selected211.png);

Or if your looking to just change the text color.. add   color: #FEFEFE;

You can even mix it up and use more than just one hover effect Wink
  

LoneWebSurfer.com Nothing but YaBB templates
Back to top
WWW  
IP Logged
 
DylanBubi
New Member
*
Offline


I Love YaBB 2!

Posts: 4
Joined: Jul 16th, 2011
Re: 2.4 Templates (Green)
Reply #12 - Jul 16th, 2011 at 6:53am
Print Post  
Looks great! Are you going to replace the folders and such also?
  
Back to top
 
IP Logged
 
Page Index Toggle Pages: 1
Send TopicPrint