Webmaster Forum


Go Back   Webmaster Forum > Web Development > Web Design Lobby > Coding Forum
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Coding Forum Problems with your code? Let's hear about it.

Sponsored Reviews   Improve your ranking, submit to directories   V7N Directory

Reply
 
LinkBack Thread Tools Display Modes
Old 10-02-2006, 01:32 PM   #1 (permalink)
Inactive
 
Join Date: 10-02-06
Posts: 6
iTrader: 0 / 0%
Latest Blog:
None

Stephen1 is liked by many
Exclamation Need help with CSS coding on my site ...

Right I need some more help with this

This is my current coding

#header {
background-image: url(http://img.photobucket.com/albums/v4...Banner-2.gif);
}
#header * {
display: none; /* selects all contents of #header and hides them */
}
#nav .btn a:hover { text-decoration:underline; color: #409FFF;}
}
body,td,th {
color: #000000;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
}
body {
background-color: #000000;
text-align: center;
}
a:link {
color: #000000;
text-decoration: none;
}
a:visited {
color: #000000;
text-decoration: none;
}
a:hover {
color: #409FFF;
text-decoration: underline;
}
#nav {
background: #000000;
display: table; /* displays #nav element as a table */
width: auto; /* resets width to auto */
margin: 0 auto; /* centers the "table" */
}
#main { clear:both; background-color:#000000;
background-repeat:no-repeat; background-position:bottom
left; padding:0 0 96px 8px; width:762px; }



http://img378.imageshack.us/img378/9861/untitledpq3.jpg
http://img345.imageshack.us/img345/5...titled2pw4.jpg
http://img443.imageshack.us/img443/3...titled3js8.jpg
http://img430.imageshack.us/img430/2...titled4on1.jpg

I really want orange black btw

How do I do whats in the screen shots

You can see my latest CSS coding and add to it if you wish to

I really need some help with these wee parts on my profile, if you can help please post some help for me

Thanks again

P.S look at the profile if you need coding or anything

http://www.profileheaven.com/Stephen06Fleming

Thank-you.
Stephen1 is offline  
Add Post to del.icio.us
Reply With Quote
Sponsored Links
SEO Hosting by HostGator  Advertise Here  Buy Blog Links
Old 10-02-2006, 02:55 PM   #2 (permalink)
Contributing Member
 
bratwebdesign's Avatar
 
Join Date: 04-05-06
Location: Nebraska
Posts: 560
iTrader: 0 / 0%
Latest Blog:
None

bratwebdesign is a splendid one to beholdbratwebdesign is a splendid one to beholdbratwebdesign is a splendid one to beholdbratwebdesign is a splendid one to beholdbratwebdesign is a splendid one to beholdbratwebdesign is a splendid one to beholdbratwebdesign is a splendid one to beholdbratwebdesign is a splendid one to beholdbratwebdesign is a splendid one to beholdbratwebdesign is a splendid one to beholdbratwebdesign is a splendid one to behold
Send a message via MSN to bratwebdesign
To change the orange text to black text:

There is a class called "text2" that is making the text orange. All you would need to do is add this to the style part:

