Go Back   HondaSwap Forums > Members' Corner > Computers, Games, Electronics etc

forum help

Welcome, Guest! Please Register or Login:
  

Members have access to more features, better search, and see fewer ads! It's free, what are you waiting for?

Once You Know, You Newegg
Reply
 
LinkBack Thread Tools
Old 06-30-2006, 05:15 AM   #1
Senior Member
 
Join Date: Jan 2003
Posts: 9,002
iTrader: 2 / 100%
Rep Power: 112
brian11to1 is just really nicebrian11to1 is just really nicebrian11to1 is just really nicebrian11to1 is just really nice
Default forum help

Ok, Ive been trying to teach myself how to manipulate the CSS on my site, so far I have done ok, I think.

But, there are some problems I cant seem to find the answers to.



If its outlined in yellow, I dont want a background color. Any ideas or hints or anything?
brian11to1 is offline   Reply With Quote
Old 06-30-2006, 09:59 AM   #2
RETIRED
 
pissedoffsol's Avatar
 
Join Date: Sep 2002
Location: Retirement Home
Age: 29
Posts: 49,951
iTrader: 2 / 100%
Ride:  Electric Scooter
Blog Entries: 1
Rep Power: 532
pissedoffsol is a splendid one to beholdpissedoffsol is a splendid one to beholdpissedoffsol is a splendid one to beholdpissedoffsol is a splendid one to beholdpissedoffsol is a splendid one to beholdpissedoffsol is a splendid one to behold
Default

