Page Index Toggle Pages: 1 Send TopicPrint
Normal Topic help with code location? (Read 1806 times)
Citron
New Member
*
Offline


I Love YaBB 2!

Posts: 22
Joined: Dec 17th, 2010
help with code location?
Dec 21st, 2010 at 2:55pm
Print Post  
I am trying to tweek a few things on my site share-hub.com:

- bottom bar from light purple to the other blue colored bars
- font darker inside bottom bar that states "Top of this page"
- Copyright at bottom "Fire & Ice Skin designed by LoneWebSurfer" remove bolding

If you can point me to where the code resides. I've been up and down the css in admin center but can't seem to find these spots.
  
Back to top
 
IP Logged
 
Derek Barnstorm
God Member
*****
Offline



Posts: 1146
Location: Warwickshire
Joined: Mar 23rd, 2008
Gender: Male
Re: help with code location?
Reply #1 - Dec 21st, 2010 at 3:39pm
Print Post  
Citron wrote on Dec 21st, 2010 at 2:55pm:
- bottom bar from light purple to the other blue colored bars

This should do it - in the CSS file find:

Code
Select All
.mainbottom {
	height: 22px;
	width: 100%;
	background-color: #9CB9F3;
	background-image: url(./fire_n_ice/grad_bottom.jpg);
	text-align: left;
} 


And change the highlighted to:

Code
Select All
.mainbottom {
	height: 22px;
	width: 100%;
	background-color: #2b649a;
	background-image: url(./fire_n_ice/catbg_sm.jpg);
	text-align: left;
} 


Citron wrote on Dec 21st, 2010 at 2:55pm:
- font darker inside bottom bar that states "Top of this page"

That's done in this bit of the CSS. Change the highlighted to the color that you want. Note that this is used in more places than just the bottom menu though - it will change the navigation at the top of the page too.

Code
Select All
.nav, a.nav, a.nav:visited {
	font-weight: bold;
	font-size: 10px;
	color : #4bb8f0;
	text-decoration: none;
} 


Citron wrote on Dec 21st, 2010 at 2:55pm:
- Copyright at bottom "Fire & Ice Skin designed by LoneWebSurfer" remove bolding

This is in fire_n_ice.html - removing the highlighted bold tags will do it. But, seeing as it's LoneWebSurfer's template design and he put his name in bold, I'd say it would be good manners to leave that as it is really.

Code
Select All
Fire &amp; Ice Skin designed by <b>LoneWebSurfer</b><br /> 


Smiley
  
Back to top
 
IP Logged
 
Page Index Toggle Pages: 1
Send TopicPrint