Code:
.text2 { color: #000000 }
For centering the menu links:

Try Changing this:
Code:
#nav { background: #000000; display: table; /* displays #nav element as a table */ width: auto; /* resets width to auto */ margin: 0 auto; /* centers the "table" */ }
To This:
Code:
#nav { background: #000000; text-align: center; display: table; /* displays #nav element as a table */ width: auto; /* resets width to auto */ margin: 0 auto; /* centers the "table" */ }
Hope this helps
__________________
Omaha Web Design | Cube Directory
bratwebdesign is offline  
Add Post to del.icio.us
Reply With Quote
Old 10-04-2006, 05:48 PM   #3 (permalink)
Inactive
 
Join Date: 10-02-06
Posts: 6
iTrader: 0 / 0%
Latest Blog:
None

Stephen1 is liked by many
http://img208.imageshack.us/img208/6303/untitledzh0.jpg

Still need that part to be black, the part that's orange and grey, the grey is orange to its just cause my mouse was over it at the screeny, the other black thing worked tho, thanks man

It's still not centering in Internet Explorer with that coding tho

Any ideas, please post....



Pleaseeee Helpppppppppp

Last edited by Stephen1 : 10-04-2006 at 06:09 PM.
Stephen1 is offline  
Add Post to del.icio.us
Reply With Quote
Old 10-05-2006, 02:31 AM   #4 (permalink)
Contributing Member
 
bratwebdesign's Avatar
 
Join Date: 04-05-06
Location: Nebraska
Posts: 560
iTrader: 0 / 0%
Latest Blog:
None

bratwebdesign is a splendid one to beholdbratwebdesign is a splendid one to beholdbratwebdesign is a splendid one to beholdbratwebdesign is a splendid one to beholdbratwebdesign is a splendid one to beholdbratwebdesign is a splendid one to beholdbratwebdesign is a splendid one to beholdbratwebdesign is a splendid one to beholdbratwebdesign is a splendid one to beholdbratwebdesign is a splendid one to beholdbratwebdesign is a splendid one to behold
Send a message via MSN to bratwebdesign
Try this for the menu:

The parts that are bold have been added


Code:
<div id="nav"> <div align="center"> <div class="btn" id="nvb1"><a href="http://www.profileheaven.com/Stephen06Fleming">Home</a></div> <div class="btn" id="nvb2"><a href="http://www.profileheaven.com/blog.php?clientID=236806">Blog / Diary</a></div> <div class="btn" id="nvb3"><a href="http://www.profileheaven.com/photogallery.php?clientID=236806">Photo Gallery</a></div> <div class="btn" id="nvb4"><a href="http://www.profileheaven.com/guestbook.php?clientID=236806">Guestbook</a></div> <div class="btn" id="nvb5"><a href="http://www.profileheaven.com/friends.php?clientID=236806">Friends</a></div> <div class="btn" id="nvb6"><a href="http://www.profileheaven.com/videos.php?clientID=236806">Videos</a></div> <div class="breaker">&nbsp;</div> </div> </div>
The link to the jpg does not work, so I am not sure what you are talking about.
__________________
Omaha Web Design | Cube Directory
bratwebdesign is offline  
Add Post to del.icio.us
Reply With Quote
Old 10-08-2006, 01:40 PM   #5 (permalink)
Inactive
 
Join Date: 10-02-06
Posts: 6
iTrader: 0 / 0%
Latest Blog:
None

Stephen1 is liked by many
http://img208.imageshack.us/img208/6303/untitledzh0.jpg

That does work :/

The parts that are orange :/ I want them black

In that screeny

And the links wont center in Internet Explorer, only in Firefox

Any other ideas?

Thanks..
Stephen1 is offline  
Add Post to del.icio.us
Reply With Quote
Old 10-13-2006, 12:14 PM   #6 (permalink)
Inactive
 
Join Date: 10-02-06
Posts: 6
iTrader: 0 / 0%
Latest Blog:
None

Stephen1 is liked by many
Sorry for the double post but it has been a while

First of thanks for all the so far help and sorting some of my profile problems

The only thing I need done now is this

http://img208.imageshack.us/img208/6303/untitledzh0.jpg

I want the orange parts at the bottom

The oranges boxes saying 1 and 2, to be BLACK and not ORANGE

Thanks again

Stephen
Stephen1 is offline  
Add Post to del.icio.us
Reply With Quote
Old 10-13-2006, 12:45 PM   #7 (permalink)
Contributing Member
 
bratwebdesign's Avatar
 
Join Date: 04-05-06
Location: Nebraska
Posts: 560
iTrader: 0 / 0%
Latest Blog:
None

bratwebdesign is a splendid one to beholdbratwebdesign is a splendid one to beholdbratwebdesign is a splendid one to beholdbratwebdesign is a splendid one to beholdbratwebdesign is a splendid one to beholdbratwebdesign is a splendid one to beholdbratwebdesign is a splendid one to beholdbratwebdesign is a splendid one to beholdbratwebdesign is a splendid one to beholdbratwebdesign is a splendid one to beholdbratwebdesign is a splendid one to behold
Send a message via MSN to bratwebdesign
There is two classes called "btn2on" and "btn2"

Add to your css coding:

Code:
.btn2on, .btn2 { background-color: #000000; }
__________________
Omaha Web Design | Cube Directory
bratwebdesign is offline  
Add Post to del.icio.us
Reply With Quote
Old 10-13-2006, 05:19 PM   #8 (permalink)
Inactive
 
Join Date: 10-02-06
Posts: 6
iTrader: 0 / 0%
Latest Blog:
None

Stephen1 is liked by many
Now whatever page im on in my friends thing its black as i want but only on the page im on in the friends page

I want the text number to be white, any code for that

and how do i make all the boxes black and not orange

one appers orange still

look here

http://www.profileheaven.com/friends...236806&fpage=2
Stephen1 is offline  
Add Post to del.icio.us
Reply With Quote
Old 10-14-2006, 02:40 AM   #9 (permalink)
Contributing Member
 
bratwebdesign's Avatar
 
Join Date: 04-05-06
Location: Nebraska
Posts: 560
iTrader: 0 / 0%
Latest Blog:
None

bratwebdesign is a splendid one to beholdbratwebdesign is a splendid one to beholdbratwebdesign is a splendid one to beholdbratwebdesign is a splendid one to beholdbratwebdesign is a splendid one to beholdbratwebdesign is a splendid one to beholdbratwebdesign is a splendid one to beholdbratwebdesign is a splendid one to beholdbratwebdesign is a splendid one to beholdbratwebdesign is a splendid one to beholdbratwebdesign is a splendid one to behold
Send a message via MSN to bratwebdesign
Code:
.btn2, .btn2 a, .btn2 a:hover, .btn2on, .btn2on a, .btn2on a:hover { background-color: #000000; }
__________________
Omaha Web Design | Cube Directory

Last edited by bratwebdesign : 10-14-2006 at 02:45 AM.
bratwebdesign is offline  
Add Post to del.icio.us
Reply With Quote
Old 10-14-2006, 04:15 PM   #10 (permalink)
Inactive
 
Join Date: 10-02-06
Posts: 6
iTrader: 0 / 0%
Latest Blog:
None

Stephen1 is liked by many
Still nothing

I added that code at the top of code youv asked me to put in

This is the code I have

#header {
background-image: url(http://img.photobucket.com/albums/v4...Banner-1.gif);
}
#header * {
display: none; /* selects all contents of #header and hides them */
}
#nav .btn a:hover { text-decoration:underline; color: #409FFF;}
}
body,td,th {
color: #000000;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
}
.btn2, .btn2 a, .btn2 a:hover, .btn2on, .btn2on a, .btn2on a:hover {
background-color: #000000;

}
.text2 {
color: #000000
}
.btn2on, .btn2 {
background-color: #000000;
}
body {
background-color: #000000;
text-align: center;
}
a:link {
color: #000000;
text-decoration: none;
}
a:visited {
color: #000000;
text-decoration: none;
}
a:hover {
color: #409FFF;
text-decoration: underline;
}
#nav {
background: #000000;
text-align: center;
display: table; /* displays #nav element as a table */
width: auto; /* resets width to auto */
margin: 0 auto; /* centers the &amp;quot;table&amp;quot; */
}
#main { clear:both; background-color:#000000;
background-repeat:no-repeat; background-position:bottom
left; padding:0 0 96px 8px; width:762px; }


