Go Back   Pligg CMS Forum > Pligg Help > Customization Assistance

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 07-05-2008, 01:04 PM
Casual Pligger
 
Join Date: Jul 2008
Posts: 42
Thanks: 1
Thanked 1 Time in 1 Post
Changing Text Color

I download Pligg a couple days and I am really impressed by it. I have also found a ton of support on these forums. I rarely post when I have a problem and usually find the answers myself. However, I am ripping my hair out trying to do something seemingly simple. Before you bash me for asking a stupid question, I have tried everything and nothing seems to work.

I changed the background color for my sidebars from blue to white. The font color is white and I want to change it to black with a different roll over color. I have searched my CSS and changed every color I can find and nothing has changed. I have been concetrating my efforts around .featurebox and .tlb but nothing seems to be working. What is frustrating me is I have managed to change the color of some text but not all it. I was going into the .tbl files directly (ie: tags and categories) but that didn't help either.

Here are my links:

ArmchairGM - site

CSS

Thank you and any help would be appreciated. My wife wants me off this stupid computer. :)

Bryan
Reply With Quote
  #2 (permalink)  
Old 07-05-2008, 01:12 PM
chuckroast's Avatar
Coder/Designer
Pligg Version: 1.0
Pligg Template: ExpertVision
 
Join Date: Jun 2006
Location: PA
Posts: 2,399
Thanks: 171
Thanked 440 Times in 279 Posts
Have you tried changing
Code:
.tlb a {
font-weight:700;
color:#fff;
text-decoration:none;
font-size:14px;
background-image:none;
}
To

Code:
.tlb a {
font-weight:700;
color:#000;
text-decoration:none;
font-size:14px;
background-image:none;
}
__________________
Visit PliggPro the official Pligg Mods & Template Shop!

Reply With Quote
  #3 (permalink)  
Old 07-05-2008, 01:19 PM
Casual Pligger
 
Join Date: Jul 2008
Posts: 42
Thanks: 1
Thanked 1 Time in 1 Post
Chuck, thanks for the quick reply. Yes, I did change that. If you take a look at my current css it will show it change but not the text.
Reply With Quote
  #4 (permalink)  
Old 07-05-2008, 02:06 PM
graphicsguru's Avatar
Pligg Donor
Pligg Version: 9.9.5
 
Join Date: Aug 2006
Location: USA
Posts: 416
Thanks: 75
Thanked 48 Times in 36 Posts
look for your .featurebox to edit on your css
Reply With Quote
  #5 (permalink)  
Old 07-05-2008, 02:07 PM
graphicsguru's Avatar
Pligg Donor
Pligg Version: 9.9.5
 
Join Date: Aug 2006
Location: USA
Posts: 416
Thanks: 75
Thanked 48 Times in 36 Posts
and look for .tlb {
Reply With Quote
  #6 (permalink)  
Old 07-05-2008, 02:14 PM
Casual Pligger
 
Join Date: Jul 2008
Posts: 42
Thanks: 1
Thanked 1 Time in 1 Post
This is the area I am working around in my css. I have changed every color possible in the .tlb and .featurebox. Any color that was white I made black or some other color. However my text isn't change on the page. It is driving me crazy. I kind of know what to look for but something is just stumping me here.

Code:
.featurebox {

	background:#FFFFFF url('../images/sidebarborder.gif') repeat-x 0 100%;

  color:#000;

	margin:0 0 15px;

	padding:15px 0 10px 10px;

}



.featurebox p {

border:none;

color:#444;

margin:0 0 1em;

}



.featurebox a:hover {

	color:#404040;

	text-decoration:underline;

}



.featurebox li a {


color: #000;


margin-left:-10px;

padding-left:20px;

line-height:2em;

}



li.rmore {



list-style:none;

margin-left:140px;

background:url("../images/more.png") no-repeat 100% 100%;

}



li.rmore a {



text-decoration:none;

font-size:12px;

line-height:2.2em;

}



.featurebox ul {



margin-left:10px;

margin-bottom:10px;

}



.featurebox ul a {



margin-bottom:5px;

}



.tlb {

background: url('../images/sidebarborder-t.gif') no-repeat 0 0;

color: #000;

margin:-15px -10px 0;

padding:3px 10px 5px;

}



.tlb a {
font-weight:700;
color: #000;
font-size:14px;
background-image:none;

}



.tlb strong {

font-weight:700;
color: #000000;

}



.tlb a:hover {

color:#000;

text-decoration:none;

}



.tlb span {

float:right;

margin-top:-3px;

margin-right:0;

}



.tlb2 {



margin:5px 0 0;

padding:0 10px 23.5px;

}



.tlb2 span a {

background:#CCC;

margin-right:8px;

cursor:pointer;

float:left;

display:block;

color:#555;

width:58px;

height:21px;

text-align:center;

padding-top:2px;

}



.tlb2 span.selected a {

background:#467AA9;

width:58px;

height:21px;

cursor:text;

float:left;

display:block;

margin-right:8px;

font-weight:700;

color:#333;

text-align:center;

padding-top:2px;

}
Reply With Quote
  #7 (permalink)  
Old 07-05-2008, 02:24 PM
graphicsguru's Avatar
Pligg Donor
Pligg Version: 9.9.5
 
Join Date: Aug 2006
Location: USA
Posts: 416
Thanks: 75
Thanked 48 Times in 36 Posts
the easiest way for you to learn your css on your template

open your site in any browser save page as what ever then open it in your html editor
to find what css fields are named and if that have all the correct settings with background colors hover colors
you may need to add a new css I don't know who made your template of change the change the image to blue
http://www.armchairgm.net/templates/...arborder-t.gif

is exactly what I did on your as well as my own site when I stated edited the css
Reply With Quote
  #8 (permalink)  
Old 07-05-2008, 02:32 PM
Casual Pligger
 
Join Date: Jul 2008
Posts: 42
Thanks: 1
Thanked 1 Time in 1 Post
graphicsguru, thanks for your input. I'm still playing with things and haven't manage to fit it. I am using the czNet template and have changed everything myself. I will play around with your suggestions and hope to get it. Thanks for your help.

Bryan
Reply With Quote
  #9 (permalink)  
Old 07-05-2008, 04:27 PM
Casual Pligger
 
Join Date: Jul 2008
Posts: 42
Thanks: 1
Thanked 1 Time in 1 Post
I figured it out. There was a '.featurebox a' buried in the css away from the other code that I didn't see. Thanks again for your help.

Bryan
Reply With Quote
Reply

Thread Tools
Display Modes
Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are Off
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Similar Threads
Thread Thread Starter Forum Replies Last Post
Changing language text in Summary-Recommend Infinityvers General Help 0 08-16-2008 04:36 PM
Changing Text Editor anandn General Help 0 12-21-2007 10:15 AM
need help with changing bump number color RabidPinata General Help 0 12-05-2006 06:25 PM
changing vote text link to an image lithman General Help 2 09-12-2006 11:45 AM
Changing the "white space" on both sides of the story post text buttercup Template Support 3 07-15-2006 01:33 AM


Search Engine Friendly URLs by vBSEO 3.2.0