can't be done in the default template. that alt1 class effects EVERY instance of the grey. you'll have to edit your templates on the navbar and the forumdisplay and give them a new class name, say alt5 (3 and 4 are used as well by default) and then add
Code:
.alt5 { background: #000000; }
in the custom css area at the bottom.
pissedoffsol is offline   Reply With Quote
Old 06-30-2006, 11:21 AM   #3
Senior Member
 
Join Date: Jan 2003
Posts: 9,002
iTrader: 2 / 100%
Rep Power: 112
brian11to1 is just really nicebrian11to1 is just really nicebrian11to1 is just really nicebrian11to1 is just really nice
Default

Quote:
Originally Posted by pissedoffsol
can't be done in the default template. that alt1 class effects EVERY instance of the grey. you'll have to edit your templates on the navbar and the forumdisplay and give them a new class name, say alt5 (3 and 4 are used as well by default) and then add
Code:
.alt5 { background: #000000; }
in the custom css area at the bottom.
So its going to be hard to do?
If i gave you admin access would you do it for me?
brian11to1 is offline   Reply With Quote
Old 07-02-2006, 03:35 AM   #4
Senior Member
 
Join Date: Jan 2003
Posts: 9,002
iTrader: 2 / 100%
Rep Power: 112
brian11to1 is just really nicebrian11to1 is just really nicebrian11to1 is just really nicebrian11to1 is just really nice
Default

ok Brian, I gave up on that... just need some assistance... here...

Ive tried everything, been to a lot of forums on CSS and have came up with nothing.

Can you help?
Attached Thumbnails
asd.jpg   asd2.jpg  
brian11to1 is offline   Reply With Quote
Old 07-02-2006, 03:46 AM   #5
Senior Member
 
Join Date: Jan 2003
Posts: 9,002
iTrader: 2 / 100%
Rep Power: 112
brian11to1 is just really nicebrian11to1 is just really nicebrian11to1 is just really nicebrian11to1 is just really nice
Default

Quote:
Originally Posted by brian11to1
ok Brian, I gave up on that... just need some assistance... here...

Ive tried everything, been to a lot of forums on CSS and have came up with nothing.

Can you help?
This is the CSS I've added to try to fix it...

Code:
<td>background: transparent</td>
<th>background: transparent</th>
<p>background: transparent</p>
<li>background: transparent</li>
also

Code:
<td>background-color: transparent</td>
<th>background-color: transparent</th>
<p>background-color: transparent</p>
<li>background-color: transparent</li>
brian11to1 is offline   Reply With Quote
Old 07-02-2006, 03:54 AM   #6
RETIRED
 
pissedoffsol's Avatar
 
Join Date: Sep 2002
Location: Retirement Home
Age: 29
Posts: 49,951
iTrader: 2 / 100%
Ride:  Electric Scooter
Blog Entries: 1
Rep Power: 532
pissedoffsol is a splendid one to beholdpissedoffsol is a splendid one to beholdpissedoffsol is a splendid one to beholdpissedoffsol is a splendid one to beholdpissedoffsol is a splendid one to beholdpissedoffsol is a splendid one to behold
Default

css doesn't use html selectors, and "transparent" is depreciated.

Code:
td { background: #000000; }

for example. you'll need to specify a color, but that will change EVERY table cell, so that's probably not what you want to do. I can't tell what you want from your screen shots.
pissedoffsol is offline   Reply With Quote
Old 07-02-2006, 04:10 AM   #7
HS Troll...And Mod
 
reikoshea's Avatar
 
Join Date: Apr 2005
Location: San Antonio, TX
Age: 24
Posts: 10,915
iTrader: 0 / 0%
Ride:  2001 Honda S2000
Rep Power: 254
reikoshea has a reputation beyond repute
reikoshea has a reputation beyond reputereikoshea has a reputation beyond reputereikoshea has a reputation beyond reputereikoshea has a reputation beyond reputereikoshea has a reputation beyond reputereikoshea has a reputation beyond reputereikoshea has a reputation beyond reputereikoshea has a reputation beyond repute
myspace
Default

Quote:
Originally Posted by pissedoffsol
css doesn't use html selectors, and "transparent" is depreciated.

Code:
td { background: #000000; }

for example. you'll need to specify a color, but that will change EVERY table cell, so that's probably not what you want to do. I can't tell what you want from your screen shots.
Id just set a class for it like

Code:
.tdalt1 
{
background: #000000;
}
and then:
Code:
<td class="tdalt1">
reikoshea is offline   Reply With Quote
Old 07-02-2006, 04:14 AM   #8
Senior Member
 
Join Date: Jan 2003
Posts: 9,002
iTrader: 2 / 100%
Rep Power: 112
brian11to1 is just really nicebrian11to1 is just really nicebrian11to1 is just really nicebrian11to1 is just really nice
Default

Quote:
Originally Posted by reikoshea
Id just set a class for it like

Code:
.tdalt1 
{
background: #000000;
}
and then:
Code:
<td class="tdalt1">
Im sorry, I have a hard time typing when Im fuming becuase I cant figure it out.

The areas in yellow, need to be transparent or black not gray.

reikoshea - where do I input the code you gavE?
brian11to1 is offline   Reply With Quote
Old 07-02-2006, 04:31 AM   #9
HS Troll...And Mod
 
reikoshea's Avatar
 
Join Date: Apr 2005
Location: San Antonio, TX
Age: 24
Posts: 10,915
iTrader: 0 / 0%
Ride:  2001 Honda S2000
Rep Power: 254
reikoshea has a reputation beyond repute
reikoshea has a reputation beyond reputereikoshea has a reputation beyond reputereikoshea has a reputation beyond reputereikoshea has a reputation beyond reputereikoshea has a reputation beyond reputereikoshea has a reputation beyond reputereikoshea has a reputation beyond reputereikoshea has a reputation beyond repute
myspace
Default

I think i know what you are talking about (FINALLY).

You'll have to remove the:

padding: 5px;

line in the body class.

Itll get rid of the black but it will shrink the size of the forum (i think).

I hadnt been to your website when i wrote that. Now that ive seen the actual code, the new thing should work.

Last edited by reikoshea; 07-02-2006 at 04:34 AM.
reikoshea is offline   Reply With Quote
Old 07-02-2006, 04:40 AM   #10
Senior Member
 
Join Date: Jan 2003
Posts: 9,002
iTrader: 2 / 100%
Rep Power: 112
brian11to1 is just really nicebrian11to1 is just really nicebrian11to1 is just really nicebrian11to1 is just really nice
Default

Quote:
Originally Posted by reikoshea
I think i know what you are talking about (FINALLY).

You'll have to remove the:

padding: 5px;

line in the body class.

Itll get rid of the black but it will shrink the size of the forum (i think).

I hadnt been to your website when i wrote that. Now that ive seen the actual code, the new thing should work.
I have no idea where to put that though. I have never seen the actual coding of my site. I use the AdminCP to modify the colors and stuff. Are you familiar with Vbulletin 3.4.5?
brian11to1 is offline   Reply With Quote
Old 07-02-2006, 04:45 AM   #11
HS Troll...And Mod
 
reikoshea's Avatar
 
Join Date: Apr 2005
Location: San Antonio, TX
Age: 24
Posts: 10,915
iTrader: 0 / 0%
Ride:  2001 Honda S2000
Rep Power: 254
reikoshea has a reputation beyond repute
reikoshea has a reputation beyond reputereikoshea has a reputation beyond reputereikoshea has a reputation beyond reputereikoshea has a reputation beyond reputereikoshea has a reputation beyond reputereikoshea has a reputation beyond reputereikoshea has a reputation beyond reputereikoshea has a reputation beyond repute
myspace
Default

okay, i know what you mean.

download the index.php file from your website onto your hard drive. HOPEFULLY this will be easy.

Open the file in notepad.
Find
padding: 5px;
Delete
Save
Upload

I hope VBulliten is written that way. Otherwise, its up to B, cause ive never used vbulletin, and it would take me a bit (like an hour...and i definitely dont wanna be up that much longer) to figure it completely out. If you dont figure it out before the F1 race tomorrow (11:30 Central) send me an IM at Reik0shea (thats a zero) on AIM. Ill help you out. Just create an acct for me on your server and ill take care of it.
__________________
If you PM me with tech questions, you better have a link to the thread in your PM.

Quote:
Originally Posted by pissedoffsol View Post
I have 12 battery powered dildos on my carpet!
Anime Informant
reikoshea is offline   Reply With Quote
Old 07-02-2006, 04:50 AM   #12
Senior Member
 
Join Date: Jan 2003
Posts: 9,002
iTrader: 2 / 100%
Rep Power: 112
brian11to1 is just really nicebrian11to1 is just really nicebrian11to1 is just really nicebrian11to1 is just really nice
Default

I dont think you can modify the index file on vbulletin. Ill try it though.
brian11to1 is offline   Reply With Quote
Old 07-02-2006, 04:56 AM   #13
Senior Member
 
Join Date: Jan 2003
Posts: 9,002
iTrader: 2 / 100%
Rep Power: 112
brian11to1 is just really nicebrian11to1 is just really nicebrian11to1 is just really nicebrian11to1 is just really nice
Default

Quote:
Originally Posted by brian11to1
I dont think you can modify the index file on vbulletin. Ill try it though.
reikoshea - do you want/need admin access to the CP? Im not comfortable doing that however.

Yea, you cant change it that way. BBBBBBBBB help!!!!
brian11to1 is offline   Reply With Quote
Old 07-02-2006, 05:00 AM   #14
HS Troll...And Mod
 
reikoshea's Avatar
 
Join Date: Apr 2005
Location: San Antonio, TX
Age: 24
Posts: 10,915
iTrader: 0 / 0%
Ride:  2001 Honda S2000
Rep Power: 254
reikoshea has a reputation beyond repute
reikoshea has a reputation beyond reputereikoshea has a reputation beyond reputereikoshea has a reputation beyond reputereikoshea has a reputation beyond reputereikoshea has a reputation beyond reputereikoshea has a reputation beyond reputereikoshea has a reputation beyond reputereikoshea has a reputation beyond repute
myspace
Default

Not asking you to do anything that would make you uncomfortable. The only thing that would allow me to help you is an admin acct on the forum.

Ive never used VBulliten, and since HS is now a VBulletin site, i figure B would be better at it than i am...BED TIME THOUGH. Gotta get up and watch Michael kick ass tomorrow.
reikoshea is offline   Reply With Quote
Old 07-02-2006, 05:01 AM   #15
Senior Member
 
Join Date: Jan 2003
Posts: 9,002
iTrader: 2 / 100%
Rep Power: 112
brian11to1 is just really nicebrian11to1 is just really nicebrian11to1 is just really nicebrian11to1 is just really nice
Default

your an admin...

Last edited by brian11to1; 07-02-2006 at 05:05 AM.
brian11to1 is offline   Reply With Quote
Old 07-03-2006, 12:58 PM   #16
Senior Member
 
Join Date: Jan 2003
Posts: 9,002
iTrader: 2 / 100%
Rep Power: 112
brian11to1 is just really nicebrian11to1 is just really nicebrian11to1 is just really nicebrian11to1 is just really nice
Default

I figured it out, thanks again.

I had to enter a color for the Table Border, I removed it and forgot I had done this.
brian11to1 is offline   Reply With Quote
Reply

Thread Tools

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 On
[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
How many forum posters does it take..... pissedoffsol Members' Lounge 51 12-01-2007 12:32 AM
this is the wirst forum i have ever seen cobraz240@hotmail.com HYBRID -> EG-EK / DC 10 01-14-2006 03:11 PM
Common posts on other message boards Sabz5150 Members' Lounge 16 09-03-2004 05:47 PM
A Non-swap Problem Forum? SleEPeR_CRX Members' Lounge 8 06-22-2003 03:05 AM
F***ck me! This forum is the hottest eva! zooped Members' Lounge 2 10-01-2002 12:21 AM


All times are GMT -5. The time now is 07:53 AM.


Powered by vBulletin® Version 3.8.x
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
SEO by vBSEO
© 2001-2009 HondaSwap.com
One of the largest message boards on the web !  | a SkeyMedia Network site

Advertise on Hondaswap.com