Witch is then giving me this

http://www.profileheaven.com/profile...lientID=236806

http://www.profileheaven.com/friends...lientID=236806

Still nothing

Can you get me more code,

Number one is black with a black one untill you hover and its then light blue

and Number two is grey with a white number two and orange on a hover

I WANT THEM BOTH TO BE BLACK WITH WHITE COLOURS AND LIGHT BLUE HOVERS PLEASE

THANK-YOU

Do you want acsess to my profile heaven account and you can edit it yourself ?

Might be easier, as you seen to know what your doing with all this CSS coding ?

Add me to MSN Messenger - stephenfleming05 [at] hotmail [dot] co [dot] uk

Remove the [at] and [dot] and replace with "@" and "." simples.

Thanks

Last edited by Stephen1 : 10-14-2006 at 04:24 PM. Reason: Had to
Stephen1 is offline  
Add Post to del.icio.us
Reply With Quote
Go Back   Webmaster Forum > Web Development > Web Design Lobby > Coding Forum

Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
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

vB 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
Coding service site listing Trapped V7N Directory Issues 0 10-06-2007 08:09 AM
Coding Help - CSS Based Site WorldwideTrading Coding Forum 2 09-16-2007 06:16 AM
php coding, java coding, webdesign, windows coding... SVB SEO Forum 5 02-24-2004 11:25 AM


Sponsor Links
Get exposure! Get exposure! Find Scripts Web Hosting Directory Get exposure! SEO Blog


All times are GMT -7. The time now is 02:08 PM.
© Copyright 2008 V7 Inc