Runboard.com
Слава Україні!



🙂       Use the black navigation bar to log in or create your account.

 
Redsun9 Profile
Live feed
Blog
Friends
Miscellaneous info

Citizen

Registered: 05-2006
Province: World
Posts: 124
Karma: 2 (+2/-0)
ReplyQuote
posticon Forum List Table is Ok,This Time Topic List Problem.


Lesigner Girl first of all thanks for your great patience for trying to explain important stuffs about css and designs to a clumsy person like me emoticon

First of all after reading your post at rb-extra i put my css these codes to make my forumlist table lines visible.Let me explain you step by step.

Step1:
i put this codes to my css

.ak_fl_forumrow_mouseover_off, .ak_fl_forumrow_mouseover_on { background:#777777; }
.forum_list_table {width:830px;border:2px solid #000000;background-color:#000000}

Step:2
than i have my CSS1 trick open and its color in css is;

.ak_fl_forumrow_mouseover_on { background-color: #999999;cursor: pointer; padding: 5px 5px 5px 5px; border-width: 0px 0px 0px 0px; }
.ak_tl_topicrow_mouseover_on { background-color: #999999; cursor: pointer;}

Step:3
and my colors in "Forum List Layout Options" are like this;
Forum List Table Background Color:#777777
Forum List Table Border Color:#000000

all this 3steps formula worked.and i had my tableline atthe forum list table.Sadly i did everthing for topiclist table but all i see is just a black topic list no tablelines...What can i do for my topiclist table lines become visible?

Thank you again friend.

10/5/2006, 6:48 am Link to this post PM Redsun9 ICQ
 
Lesigner Girl Profile
Live feed
Blog
Friends
Miscellaneous info

Minerva
Head of Runboard staff

Registered: 11-2005
Posts: 9606
Karma: 132 (+147/-15)
ReplyQuote
Re: Forum List Table is Ok,This Time Topic List Problem.


You're very welcome, Redsun, and welcome to the Temple! emoticon

Before moving on to the topic listing, let's go back to the forum listing (main page) for a moment.

In Step 1, you are defining the background color of .ak_fl_forumrow_mouseover_on (the forum name hover) as #777777, but in Step 2 you're redefining the same hover background color as #999999, making the 1st definition null and void.

Also, in Step 3, you are incorrectly defining the table background color (the black undersheet of construction paper) as #777777, when it should be #000000 (black). But you won't see a difference if you fix this, since CSS always overrides the HTML that occurs when you define things in your layout/colors screen. I also don't see where you set your alternate1 and alternate2 background colors, but again, you have already taken care of this in your CSS.

Now for the topic listing, you want to use these classes in your CSS:

.topic_list_table (beneath the cells, causing your "line" color)
.ak_tl_topicrow_mouseover_off (cell when not hovered)
.ak_tl_topicrow_mouseover_on (cell when hovered)

And this box in your layout/colors screen:
Topic List Table Background Color, which should be #000000 (black).
Your border color looks fine.

For your CSS, you can combine forumlist and topiclist attributes like so:

.forum_list_table, .topic_list_table {
  width:830px;border:2px solid #000000;background:#000000;
}
.ak_fl_forumrow_mouseover_off, .ak_fl_topicrow_mouseover_off {
    background:#777777;
}
.ak_fl_forumrow_mouseover_on, .ak_fl_topicrow_mouseover_on {
    background:#999999;
}


You had already taken care of padding elsewhere in your code, and defining a 0 border is unnecessary, so I left those out.

You also currently have this elsewhere in your CSS:

.ak_fl_forumrow_mouseover_off, .ak_fl_forumrow_mouseover_on { background:#777777; }

This is why your hover effect stopped working, because you have both mouseon and mouseoff with the same background color, and this line is located sometime after the new code you have added, making the code above it null and void. You can take this line out completely, as it's covered in the combined code.

Last revised by Lesigner Girl, 10/5/2006, 7:24 am


---
Runboard Knowledge Base
Runboard Support Forums
Find other message boards
10/5/2006, 7:21 am Link to this post PM Lesigner Girl Read Blog
 
Redsun9 Profile
Live feed
Blog
Friends
Miscellaneous info

Citizen

Registered: 05-2006
Province: World
Posts: 124
Karma: 2 (+2/-0)
ReplyQuote
Re: Forum List Table is Ok,This Time Topic List Problem.


i exactly did the things you said lesigner girl.

*did my "Topic List Table Background" Color:#000000 (in topic list layout options)

*erased my mistakes and put the code you told me

.forum_list_table, .topic_list_table {
  width:830px;border:2px solid #000000;background:#000000;
}
.ak_fl_forumrow_mouseover_off, .ak_fl_topicrow_mouseover_off {
    background:#777777;
}
.ak_fl_forumrow_mouseover_off, .ak_fl_topicrow_mouseover_on {
    background:#777777;
}

but no way sadly forum list table lines are ok again but topic list is just black.i just wanna show you in my test board here:
http://com2.runboard.com/bdenemeyeni.f2

i think i will never do it
 emoticon
10/5/2006, 8:14 am Link to this post PM Redsun9 ICQ
 
Lesigner Girl Profile
Live feed
Blog
Friends
Miscellaneous info

Minerva
Head of Runboard staff

Registered: 11-2005
Posts: 9606
Karma: 132 (+147/-15)
ReplyQuote
Re: Forum List Table is Ok,This Time Topic List Problem.


Since you've made your test board membership by approval, I can't get in to see the result of your code. But I am able to see the CSS itself, and you incorrectly have this:

.ak_fl_forumrow_mouseover_off, .ak_fl_topicrow_mouseover_off {
    background:#777777;
}
.ak_fl_forumrow_mouseover_off, .ak_fl_topicrow_mouseover_on {
    background:#777777;
}

With that code, you are:
• defining the mouseOff for forumrow twice,
• not defining mouseOn for forumrow at all,
• defining both mouseOff and mouseOn with the same background color.

If you copy and paste the code instead of trying to type it in, you can make sure to put it in exactly as I've given you in my previous post.

Since that should not make everything black, however, I ran your CSS through the validator and it brought up these errors:

.yukar?dön {

Parse error caused by non-english characters. A parse error will cause other, correct CSS that comes after it to not work correctly, so this is one possible cause for your problem. If you change .yukar?dön to .yukar and change class="___" in your html accordingly, that will take care of that problem.

Wallpaper%20(2).jpg);

The (2) in the file name is causing another parse error, so this is another possible cause for your problem.

{{border:1 px; (line 29)

Another parse error, caused by the extra {.

border:1 px; (line 29)

This won't cause your problem, but there are a couple of things wrong with this. First, you need to omit the space between "1" and "px," as CSS is very particular with the way you need to declare things. Also, you need to change "border" to "border-width" if you are not also adding the style (solid, dashed, dotted, inset, outset, etc) to this definition.

There are more errors, so copy your CSS and paste it into the validator. Do not try to "validate by url" because that method won't work. Some errors will cause other things to show up as errors, so start at the top, correct a few errors, re-copy/paste and run the code again, and keep doing this until all your errors are fixed. If you still have your problem after fixing all the errors, then add my name to the memberlist for your test board and I'll be happy to take a look.

By the way, ignore these errors pertaining to the scrollbar:
Property scrollbar-face-color doesn't exist
The validator considers them errors because it is IE-specific (doesn't work in any other browser except Explorer), but your scrollbar code is fine the way it is. emoticon

---
Runboard Knowledge Base
Runboard Support Forums
Find other message boards
10/5/2006, 5:58 pm Link to this post PM Lesigner Girl Read Blog
 
Redsun9 Profile
Live feed
Blog
Friends
Miscellaneous info

Citizen

Registered: 05-2006
Province: World
Posts: 124
Karma: 2 (+2/-0)
ReplyQuote
Re: Forum List Table is Ok,This Time Topic List Problem.


after all your patience and the headache i gave to you (believe me i tried the things you said)
i need to add you as an admin of my test board lesigner girl.i promise this will be the last headache for you emoticon

thank you again.very very much.
10/5/2006, 9:03 pm Link to this post PM Redsun9 ICQ
 
Lesigner Girl Profile
Live feed
Blog
Friends
Miscellaneous info

Minerva
Head of Runboard staff

Registered: 11-2005
Posts: 9606
Karma: 132 (+147/-15)
ReplyQuote
Re: Forum List Table is Ok,This Time Topic List Problem.


You left out mouseover_off for both the forumrow and the topicrow. This means that when the mouse is OFF these rows, nothing was telling them to be gray.

I didn't go into the layout/colors, but I'm guessing you have #000000 for the rows when they should be gray.


/* COMMENTED OUT SO IT WON'T WORK...
.ak_fl_forumrow_mouseover_on { background-color: #999999;cursor: pointer; padding: 5px 5px 5px 5px; border-width: 0px 0px 0px 0px; }
.ak_tl_topicrow_mouseover_on { background-color: #999999; cursor: pointer;}
... END COMMENT */

/* ADDED BY LESIGNER GIRL */
.ak_fl_forumrow_mouseover_on, .ak_tl_topicrow_mouseover_on {
  background-color: #999999; cursor: pointer;
}
.ak_fl_forumrow_mouseover_off, .ak_tl_topicrow_mouseover_off {
  background-color: #777777; cursor: pointer;
}

/* END ADDITION */


I left your old code in so you can see what you had, but commented it out so it will not work. I also added comments before and after my addition, so you can see exactly which code I added. Of all the code I've posted in this reply, the part I've bolded above is the only part that does anything, because the rest is commented out.

After making these changes, I resigned myself from management at your test board, but if you need me to go in there again, feel free to reinstate me.

Note to everyone: This offer only applies to TEST BOARDS, and PLEASE make sure you have all your code backed up and stored on your computer before doing so. Please do NOT make me an admin at your "real" board without my consent.

---
Runboard Knowledge Base
Runboard Support Forums
Find other message boards
10/5/2006, 9:29 pm Link to this post PM Lesigner Girl Read Blog
 
Redsun9 Profile
Live feed
Blog
Friends
Miscellaneous info

Citizen

Registered: 05-2006
Province: World
Posts: 124
Karma: 2 (+2/-0)
ReplyQuote
Re: Forum List Table is Ok,This Time Topic List Problem.


i'm very very happy right now lesigner girl.how great you are like a real teacher,this time i really and finally solved my problem.thanks a lot soooooo much. emoticon
10/5/2006, 10:39 pm Link to this post PM Redsun9 ICQ
 
Lesigner Girl Profile
Live feed
Blog
Friends
Miscellaneous info

Minerva
Head of Runboard staff

Registered: 11-2005
Posts: 9606
Karma: 132 (+147/-15)
ReplyQuote
Re: Forum List Table is Ok,This Time Topic List Problem.


emoticon You're very welcome, Redsun. emoticon

---
Runboard Knowledge Base
Runboard Support Forums
Find other message boards
10/5/2006, 11:41 pm Link to this post PM Lesigner Girl Read Blog
 


Add to this discussion



You are not logged in (login)
Back To Top

This board's time is GMT.