Runboard.com
Слава Україні!
Lost? Hover on Bookmarks!
Runboard Extra! The Runboard Directory Runboard Knowledge Base

Welcome to Runboard Support, the place to find help with your Runboard user account or message board.

If you can't find the answer you need with our search feature, ask here, and a member of staff will respond to you personally.

Chat room Runboard Knowledge Base (wiki) Search Facebook Twitter

runboard.com       You are not logged in.

Page:  1  2 

 
Nabeela Profile
Live feed
Blog
Friends
Miscellaneous info

Registered user

Registered: 07-2007
Location: Michigan
Posts: 43
Karma: 0 (+0/-0)
Reply | Quote
Centering The Board


Is there a way to center the topics, reply's, forum names/description?

Thank you..

---

2/17/2019, 3:25 am Link to post Email Nabeela   PM Nabeela
 
Joxcenia Profile
Live feed
Blog
Friends
Miscellaneous info

Global Administrator
Runboard staff member

Registered: 11-2005
Location: Whoosher House
Posts: 7810
Karma: 74 (+75/-1)
Reply | Quote
Re: Centering The Board


I only know little about the CSS/HTML, so you will need to wait for Pastor Rick or Lesa to answer your question.




Last edited by Joxcenia, 2/17/2019, 3:43 am


---

2/17/2019, 3:42 am Link to post Email Joxcenia   PM Joxcenia Blog
 
Nabeela Profile
Live feed
Blog
Friends
Miscellaneous info

Registered user

Registered: 07-2007
Location: Michigan
Posts: 43
Karma: 0 (+0/-0)
Reply | Quote
Re:


Joxcenia - Okay and thank you emoticon

---

2/17/2019, 4:18 am Link to post Email Nabeela   PM Nabeela
 
Pastor Rick Profile
Live feed
Blog
Friends
Miscellaneous info

Moderator

Registered: 07-2005
Location: Texas
Posts: 10257
Karma: 272 (+331/-59)
Reply | Quote
Re: Centering The Board


Hi Nabeela,

Yes, it is possible to center the text and links in the forums, topics, and replies. for the forums you follow this format (I am using the Runboard Support board in my CSS examples). This CSS code would center the text in Runboard's "Announcements" Forum.
.forum_list_table > tbody > tr:nth-child(3) > td:nth-child(2) {
  text-align: center;
}
The red number is the line number (or row), and the blue number is the column number I am going to change. You have to target each row (the number in red) in your board layout if you want to have more than one forum affected the same way. For example, let's say I want to target both the "Announcements" and the "FAQ - Read Only" forums, to do so I would add this code to my CSS..forum_list_table > tbody > tr:nth-child(3) > td:nth-child(2),
.forum_list_table > tbody > tr:nth-child(5) > td:nth-child(2) {
  text-align: center;
}
The number in red is the line number (or row) including the forum separators.

    note: You can have 1,000 forums on a Runboard and have separators for each of the forums! I cannot see your message board so I cannot give a complete CSS coding solution for this part of your board's design.

Moving on to the Topics page the format is very similar to the Forums page.
.topic_list_table > tbody > tr:nth-child(2) > td:nth-child(4) {
  text-align: center;
}
For a message board set to display the non-premium default number of topics per page you would put this code in your CSS.
.topic_list_table > tbody > tr:nth-child(2) > td:nth-child(4),
.topic_list_table > tbody > tr:nth-child(3) > td:nth-child(4),
.topic_list_table > tbody > tr:nth-child(4) > td:nth-child(4),
.topic_list_table > tbody > tr:nth-child(5) > td:nth-child(4),
.topic_list_table > tbody > tr:nth-child(6) > td:nth-child(4),
.topic_list_table > tbody > tr:nth-child(7) > td:nth-child(4),
.topic_list_table > tbody > tr:nth-child(8) > td:nth-child(4),
.topic_list_table > tbody > tr:nth-child(9) > td:nth-child(4),
.topic_list_table > tbody > tr:nth-child(10) > td:nth-child(4),
.topic_list_table > tbody > tr:nth-child(11) > td:nth-child(4),
.topic_list_table > tbody > tr:nth-child(12) > td:nth-child(4),
.topic_list_table > tbody > tr:nth-child(13) > td:nth-child(4),
.topic_list_table > tbody > tr:nth-child(14) > td:nth-child(4),
.topic_list_table > tbody > tr:nth-child(15) > td:nth-child(4),
.topic_list_table > tbody > tr:nth-child(16) > td:nth-child(4),
.topic_list_table > tbody > tr:nth-child(17) > td:nth-child(4),
.topic_list_table > tbody > tr:nth-child(18) > td:nth-child(4),
.topic_list_table > tbody > tr:nth-child(19) > td:nth-child(4),
.topic_list_table > tbody > tr:nth-child(20) > td:nth-child(4),
.topic_list_table > tbody > tr:nth-child(21) > td:nth-child(4) {
  text-align: center;
}


Last (and far and away the easiest) is the post names. To center align the text names of a post you add this code to your custom CSS:.postlistpostname {
  text-align: center;
}


I hope this post helps you in creating your board's design. I have tried to include enough information to make it possible for one of the global people to help should you have questions and neither Lesigner Girl or I am around. emoticon

---

Advertise Boards On TRDConceptsDE
2/17/2019, 3:00 pm Link to post Email Pastor Rick   PM Pastor Rick Blog
 
Nabeela Profile
Live feed
Blog
Friends
Miscellaneous info

Registered user

Registered: 07-2007
Location: Michigan
Posts: 43
Karma: 0 (+0/-0)
Reply | Quote
Re:


Thank you so Pastor Rick for helping me. emoticon

---

2/17/2019, 5:19 pm Link to post Email Nabeela   PM Nabeela
 
Nabeela Profile
Live feed
Blog
Friends
Miscellaneous info

Registered user

Registered: 07-2007
Location: Michigan
Posts: 43
Karma: 0 (+0/-0)
Reply | Quote
Re:


Not sure what I'm doing wrong but I can't get it to work. I did add this code and it worked but the others I can't get working.

Working - .topic_list_table > tbody > tr:nth-child(2) > td:nth-child(4), 

.topic_list_table > tbody > tr:nth-child(3) > td:nth-child(4),
.topic_list_table > tbody > tr:nth-child(4) > td:nth-child(4),
.topic_list_table > tbody > tr:nth-child(5) > td:nth-child(4),
.topic_list_table > tbody > tr:nth-child(6) > td:nth-child(4),
.topic_list_table > tbody > tr:nth-child(7) > td:nth-child(4),
.topic_list_table > tbody > tr:nth-child(8) > td:nth-child(4),
.topic_list_table > tbody > tr:nth-child(9) > td:nth-child(4),
.topic_list_table > tbody > tr:nth-child(10) > td:nth-child(4),
.topic_list_table > tbody > tr:nth-child(11) > td:nth-child(4),
.topic_list_table > tbody > tr:nth-child(12) > td:nth-child(4),
.topic_list_table > tbody > tr:nth-child(13) > td:nth-child(4),
.topic_list_table > tbody > tr:nth-child(14) > td:nth-child(4),
.topic_list_table > tbody > tr:nth-child(15) > td:nth-child(4),
.topic_list_table > tbody > tr:nth-child(16) > td:nth-child(4),
.topic_list_table > tbody > tr:nth-child(17) > td:nth-child(4),
.topic_list_table > tbody > tr:nth-child(18) > td:nth-child(4),
.topic_list_table > tbody > tr:nth-child(19) > td:nth-child(4),
.topic_list_table > tbody > tr:nth-child(20) > td:nth-child(4),
.topic_list_table > tbody > tr:nth-child(21) > td:nth-child(4) {
  text-align: center;
}


Here is my CSS and tell me what is wrong. Please and thank you for the help. emoticon

/* MARBLING MADNESS: A SIDEBAR SKIN */ 

/* DEFINES BODY and COLOR FONT */
body {
background-color:#454545;
font-family:verdana,arial,tahoma;
font-size:11px
}

/* DEFINES STRUCTURE OF LAYOUT */
#shell {
width:95%;
margin:0 auto
}

#offset {
margin-left:-165px;
width:100%;
float:right
}

#container {
margin-left:170px
}

#nav {
width:165px;
float:left;
margin:0
}

#nav img {
max-width:155px
}

#header {
margin:1px;
margin-bottom:.5em;
margin-top:.5em;
border:4px double #000;
background-color:#CACAC5;
background-image:url(http://rbbt.net/skins/wizard/marble26.png);
color:#361D0A;
height:110px;
text-align:center
}

#header h1 {
font-size:3.3em;
line-height:70px;
vertical-align:middle;
text-align:center;
margin:0
}

.container {
margin:1px;
border:4px double #000;
background:linear-gradient(27deg,#535353 5px,transparent 5px) 0 5px,linear-gradient(207deg,#505050 5px,transparent 5px) 10px 0,linear-gradient(27deg,#505050 5px,transparent 5px) 0 10px,linear-gradient(207deg,#545454 5px,transparent 5px) 10px 5px,linear-gradient(90deg,#515151 10px,transparent 10px),linear-gradient(#5d5d5d 25%,#5a5a5a 25%,#5a5a5a 50%,transparent 50%,transparent 75%,#545454 75%,#545454);
background-color:#525252;
background-size:10px 10px
}

.navlist {
text-align:center;
font-size:14px;
background:#CACAC5;
background-image:url(http://rbbt.net/skins/wizard/marble26.png);
border:4px double #000;
margin-bottom:.5em
}

.navlist h2 {
color:#dedede;
text-shadow:1px 1px #374B54;
font-size:14px;
margin:1px;
background:linear-gradient(to bottom,#0f0000 0%,#4a413e 4%,#817d7b 77%,#847f7b 95%);
border:1px solid #000;
text-align:center;
line-height:23px
}

#nav ul,#nav li {
margin:0;
padding:0;
list-style:none;
display:inline
}

#nav ul a:link,#nav ul a:visited,#nav ul a:active {
text-decoration:none;
display:block;
border:1px solid #4C4340;
margin:1px;
padding:2px
}

#nav ul a:hover {
text-decoration:none;
background:#4a4a4a;
color:#dedede
}

/* BEGIN CODING FOR MAIN PAGE "HOME" */
.ak_msg_master_table {
border:0;
width:100%
}

.locationboard {
font-family:verdana,arial,helvetica,sans-serif;
font-size:18px;
font-weight:700
}

/* DEFINES MISC-OPT-BAR AND WHO'S ONLINE */
.ak_miscoptbar_table {
background-color:#CACAC5;
background-image:url(http://rbbt.net/skins/wizard/marble26.png);
background-repeat:repeat-x;
width:100%;
padding:4px;
border:1px solid #4C4340;
border-top:1px solid #6F6F6F;
margin-top:-15px
}

.miscoptbar a:hover {
background:#CFCEC8
}

.forumlistwhosonlinetable {
margin-top:-15px;
width:100%;
border:1px solid #4C4340;
border-top:1px solid #6F6F6F;
background-color:#CACAC5;
background-image:url(http://rbbt.net/skins/wizard/marble26.png);
background-repeat:repeat-x;
color:#361D0A
}

.forumlistwhosonline, .forumlistwhosonlinetd {
padding:6px;
font-size:11px;
font-weight:700
}

/* SIMPLE SEARCH SETTINGS */
/* TITLE FOR SIMPLE SEARCH AND SEARCH STRING */
#container > div > center > table > tbody > tr > td > center,#container > div > center > table > tbody > tr > td > form > table > tbody > tr:nth-child(1) > td:nth-child(1) {
color:#dedede;
font-size:14px
}

/* LINK BACK DISPLAY */
#container > div > center > table > tbody > tr > td > a:link,#container > div > center > table > tbody > tr > td > a:visited,#container > div > center > table > tbody > tr > td > a:active {
color:#dedede;
font-size:14px
}

/* LINK BACK HOVER */
#container > div > center > table > tbody > tr > td > a:hover {
color:#cab5b5;
font-size:14px
}

/* DEFINES THE FORUMS TABLE AREA */
.forum_list_table {
width:100%;
border:1px solid #4C4340;
background-color:#4C4340
}

/* DEFINES BACKGROUND IN FORUM AND TOPIC LIST */
.ak_fl_forumrow_mouseover_on,.ak_tl_topicrow_mouseover_on {
background-color:#4a4a4a;
background-image:url(http://rbbt.net/skins/wizard/marble26.png);
padding:5px
}

.ak_fl_forumrow_mouseover_off,.ak_tl_topicrow_mouseover_off {
background-color:#545454;
background-image:url(http://rbbt.net/skins/wizard/marble26.png);
padding:5px
}

span.forumlistnewswitch, span.forumlistnonewswitch, span.topiclistnewswitch, span.topiclistnonewswitch {
font-family: verdana,arial,helvetica,sans-serif;
font-size: 13px;
font-weight: 700;
color:#336699
}

/* DEFINES THE BOARDS SEPARATOR IMAGES */
.ak_msgform_poll_options_head_td, .ak_msg_seememberlist_head_user_td, .ak_msg_seememberlist_head_date_td, .ak_msg_seememberlist_head_im_td, .ak_msg_seememberlist_head_pm_td, .ak_msg_seememberlist_head_email_td, .ak_poll_table_header, .forum_list_header_newtext_td, .forum_list_header_forum_td, .forum_list_header_topics_td, .forum_list_header_posts_td, .forum_list_header_lastpost_td, .forumlist_separator_td, .topic_list_header_modbox_td, .topic_list_header_newtext_td, .topic_list_header_posticon_td, .topic_list_header_topic_td, .topic_list_header_startedby_td, .topic_list_header_replies_td, .topic_list_header_views_td, .topic_list_header_lastpost_td, .msgform_clickable_smiley_box_h, .ak_subject_posticon_head_td {
color: #dedede;
height: 25px;
background: linear-gradient(to bottom,#0f0000 0%,#4a413e 4%,#817d7b 77%,#847f7b 95%);
padding: 0 3px;
border: 1px solid #4C4340;
}

/* DEFINE FORUM NAMES */
.forumlistforumname {
font-family:verdana,arial,helvetica,sans-serif;
font-size:16px;
font-weight:700
}

/* FORUM DESCRIPTION SETTINGS */
.forumlistdescription {
font-family:verdana,arial,helvetica,sans-serif;
font-size:12px
}

/* FORUM NUMBER OF TOPICS, POSTS, AND LAST POST SETTINGS */
.forumlistnumtopics,.forumlistnumposts {
font-family:verdana,arial,helvetica,sans-serif;
font-size:14px;
font-weight:700;
color:#000
}

.forumlistlastpost {
font-family:verdana,arial,helvetica,sans-serif;
font-size:14px;
color:#000
}

/* DEFINES WIDTH OF ADMIN, MOD, AND BOARD STATS TABLE (NOT LISTED ON RB's CHARTS) */
#container>div>center>table>tbody>tr>td>center:nth-child(7)>table:nth-child(5) {
width:100%
}

/* ADMINISTRATORS AND MODERATORS SETTINGS */
.forumlistadministrators,.forumlistmoderators {
font-family:verdana,arial,helvetica,sans-serif;
font-size:11px;
font-weight:700;
color:#CFCEC9
}

.forumlistadministrators a:link,.forumlistmoderators a:link,.forumlistadministrators a:active,.forumlistmoderators a:active,.forumlistadministrators a:visited,.forumlistmoderators a:visited {
color:#dedede
}

.forumlistadministrators a:hover,.forumlistmoderators a:hover {
color:#cab5b5
}

/* DEFINES BOARD STATS TABLE */
.ak_fl_boardstats_master_table {
width:100%
}

.forumlistboardstatstable {
width:100%;
border:1px solid #4C4340;
background-color:#4a4a4a;
  text-align: center;
}

.forumlistboardstatsheader {
height:25px;
background:linear-gradient(to bottom,#0f0000 0%,#4a413e 4%,#817d7b 77%,#847f7b 95%);
padding:0;
border:1px solid #4C4340;
color:#dedede;
font-size:14px;
padding-left:3px
}

.forumlistboardstatsdata {
background-color:#4a4a4a;
border:0;
font-size:11px;
color:#dedede;
padding:3px
}

.forumlistboardstatsdata a:link,.forumlistboardstatsdata a:visited,.forumlistboardstatsdata a:active {
color:#dedede
}

.forumlistboardstatsdata a:hover {
color:#cab5b5
}

.forumlistboardstatstitle {
background-color:#CACAC5;
background-image:url(http://rbbt.net/skins/wizard/marble26.png);
border:1px solid #4C4340;
font-size:14px;
color:#361d0a;
padding:3px
}

/* MEMBERLIST AND TOPIC LIST TABLE SETTINGS */
.ak_msg_seememberlist_table,.topic_list_table {
width:100%;
border:1px solid #4C4340;
background-color:#4C4340
}

/* DEFINES LOCATION BACKGROUND LINKS */
.ak_msg_loclinks {
background-color:#CACAC5;
background-image:url(http://rbbt.net/skins/wizard/marble26.png);
background-repeat:repeat-x;
width:100%;
padding:4px;
border:1px solid #4C4340
}

/* DEFINES LINK BAR AT THE BOTTOM */
.msg_foot_linkbar {
font-size:10px;
text-align:center;
margin-top:2px;
color:#dedede;
border:1px solid #6f6f6f;
padding:5px;
width:85%;
margin-bottom:1em;
margin:0 auto
}

.msg_foot_linkbar a:link,.msg_foot_linkbar a:active,.msg_foot_linkbar a:visited {
color:#dedede
}

.msg_foot_linkbar a:hover {
color:#cab5b5
}

/* DEFINES BOTTOM INFO LINE */
.bottominfoline {
font-family:verdana,arial,helvetica,sans-serif;
font-size:10px;
color:#dedede;
margin:0 auto;
margin-top:3px;
text-align:center
}

.bottominfoline a:link,.bottominfoline a:active,.bottominfoline a:visited {
color:#dedede
}

.bottominfoline a:hover {
color:#cab5b5
}

/* TOPIC LIST PAGE UNIQUE SETTINGS */
.locationforum {
font-family:verdana,arial,helvetica,sans-serif;
font-size:16px;
font-weight:700
}

.topiclisttopicname {
font-family:verdana,arial,helvetica,sans-serif;
font-size:15px;
font-weight:700
}

span.topicliststartedby, span.topiclistreplies, span.topiclistviews {
font-family: verdana,arial,helvetica,sans-serif;
font-size: 14px;
font-weight: 700;
color: #361D0A
}

span.topiclistlastpost {
font-family: verdana,arial,helvetica,sans-serif;
font-size: 14px;
font-weight: 400;
color: #361D0A
}

.topiclistlastpost a[href *=offset] {
font: 25px verdana,arial,helvetica,sans-serif;
text-shadow: #336 1px 1px 1px;
line-height: 10px
}

/* CLASS TO DEFINE TOPIC PREVIEW IF DESIRED: .ak_msg_topic_preview_div */
/* NEW TOPIC AND REPLY PSUEDO BUTTON SETTINGS */
.topiclistpostnewtopic,.postlistaddareply {
border:1px solid #6f6f6f;
border-radius:2px;
padding:9px 0
}

span.topiclistpostnewtopic,span.postlistaddareply {
background:linear-gradient(to bottom,#0f0000 0%,#4a413e 4%,#817d7b 77%,#847f7b 95%);
background-size:cover;
font-family:verdana,arial,helvetica,sans-serif;
font-size:1px;
font-weight:400
}

/* DEFINES POST NEW TOPIC AND ADD REPLY BOXES */
.topiclistpostnewtopic a:link,.topiclistpostnewtopic a:visited,.topiclistpostnewtopic a:active,.postlistaddareply a:link,.postlistaddareply a:visited,.postlistaddareply a:active {
padding:5px 15px;
/* top right bottom left */
font-size:14px;
color:#dedede;
background:linear-gradient(to bottom,#0f0000 0%,#4a413e 4%,#817d7b 77%,#847f7b 95%);
background-position:center 0;
border:1px solid #4C4340
}

.topiclistpostnewtopic a:hover,.postlistaddareply a:hover {
color:#cab5b5
}

/* TOPIC MESSAGES (THREADS) LIST SETTINGS */
/* DEFINES BOXED PAGE NUMBERS */
span.pageindex,span.pageindexvalue a {
font-family:verdana,arial,helvetica,sans-serif;
font-size:12px;
font-weight:700;
color:#CFCFCf
}

span.pageindexvaluenow {
font-size:13px;
font-weight:700;
color:#4c4340;
background-color:#D1CFC8;
border:1px solid #4C4340
}

.topic_list_table span.pageindex,.topic_list_table span.pageindexvalue a {
font-family:verdana,arial,helvetica,sans-serif;
font-size:12px;
font-weight:400;
color:#565656
}

.topic_list_table span.pageindexvaluenow {
font-size:13px;
font-weight:700;
color:#555
}

/* TOPIC MESSAGE LIST DISPLAY SETTINGS */
.ak_msg_post_master_table {
border:1px solid #2F414F;
border-top:1px solid #6F6F6F;
border-bottom:1px solid #6f6f6f;
background-color:#4a4a4a;
width:100%;
margin-bottom:5px
}

.ak_msg_post_master_table td {
border:1px solid #2f414f
}

/* TOPIC MESSAGE LEFT SIDE (THE POSTER) SETTINGS */
.postlistuserblock {
background:linear-gradient(to bottom,#4a4a4a 0%,#243540 98%,#233540 100%)
}

span.postlistusername a {
color:#361D0A
}

span.postlistusertitle font {
color: #cc0000;
}

span.postlistusertype, span.postlistregistered, span.postlistregisteredvalue, span.postlistlocation, span.postlistlocationvalue, span.postlistposts, span.postlistpostsvalue, span.postlist_karma, span.postlist_karma_value {
font-family: verdana,arial,helvetica,sans-serif;
font-size: 11px;
}

span.postlistedit, span.postlistreply, span.postlistdelete, span.postlistquote {
font-family: verdana,arial,helvetica,sans-serif;
font-size: 12px;
font-weight: 700;
}

.postlistdate_td, span.postlistdate {
font-family:verdana,arial,helvetica,sans-serif;
font-size:12px;
color:#C7C6C1;
background:linear-gradient(to top,#4a4a4a 0%,#243540 98%,#233540 100%)
}

/* TOPIC MESSAGE RIGHT SIDE (MESSAGE AND POST-CONTACT) SETTINGS */
span.postlistpostname {
font-family:verdana,arial,helvetica,sans-serif;
font-size:14px;
font-weight:700;
color:#dedede
}

span.postlisteditedby,span.postlisteditedbyvalue {
font-family:verdana,arial,helvetica,sans-serif;
font-size:10px
}

span.postlisteditedbyvalue {
color:#cab5b5
}

/* DEFINES FONT SIZE AND COLORS FOR TOPIC FORUM AND POST LISTS */
span.postlistpostbody {
color:#dedede
}

span.postlistpostbody {
font-family:verdana,arial,helvetica,sans-serif;
font-size:14px
overflow:auto;
overflow-wrap:break-word;
word-break:break-word;
word-break: break-all;
min-width:0;
}

.postlistpostblock {
 overflow:auto;
 overflow-wrap:break-word;
 word-break:break-word;
 word-break: break-all;
 min-width:0;
}

span.postlistpostbody a:link, span.postlistpostbody a:visited, span.postlistpostbody a:active {
color: ##ffcccc
}

span.postlistpostbody a:hover {
color: #cab5b5
}

span.postlistsendpm,span.postlistsendicq,span.postlistsendaim,span.postlistsendmsn,span.postlistsendyahoo,span.postlistblog,span.postlist_karma_applaud,span.postlist_karma_smite,span.share_menu,span.postlist_link_to_post {
font-family:verdana,arial,helvetica,sans-serif;
font-size:11px;
background-color:#505050;
padding:2px
}

span.postlist_link_to_post,span.postlist_link_to_post a {
padding-right:1px;
margin-right:0;
border:0
}

span.postlistsendpm a,span.postlistsendicq a,span.postlistsendaim a,span.postlistsendmsn a,span.postlistsendyahoo a,span.postlistblog a,span.postlist_karma_applaud a,span.postlist_karma_smite a,span.share_menu a,span.postlist_link_to_post a {
font-family:verdana,arial,helvetica,sans-serif;
font-size:11px;
color:#C7C6C1;
background-color:#505050;
padding:2px
}

/* DEFINES BACK TO TOP LOCATION AND LINK */
#footer {
clear:both;
text-align:center;
padding:2px;
margin-bottom:.5em
}

.backtotop {
display:block;
margin:0 auto;
background:linear-gradient(to bottom,#0f0000 0%,#4a413e 4%,#817d7b 77%,#847f7b 95%);
border:1px solid #4C4340;
width:100px;
height:25px;
line-height:25px;
vertical-align:middle;
font-size:14px
}

#footer a:link,#footer a:active {
color:#dedede
}

#footer a:hover {
color:#cab5b5
}

blockquote {
font-size:14px;
border:1px solid #689;
background-color:#CCC8C1;
background-image:url(http://rbbt.net/skins/wizard/marble26.png);
color:#000;
width:95%;
margin:0 auto
}

blockquote hr {
display:none
}

hr {
height:0;
width:100%;
border:none;
border-bottom:1px ridge #6F6F6F
}

.postlistpostbody pre {
font-size: 14px;
overflow: auto;
overflow-wrap: break-word;
word-break: break-word;
width: auto;
border: 1px solid #689
}

.postlistpostbody img {
max-width:550px;
width:expression(this.width>550?550:true);
}

.postlistpostbody iframe {
width: 480px;
height: 385px;
}

.ak_msg_post_signature_block {
color:#dedede;
font-size:12px
}

.ak_msg_post_signature_block a:link,.ak_msg_post_signature_block a:visited,.ak_msg_post_signature_block a:active {
color:#dedede
}

/* DEFINES COLORS AND IMAGES IN MESSAGE AREA */
.ak_msgform_master_table {
background:#4a4a4a;
border:1px solid #4C4340;
background-image:url(http://www.rbbt.net/skins/background/marb078.jpg)
}

.ak_msgform_master_table td {
border:0;
color:#dedede
}

.ak_msgform_master_table input {
border:1px solid #4C4340
}

.ak_msgform_newtopic_submit_button, .ak_msgform_newtopic_preview_button, .ak_msgform_postreply_submit_button, .ak_msgform_postreply_preview_button, .ak_msgform_editpost_submit_button, .ak_msgform_editpost_preview_button {
border: 1px solid #4C4340;
height: 20px;
background: linear-gradient(to bottom,#0f0000 0%,#4a413e 4%,#817d7b 77%,#847f7b 95%);
color: #dedede;
font-size: 15px
}

.qcode_bar_but {
font-size:14px;
border:1px solid #4C4340;
color:#dedede;
height:20px;
background-color:#4F4644;
background:linear-gradient(to bottom,#0f0000 0%,#4a413e 4%,#817d7b 77%,#847f7b 95%);
margin-top:2px;
padding-left:5px;
padding-right:5px
}

.ak_msgform_subject_left_td,.ak_msgform_message_left_td {
font-size: 14px;
}

.ak_msgform_subject_right_td input,.ak_msgform_message_right_td textarea {
background-color:#CACAC5;
background-image:url(http://rbbt.net/skins/wizard/marble26.png);
color:#000;
width:340px;
padding-left:3px;
font-size:14px
}

/* NOTIFY ME (HELP) LINK */
#container>div>center>table>tbody>tr>td>center>table>tbody>tr:nth-child(1)>td:nth-child(1)>table>tbody>tr:nth-child(8)>td>a {
color:#dedede
}

#container>div>center>table>tbody>tr>td>center>table>tbody>tr:nth-child(1)>td:nth-child(1)>table>tbody>tr:nth-child(8)>td>a:hover {
color:#cab5b5
}

.ak_msgform_poll_options_table {
border:1px solid #4C4340
}

.ak_msgform_poll_options_right_td input {
background-color:#CACAC5;
background-image:url(http://rbbt.net/skins/wizard/marble26.png);
padding-top:2px;
padding-bottom:2px;
margin:2px;
font-size:11px;
color:#000;
border:1px solid #4C4340
}

/* DEFINES POLL TABLE COLORS */
#container>div>center>table>tbody>tr>td>center>table>tbody>tr:nth-child(1)>td:nth-child(1)>table>tbody>tr:nth-child(12)>td>a {
color:#f7efe8
}

.ak_poll_table {
font-size: 13px;
color: #123;
text-align: center;
border: 1px solid #4C4340;
background: #CACAC5 url(http://rbbt.net/skins/wizard/marble26.png);
margin-bottom: 5px;
}

.ak_poll_table_header {
height:22px;
padding:0 25px;
font-size:13px
}

.ak_poll_table_header br {
display:none
}

.ak_poll_table_header a {
padding-left:12px
}

.ak_poll_table_button_cell input {
background-color:#4F4644;
border:1px solid #4C4340;
height:22px;
background:linear-gradient(to bottom,#0f0000 0%,#4a413e 4%,#817d7b 77%,#847f7b 95%);
color:#dedede;
font-size:11px
}

.ak_poll_table_header, .ak_poll_table_option_lcell1, .ak_poll_table_option_lcell2, .ak_poll_table_option_rcell1, .ak_poll_table_option_rcell2, .ak_poll_table_option_gcell1, .ak_poll_table_option_gcell2 {
font-size: 14px;
color: #361D0A
}

.ak_poll_table td {
border:0
}

.ak_poll_table_option_rcell1 input,.ak_poll_table_option_rcell2 input {
border:0
}

.ak_poll_table_viewres_cell {
font-weight:700;
font-size:11px
}

.ak_poll_table_option_gback1 {
background-color:#689
}

.ak_poll_table_option_gback2 {
background-color:#689
}

.ak_poll_table_header,.ak_poll_table_header a {
color:#dedede
}

.ak_poll_table_header a:hover {
color:#cab5b5
}

.ak_msgform_poll_options_head_td {
color:#dedede
}

.ak_poll_table_stats_cell {
font-size: 12px;
}

/* DEFINES POST ICONS AND SMILEY COLORS */
.ak_subject_posticon_table {
padding:0;
text-align:center;
color:#dedede;
font-size:11px;
border:1px solid #4C4340;
background-color:#4a4a4a;
margin-bottom:5px
}

.ak_subject_posticon_head_td {
text-align:center;
font-size:11px
}

.msgform_clickable_smiley_box_h {
padding-left:11px;
padding-right:10px;
font-size:11px;
border:1px solid #4C4340;
background-color:#4a4a4a;
color:#dedede;
line-height:23px
}

.msgform_clickable_smiley_box_b {
margin-top:8px;
text-align:center
}

.msgform_clickable_smiley_box_b,.msgform_clickable_smiley_box_b_td,.msgform_clickable_smiley_box_b td {
border:0
}

/* DEFINES BACKGROUND IN POST LIST */
.ak_msg_post_table {
padding-left: 3px;
background-image: url(http://rbbt.net/skins/wizard/marble26.png);
background-color: #CACAC5;
border: 1px solid #4C4340;
color: #361D0A;
}

/* DEFINES MEMBER LIST COLORS, SIZE, AND LINKS */
.ak_msg_seememberlist_table {
font-size:12px
}

.ak_msg_seememberlist_table td {
border:3px double #4c4340
}

.ak_msg_seememberlist_head_user_td,.ak_msg_seememberlist_head_im_td,.ak_msg_seememberlist_head_pm_td,.ak_msg_seememberlist_head_email_td {
color:#dedede;
font-size:12px;
border:1px solid #4C4340;
background-color:#4a4a4a;
padding-left:5px
}

.ak_msg_seememberlist_head_date_td a:link,.ak_msg_seememberlist_head_date_td a:visited,.ak_msg_seememberlist_head_date_td a:active {
padding-left:5px;
font-weight:700;
color:#dedede
}

.ak_msg_seememberlist_head_date_td a:hover {
padding-left:5px;
font-weight:700;
color:#cab5b5
}

.ak_msg_seememberlist_user_td1,.ak_msg_seememberlist_user_td2,.ak_msg_seememberlist_date_td1,.ak_msg_seememberlist_date_td2,.ak_msg_seememberlist_im_td1,.ak_msg_seememberlist_im_td2,.ak_msg_seememberlist_pm_td1,.ak_msg_seememberlist_pm_td2,.ak_msg_seememberlist_email_td1,.ak_msg_seememberlist_email_td2 {
background:#CACAC5 url(http://rbbt.net/skins/wizard/marble26.png);
padding:5px;
border-width:0;
font-size:12px
}

.ak_msg_seememberlist_showing {
font-family:verdana,arial,helvetica,sans-serif;
font-size:12px;
font-weight:700;
color:#dedede
}

#memberlist_link_back_to_board {
color:#dedede
}

/* MISCELLANEOUS SETTINGS */
/* PREVENTS BORDERS ON IMAGE LINKS */
img {
border:0
}

/* BOTTOM RB LINKS */
.msg_foot_linkbar {
font-size:10px;
text-align:center;
margin-top:2px;
border:1px solid #6f6f6f;
padding:5px;
width:85%;
margin-bottom:1em
}

.msg_foot_linkbar a {
margin:1em
}

a[href$=linktous]:after {
content:' (Runboard)'
}

a[href$=blogs]+a:after {
content:none
}

/* QUICK REPLY BY LESIGNER GIRL */
#qr {
    width: 650px;
    height: 360px;
    display: block;
    margin: 2em auto -2em auto;
    border: 0;
text-align: center;
}

.topic_list_table > tbody > tr:nth-child(2) > td:nth-child(4),
.topic_list_table > tbody > tr:nth-child(3) > td:nth-child(4),
.topic_list_table > tbody > tr:nth-child(4) > td:nth-child(4),
.topic_list_table > tbody > tr:nth-child(5) > td:nth-child(4),
.topic_list_table > tbody > tr:nth-child(6) > td:nth-child(4),
.topic_list_table > tbody > tr:nth-child(7) > td:nth-child(4),
.topic_list_table > tbody > tr:nth-child(8) > td:nth-child(4),
.topic_list_table > tbody > tr:nth-child(9) > td:nth-child(4),
.topic_list_table > tbody > tr:nth-child(10) > td:nth-child(4),
.topic_list_table > tbody > tr:nth-child(11) > td:nth-child(4),
.topic_list_table > tbody > tr:nth-child(12) > td:nth-child(4),
.topic_list_table > tbody > tr:nth-child(13) > td:nth-child(4),
.topic_list_table > tbody > tr:nth-child(14) > td:nth-child(4),
.topic_list_table > tbody > tr:nth-child(15) > td:nth-child(4),
.topic_list_table > tbody > tr:nth-child(16) > td:nth-child(4),
.topic_list_table > tbody > tr:nth-child(17) > td:nth-child(4),
.topic_list_table > tbody > tr:nth-child(18) > td:nth-child(4),
.topic_list_table > tbody > tr:nth-child(19) > td:nth-child(4),
.topic_list_table > tbody > tr:nth-child(20) > td:nth-child(4),
.topic_list_table > tbody > tr:nth-child(21) > td:nth-child(4) {
  text-align: center;
}


---

2/17/2019, 7:27 pm Link to post Email Nabeela   PM Nabeela
 
Pastor Rick Profile
Live feed
Blog
Friends
Miscellaneous info

Moderator

Registered: 07-2005
Location: Texas
Posts: 10257
Karma: 272 (+331/-59)
Reply | Quote
Re: Centering The Board


For the post names you change this code:

/* TOPIC MESSAGE RIGHT SIDE (MESSAGE AND POST-CONTACT) SETTINGS */
span.postlistpostname {
font-family:verdana,arial,helvetica,sans-serif;
font-size:14px;
font-weight:700;
color:#dedede
}


to read like this:

/* TOPIC MESSAGE RIGHT SIDE (MESSAGE AND POST-CONTACT) SETTINGS */
span.postlistpostname {
font-family:verdana,arial,helvetica,sans-serif;
font-size:14px;
font-weight:700;
text-align: center;
color:#dedede;
}


I don't see any of the CSS codes I mentioned for the forums.

Last edited by Pastor Rick, 2/17/2019, 9:08 pm


---

Advertise Boards On TRDConceptsDE
2/17/2019, 9:07 pm Link to post Email Pastor Rick   PM Pastor Rick Blog
 
Nabeela Profile
Live feed
Blog
Friends
Miscellaneous info

Registered user

Registered: 07-2007
Location: Michigan
Posts: 43
Karma: 0 (+0/-0)
Reply | Quote
Re:


Pastor Rick - Thank you. I'm using the CSS from the Marbling Madness theme at my board right now. That is the CSS I copied and pasted from the Skin's forum.

---

2/17/2019, 9:20 pm Link to post Email Nabeela   PM Nabeela
 
Pastor Rick Profile
Live feed
Blog
Friends
Miscellaneous info

Moderator

Registered: 07-2005
Location: Texas
Posts: 10257
Karma: 272 (+331/-59)
Reply | Quote
Re: Centering The Board


I recognized the CSS coding as some of mine and Wizard3's CSS coding work. emoticon

Thank you for choosing one of our skins to work with, in the creation of your Runboard.

Current CSS Coding (with the updates I can change w/o access)
/* MARBLING MADNESS: A SIDEBAR SKIN */

/* DEFINES BODY and COLOR FONT */

body {
  background-color: #454545;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 11px;
}
/* DEFINES STRUCTURE OF LAYOUT */

#shell {
  width: 95%;
  margin: 0 auto;
}
#offset {
  margin-left: -165px;
  width: 100%;
  float: right;
}
#container {
  margin-left: 170px;
}
#nav {
  width: 165px;
  float: left;
  margin: 0;
}
#nav img {
  max-width: 155px;
}
#header {
  margin: 1px;
  margin-bottom: .5em;
  margin-top: .5em;
  border: 4px double #000;
  background-color: #CACAC5;
  background-image: url(http://rbbt.net/skins/wizard/marble26.png);
  color: #361D0A;
  height: 110px;
  text-align: center;
}
#header h1 {
  font-size: 3.3em;
  line-height: 70px;
  vertical-align: middle;
  text-align: center;
  margin: 0;
}
.container {
  margin: 1px;
  border: 4px double #000;
  background: linear-gradient(27deg, #535353 5px, transparent 5px) 0 5px, linear-gradient(207deg, #505050 5px, transparent 5px) 10px 0, linear-gradient(27deg, #505050 5px, transparent 5px) 0 10px, linear-gradient(207deg, #545454 5px, transparent 5px) 10px 5px, linear-gradient(90deg, #515151 10px, transparent 10px), linear-gradient(#5d5d5d 25%, #5a5a5a 25%, #5a5a5a 50%, transparent 50%, transparent 75%, #545454 75%, #545454);
  background-color: #525252;
  background-size: 10px 10px;
}
.navlist {
  text-align: center;
  font-size: 14px;
  background: #CACAC5;
  background-image: url(http://rbbt.net/skins/wizard/marble26.png);
  border: 4px double #000;
  margin-bottom: .5em;
}
.navlist h2 {
  color: #dedede;
  text-shadow: 1px 1px #374B54;
  font-size: 14px;
  margin: 1px;
  background: linear-gradient(to bottom, #0f0000 0%, #4a413e 4%, #817d7b 77%, #847f7b 95%);
  border: 1px solid #000;
  text-align: center;
  line-height: 23px;
}
#nav ul, #nav li {
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline;
}
#nav ul a:link, #nav ul a:visited, #nav ul a:active {
  text-decoration: none;
  display: block;
  border: 1px solid #4C4340;
  margin: 1px;
  padding: 2px;
}
#nav ul a:hover {
  text-decoration: none;
  background: #4a4a4a;
  color: #dedede;
}
/* BEGIN CODING FOR MAIN PAGE "HOME" */

.ak_msg_master_table {
  border: 0;
  width: 100%;
}
.locationboard {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 18px;
  font-weight: 700;
}
/* DEFINES MISC-OPT-BAR AND WHO'S ONLINE */

.ak_miscoptbar_table {
  background-color: #CACAC5;
  background-image: url(http://rbbt.net/skins/wizard/marble26.png);
  background-repeat: repeat-x;
  width: 100%;
  padding: 4px;
  border: 1px solid #4C4340;
  border-top: 1px solid #6F6F6F;
  margin-top: -15px;
}
.miscoptbar a:hover {
  background: #CFCEC8;
}
.forumlistwhosonlinetable {
  margin-top: -15px;
  width: 100%;
  border: 1px solid #4C4340;
  border-top: 1px solid #6F6F6F;
  background-color: #CACAC5;
  background-image: url(http://rbbt.net/skins/wizard/marble26.png);
  background-repeat: repeat-x;
  color: #361D0A;
}
.forumlistwhosonline, .forumlistwhosonlinetd {
  padding: 6px;
  font-size: 11px;
  font-weight: 700;
}
/* SIMPLE SEARCH SETTINGS */

/* TITLE FOR SIMPLE SEARCH AND SEARCH STRING */

#container>div>center>table>tbody>tr>td>center, #container>div>center>table>tbody>tr>td>form>table>tbody>tr:nth-child(1)>td:nth-child(1) {
  color: #dedede;
  font-size: 14px;
}
/* LINK BACK DISPLAY */

#container>div>center>table>tbody>tr>td>a:link, #container>div>center>table>tbody>tr>td>a:visited, #container>div>center>table>tbody>tr>td>a:active {
  color: #dedede;
  font-size: 14px;
}
/* LINK BACK HOVER */

#container>div>center>table>tbody>tr>td>a:hover {
  color: #cab5b5;
  font-size: 14px;
}
/* DEFINES THE FORUMS TABLE AREA */

.forum_list_table {
  width: 100%;
  border: 1px solid #4C4340;
  background-color: #4C4340;
}
.forum_list_table > tbody > tr:nth-child(3) > td:nth-child(2), .forum_list_table > tbody > tr:nth-child(4) > td:nth-child(2), .forum_list_table > tbody > tr:nth-child(5) > td:nth-child(2), .forum_list_table > tbody > tr:nth-child(6) > td:nth-child(2), .forum_list_table > tbody > tr:nth-child(8) > td:nth-child(2), .forum_list_table > tbody > tr:nth-child(9) > td:nth-child(2), .forum_list_table > tbody > tr:nth-child(10) > td:nth-child(2), .forum_list_table > tbody > tr:nth-child(11) > td:nth-child(2), .forum_list_table > tbody > tr:nth-child(12) > td:nth-child(2), .forum_list_table > tbody > tr:nth-child(14) > td:nth-child(2), .forum_list_table > tbody > tr:nth-child(15) > td:nth-child(2), .forum_list_table > tbody > tr:nth-child(16) > td:nth-child(2), .forum_list_table > tbody > tr:nth-child(17) > td:nth-child(2), .forum_list_table > tbody > tr:nth-child(18) > td:nth-child(2), .forum_list_table > tbody > tr:nth-child(19) > td:nth-child(2), .forum_list_table > tbody > tr:nth-child(20) > td:nth-child(2), .forum_list_table > tbody > tr:nth-child(21) > td:nth-child(2), .forum_list_table > tbody > tr:nth-child(22) > td:nth-child(2), .forum_list_table > tbody > tr:nth-child(23) > td:nth-child(2), .forum_list_table > tbody > tr:nth-child(24) > td:nth-child(2), .forum_list_table > tbody > tr:nth-child(25) > td:nth-child(2), .forum_list_table > tbody > tr:nth-child(26) > td:nth-child(2), .forum_list_table > tbody > tr:nth-child(27) > td:nth-child(2), .forum_list_table > tbody > tr:nth-child(28) > td:nth-child(2), .forum_list_table > tbody > tr:nth-child(29) > td:nth-child(2), .forum_list_table > tbody > tr:nth-child(30) > td:nth-child(2), .forum_list_table > tbody > tr:nth-child(31) > td:nth-child(2), .forum_list_table > tbody > tr:nth-child(32) > td:nth-child(2), .forum_list_table > tbody > tr:nth-child(33) > td:nth-child(2), .forum_list_table > tbody > tr:nth-child(34) > td:nth-child(2), .forum_list_table > tbody > tr:nth-child(35) > td:nth-child(2), .forum_list_table > tbody > tr:nth-child(36) > td:nth-child(2) {
  text-align: center
}
/* DEFINES BACKGROUND IN FORUM AND TOPIC LIST */

.ak_fl_forumrow_mouseover_on, .ak_tl_topicrow_mouseover_on {
  background-color: #4a4a4a;
  background-image: url(http://rbbt.net/skins/wizard/marble26.png);
  padding: 5px;
}
.ak_fl_forumrow_mouseover_off, .ak_tl_topicrow_mouseover_off {
  background-color: #545454;
  background-image: url(http://rbbt.net/skins/wizard/marble26.png);
  padding: 5px;
}
span.forumlistnewswitch, span.forumlistnonewswitch, span.topiclistnewswitch, span.topiclistnonewswitch {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #336699;
}
/* DEFINES THE BOARDS SEPARATOR IMAGES */

.ak_msgform_poll_options_head_td, .ak_msg_seememberlist_head_user_td, .ak_msg_seememberlist_head_date_td, .ak_msg_seememberlist_head_im_td, .ak_msg_seememberlist_head_pm_td, .ak_msg_seememberlist_head_email_td, .ak_poll_table_header, .forum_list_header_newtext_td, .forum_list_header_forum_td, .forum_list_header_topics_td, .forum_list_header_posts_td, .forum_list_header_lastpost_td, .forumlist_separator_td, .topic_list_header_modbox_td, .topic_list_header_newtext_td, .topic_list_header_posticon_td, .topic_list_header_topic_td, .topic_list_header_startedby_td, .topic_list_header_replies_td, .topic_list_header_views_td, .topic_list_header_lastpost_td, .msgform_clickable_smiley_box_h, .ak_subject_posticon_head_td {
  color: #dedede;
  height: 25px;
  background: linear-gradient(to bottom, #0f0000 0%, #4a413e 4%, #817d7b 77%, #847f7b 95%);
  padding: 0 3px;
  border: 1px solid #4C4340;
}
/* DEFINE FORUM NAMES */

.forumlistforumname {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 16px;
  font-weight: 700;
}
/* FORUM DESCRIPTION SETTINGS */

.forumlistdescription {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 12px;
}
/* FORUM NUMBER OF TOPICS, POSTS, AND LAST POST SETTINGS */

.forumlistnumtopics, .forumlistnumposts {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #000000;
}
.forumlistlastpost {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 14px;
  color: #000000;
}
/* DEFINES WIDTH OF ADMIN, MOD, AND BOARD STATS TABLE (NOT LISTED ON RB's CHARTS) */

#container>div>center>table>tbody>tr>td>center:nth-child(7)>table:nth-child(5) {
  width: 100%;
}
/* ADMINISTRATORS AND MODERATORS SETTINGS */

.forumlistadministrators, .forumlistmoderators {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #CFCEC9;
}
.forumlistadministrators a:link, .forumlistmoderators a:link, .forumlistadministrators a:active, .forumlistmoderators a:active, .forumlistadministrators a:visited, .forumlistmoderators a:visited {
  color: #dedede;
}
.forumlistadministrators a:hover, .forumlistmoderators a:hover {
  color: #cab5b5;
}
/* DEFINES BOARD STATS TABLE */

.ak_fl_boardstats_master_table {
  width: 100%;
}
.forumlistboardstatstable {
  width: 100%;
  border: 1px solid #4C4340;
  background-color: #4a4a4a;
}
.forumlistboardstatsheader {
  height: 25px;
  background: linear-gradient(to bottom, #0f0000 0%, #4a413e 4%, #817d7b 77%, #847f7b 95%);
  padding: 0;
  border: 1px solid #4C4340;
  color: #dedede;
  font-size: 14px;
  padding-left: 3px;
}
.forumlistboardstatsdata {
  background-color: #4a4a4a;
  border: 0;
  font-size: 11px;
  color: #dedede;
  padding: 3px;
}
.forumlistboardstatsdata a:link, .forumlistboardstatsdata a:visited, .forumlistboardstatsdata a:active {
  color: #dedede;
}
.forumlistboardstatsdata a:hover {
  color: #cab5b5;
}
.forumlistboardstatstitle {
  background-color: #CACAC5;
  background-image: url(http://rbbt.net/skins/wizard/marble26.png);
  border: 1px solid #4C4340;
  font-size: 14px;
  color: #361d0a;
  padding: 3px;
}
/* MEMBERLIST AND TOPIC LIST TABLE SETTINGS */

.ak_msg_seememberlist_table, .topic_list_table {
  width: 100%;
  border: 1px solid #4C4340;
  background-color: #4C4340;
}
.topic_list_table > tbody > tr:nth-child(2) > td:nth-child(4), .topic_list_table > tbody > tr:nth-child(3) > td:nth-child(4), .topic_list_table > tbody > tr:nth-child(4) > td:nth-child(4), .topic_list_table > tbody > tr:nth-child(5) > td:nth-child(4), .topic_list_table > tbody > tr:nth-child(6) > td:nth-child(4), .topic_list_table > tbody > tr:nth-child(7) > td:nth-child(4), .topic_list_table > tbody > tr:nth-child(8) > td:nth-child(4), .topic_list_table > tbody > tr:nth-child(9) > td:nth-child(4), .topic_list_table > tbody > tr:nth-child(10) > td:nth-child(4), .topic_list_table > tbody > tr:nth-child(11) > td:nth-child(4), .topic_list_table > tbody > tr:nth-child(12) > td:nth-child(4), .topic_list_table > tbody > tr:nth-child(13) > td:nth-child(4), .topic_list_table > tbody > tr:nth-child(14) > td:nth-child(4), .topic_list_table > tbody > tr:nth-child(15) > td:nth-child(4), .topic_list_table > tbody > tr:nth-child(16) > td:nth-child(4), .topic_list_table > tbody > tr:nth-child(17) > td:nth-child(4), .topic_list_table > tbody > tr:nth-child(18) > td:nth-child(4), .topic_list_table > tbody > tr:nth-child(19) > td:nth-child(4), .topic_list_table > tbody > tr:nth-child(20) > td:nth-child(4), .topic_list_table > tbody > tr:nth-child(21) > td:nth-child(4) {
  text-align: center;
}
/* DEFINES LOCATION BACKGROUND LINKS */

.ak_msg_loclinks {
  background-color: #CACAC5;
  background-image: url(http://rbbt.net/skins/wizard/marble26.png);
  background-repeat: repeat-x;
  width: 100%;
  padding: 4px;
  border: 1px solid #4C4340;
}
/* DEFINES LINK BAR AT THE BOTTOM */

.msg_foot_linkbar {
  font-size: 10px;
  text-align: center;
  margin-top: 2px;
  color: #dedede;
  border: 1px solid #6f6f6f;
  padding: 5px;
  width: 85%;
  margin-bottom: 1em;
  margin: 0 auto;
}
.msg_foot_linkbar a:link, .msg_foot_linkbar a:active, .msg_foot_linkbar a:visited {
  color: #dedede;
}
.msg_foot_linkbar a:hover {
  color: #cab5b5;
}
/* DEFINES BOTTOM INFO LINE */

.bottominfoline {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 10px;
  color: #dedede;
  margin: 0 auto;
  margin-top: 3px;
  text-align: center;
}
.bottominfoline a:link, .bottominfoline a:active, .bottominfoline a:visited {
  color: #dedede
}
.bottominfoline a:hover {
  color: #cab5b5;
}
/* TOPIC LIST PAGE UNIQUE SETTINGS */

.locationforum {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 16px;
  font-weight: 700;
}
.topiclisttopicname {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 15px;
  font-weight: 700;
}
span.topicliststartedby, span.topiclistreplies, span.topiclistviews {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #361D0A;
}
span.topiclistlastpost {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #361D0A;
}
.topiclistlastpost a[href *=offset] {
  font: 25px Verdana, Geneva, sans-serif;
  text-shadow: #336 1px 1px 1px;
  line-height: 10px;
}
/* CLASS TO DEFINE TOPIC PREVIEW IF DESIRED: .ak_msg_topic_preview_div */

/* NEW TOPIC AND REPLY PSUEDO BUTTON SETTINGS */

.topiclistpostnewtopic, .postlistaddareply {
  border: 1px solid #6f6f6f;
  border-radius: 2px;
  padding: 9px 0;
}
span.topiclistpostnewtopic, span.postlistaddareply {
  background: linear-gradient(to bottom, #0f0000 0%, #4a413e 4%, #817d7b 77%, #847f7b 95%);
  background-size: cover;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 1px;
  font-weight: 400;
}
/* DEFINES POST NEW TOPIC AND ADD REPLY BOXES */

.topiclistpostnewtopic a:link, .topiclistpostnewtopic a:visited, .topiclistpostnewtopic a:active, .postlistaddareply a:link, .postlistaddareply a:visited, .postlistaddareply a:active {
  padding: 5px 15px;
  /* top right bottom left */
  font-size: 14px;
  color: #dedede;
  background: linear-gradient(to bottom, #0f0000 0%, #4a413e 4%, #817d7b 77%, #847f7b 95%);
  background-position: center 0;
  border: 1px solid #4C4340;
}
.topiclistpostnewtopic a:hover, .postlistaddareply a:hover {
  color: #cab5b5;
}
/* TOPIC MESSAGES (THREADS) LIST SETTINGS */

/* DEFINES BOXED PAGE NUMBERS */

span.pageindex, span.pageindexvalue a {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #CFCFCf;
}
span.pageindexvaluenow {
  font-size: 13px;
  font-weight: 700;
  color: #4c4340;
  background-color: #D1CFC8;
  border: 1px solid #4C4340;
}
.topic_list_table span.pageindex, .topic_list_table span.pageindexvalue a {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #565656;
}
.topic_list_table span.pageindexvaluenow {
  font-size: 13px;
  font-weight: 700;
  color: #555555;
}
/* TOPIC MESSAGE LIST DISPLAY SETTINGS */

.ak_msg_post_master_table {
  border: 1px solid #2F414F;
  border-top: 1px solid #6F6F6F;
  border-bottom: 1px solid #6f6f6f;
  background-color: #4a4a4a;
  width: 100%;
  margin-bottom: 5px;
}
.ak_msg_post_master_table td {
  border: 1px solid #2f414f;
}
/* TOPIC MESSAGE LEFT SIDE (THE POSTER) SETTINGS */

.postlistuserblock {
  background: linear-gradient(to bottom, #4a4a4a 0%, #243540 98%, #233540 100%);
}
span.postlistusername a {
  color: #361D0A;
}
span.postlistusertitle font {
  color: #cc0000;
}
span.postlistusertype, span.postlistregistered, span.postlistregisteredvalue, span.postlistlocation, span.postlistlocationvalue, span.postlistposts, span.postlistpostsvalue, span.postlist_karma, span.postlist_karma_value {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 11px;
}
span.postlistedit, span.postlistreply, span.postlistdelete, span.postlistquote {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 12px;
  font-weight: 700;
}
.postlistdate_td, span.postlistdate {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 12px;
  color: #C7C6C1;
  background: linear-gradient(to top, #4a4a4a 0%, #243540 98%, #233540 100%);
}
/* TOPIC MESSAGE RIGHT SIDE (MESSAGE AND POST-CONTACT) SETTINGS */

span.postlistpostname {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  color: #dedede;
}
span.postlisteditedby, span.postlisteditedbyvalue {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 10px;
}
span.postlisteditedbyvalue {
  color: #cab5b5;
}
/* DEFINES FONT SIZE AND COLORS FOR TOPIC FORUM AND POST LISTS */

span.postlistpostbody {
  color: #dedede;
}
span.postlistpostbody {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 14px overflow:auto;
  overflow-wrap: break-word;
  word-break: break-word;
  word-break: break-all;
  min-width: 0;
}
.postlistpostblock {
  overflow: auto;
  overflow-wrap: break-word;
  word-break: break-word;
  word-break: break-all;
  min-width: 0;
}
span.postlistpostbody a:link, span.postlistpostbody a:visited, span.postlistpostbody a:active {
  color: ##ffcccc;
}
span.postlistpostbody a:hover {
  color: #cab5b5;
}
span.postlistsendpm, span.postlistsendicq, span.postlistsendaim, span.postlistsendmsn, span.postlistsendyahoo, span.postlistblog, span.postlist_karma_applaud, span.postlist_karma_smite, span.share_menu, span.postlist_link_to_post {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 11px;
  background-color: #505050;
  padding: 2px;
}
span.postlist_link_to_post, span.postlist_link_to_post a {
  padding-right: 1px;
  margin-right: 0;
  border: 0;
}
span.postlistsendpm a, span.postlistsendicq a, span.postlistsendaim a, span.postlistsendmsn a, span.postlistsendyahoo a, span.postlistblog a, span.postlist_karma_applaud a, span.postlist_karma_smite a, span.share_menu a, span.postlist_link_to_post a {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 11px;
  color: #C7C6C1;
  background-color: #505050;
  padding: 2px;
}
/* DEFINES BACK TO TOP LOCATION AND LINK */

#footer {
  clear: both;
  text-align: center;
  padding: 2px;
  margin-bottom: .5em;
}
.backtotop {
  display: block;
  margin: 0 auto;
  background: linear-gradient(to bottom, #0f0000 0%, #4a413e 4%, #817d7b 77%, #847f7b 95%);
  border: 1px solid #4C4340;
  width: 100px;
  height: 25px;
  line-height: 25px;
  vertical-align: middle;
  font-size: 14px;
}
#footer a:link, #footer a:active {
  color: #dedede;
}
#footer a:hover {
  color: #cab5b5;
}
blockquote {
  font-size: 14px;
  border: 1px solid #689;
  background-color: #CCC8C1;
  background-image: url(http://rbbt.net/skins/wizard/marble26.png);
  color: #000;
  width: 95%;
  margin: 0 auto;
}
blockquote hr {
  display: none;
}
hr {
  height: 0;
  width: 100%;
  border: none;
  border-bottom: 1px ridge #6F6F6F;
}
.postlistpostbody pre {
  font-size: 14px;
  overflow: auto;
  overflow-wrap: break-word;
  word-break: break-word;
  width: auto;
  border: 1px solid #668899;
}
.postlistpostbody img {
  max-width: 550px;
  width: expression(this.width>550?550:true);
}
.postlistpostbody iframe {
  width: 480px;
  height: 385px;
}
.ak_msg_post_signature_block {
  color: #dedede;
  font-size: 12px;
}
.ak_msg_post_signature_block a:link, .ak_msg_post_signature_block a:visited, .ak_msg_post_signature_block a:active {
  color: #dedede;
}
/* DEFINES COLORS AND IMAGES IN MESSAGE AREA */

.ak_msgform_master_table {
  background: #4a4a4a;
  border: 1px solid #4C4340;
  background-image: url(http://www.rbbt.net/skins/background/marb078.jpg);
}
.ak_msgform_master_table td {
  border: 0;
  color: #dedede;
}
.ak_msgform_master_table input {
  border: 1px solid #4C4340;
}
.ak_msgform_newtopic_submit_button, .ak_msgform_newtopic_preview_button, .ak_msgform_postreply_submit_button, .ak_msgform_postreply_preview_button, .ak_msgform_editpost_submit_button, .ak_msgform_editpost_preview_button {
  border: 1px solid #4C4340;
  height: 20px;
  background: linear-gradient(to bottom, #0f0000 0%, #4a413e 4%, #817d7b 77%, #847f7b 95%);
  color: #dedede;
  font-size: 15px;
}
.qcode_bar_but {
  font-size: 14px;
  border: 1px solid #4C4340;
  color: #dedede;
  height: 20px;
  background-color: #4F4644;
  background: linear-gradient(to bottom, #0f0000 0%, #4a413e 4%, #817d7b 77%, #847f7b 95%);
  margin-top: 2px;
  padding-left: 5px;
  padding-right: 5px;
}
.ak_msgform_subject_left_td, .ak_msgform_message_left_td {
  font-size: 14px;
}
.ak_msgform_subject_right_td input, .ak_msgform_message_right_td textarea {
  background-color: #CACAC5;
  background-image: url(http://rbbt.net/skins/wizard/marble26.png);
  color: #000;
  width: 340px;
  padding-left: 3px;
  font-size: 14px;
}
/* NOTIFY ME (HELP) LINK */

#container>div>center>table>tbody>tr>td>center>table>tbody>tr:nth-child(1)>td:nth-child(1)>table>tbody>tr:nth-child(8)>td>a {
  color: #dedede;
}
#container>div>center>table>tbody>tr>td>center>table>tbody>tr:nth-child(1)>td:nth-child(1)>table>tbody>tr:nth-child(8)>td>a:hover {
  color: #cab5b5;
}
.ak_msgform_poll_options_table {
  border: 1px solid #4C4340;
}
.ak_msgform_poll_options_right_td input {
  background-color: #CACAC5;
  background-image: url(http://rbbt.net/skins/wizard/marble26.png);
  padding-top: 2px;
  padding-bottom: 2px;
  margin: 2px;
  font-size: 11px;
  color: #000000;
  border: 1px solid #4C4340;
}
/* DEFINES POLL TABLE COLORS */

#container>div>center>table>tbody>tr>td>center>table>tbody>tr:nth-child(1)>td:nth-child(1)>table>tbody>tr:nth-child(12)>td>a {
  color: #f7efe8;
}
.ak_poll_table {
  font-size: 13px;
  color: #123;
  text-align: center;
  border: 1px solid #4C4340;
  background: #CACAC5 url(http://rbbt.net/skins/wizard/marble26.png);
  margin-bottom: 5px;
}
.ak_poll_table_header {
  height: 22px;
  padding: 0 25px;
  font-size: 13px;
}
.ak_poll_table_header br {
  display: none;
}
.ak_poll_table_header a {
  padding-left: 12px;
}
.ak_poll_table_button_cell input {
  background-color: #4F4644;
  border: 1px solid #4C4340;
  height: 22px;
  background: linear-gradient(to bottom, #0f0000 0%, #4a413e 4%, #817d7b 77%, #847f7b 95%);
  color: #dedede;
  font-size: 11px;
}
.ak_poll_table_header, .ak_poll_table_option_lcell1, .ak_poll_table_option_lcell2, .ak_poll_table_option_rcell1, .ak_poll_table_option_rcell2, .ak_poll_table_option_gcell1, .ak_poll_table_option_gcell2 {
  font-size: 14px;
  color: #361D0A;
}
.ak_poll_table td {
  border: 0;
}
.ak_poll_table_option_rcell1 input, .ak_poll_table_option_rcell2 input {
  border: 0;
}
.ak_poll_table_viewres_cell {
  font-weight: 700;
  font-size: 11px;
}
.ak_poll_table_option_gback1 {
  background-color: #668899;
}
.ak_poll_table_option_gback2 {
  background-color: #668899;
}
.ak_poll_table_header, .ak_poll_table_header a {
  color: #dedede;
}
.ak_poll_table_header a:hover {
  color: #cab5b5;
}
.ak_msgform_poll_options_head_td {
  color: #dedede;
}
.ak_poll_table_stats_cell {
  font-size: 12px;
}
/* DEFINES POST ICONS AND SMILEY COLORS */

.ak_subject_posticon_table {
  padding: 0;
  text-align: center;
  color: #dedede;
  font-size: 11px;
  border: 1px solid #4C4340;
  background-color: #4a4a4a;
  margin-bottom: 5px;
}
.ak_subject_posticon_head_td {
  text-align: center;
  font-size: 11px;
}
.msgform_clickable_smiley_box_h {
  padding-left: 11px;
  padding-right: 10px;
  font-size: 11px;
  border: 1px solid #4C4340;
  background-color: #4a4a4a;
  color: #dedede;
  line-height: 23px;
}
.msgform_clickable_smiley_box_b {
  margin-top: 8px;
  text-align: center;
}
.msgform_clickable_smiley_box_b, .msgform_clickable_smiley_box_b_td, .msgform_clickable_smiley_box_b td {
  border: 0;
}
/* DEFINES BACKGROUND IN POST LIST */

.ak_msg_post_table {
  padding-left: 3px;
  background-image: url(http://rbbt.net/skins/wizard/marble26.png);
  background-color: #CACAC5;
  border: 1px solid #4C4340;
  color: #361D0A;
}
/* DEFINES MEMBER LIST COLORS, SIZE, AND LINKS */

.ak_msg_seememberlist_table {
  font-size: 12px;
}
.ak_msg_seememberlist_table td {
  border: 3px double #4c4340;
}
.ak_msg_seememberlist_head_user_td, .ak_msg_seememberlist_head_im_td, .ak_msg_seememberlist_head_pm_td, .ak_msg_seememberlist_head_email_td {
  color: #dedede;
  font-size: 12px;
  border: 1px solid #4C4340;
  background-color: #4a4a4a;
  padding-left: 5px;
}
.ak_msg_seememberlist_head_date_td a:link, .ak_msg_seememberlist_head_date_td a:visited, .ak_msg_seememberlist_head_date_td a:active {
  padding-left: 5px;
  font-weight: 700;
  color: #dedede;
}
.ak_msg_seememberlist_head_date_td a:hover {
  padding-left: 5px;
  font-weight: 700;
  color: #cab5b5;
}
.ak_msg_seememberlist_user_td1, .ak_msg_seememberlist_user_td2, .ak_msg_seememberlist_date_td1, .ak_msg_seememberlist_date_td2, .ak_msg_seememberlist_im_td1, .ak_msg_seememberlist_im_td2, .ak_msg_seememberlist_pm_td1, .ak_msg_seememberlist_pm_td2, .ak_msg_seememberlist_email_td1, .ak_msg_seememberlist_email_td2 {
  background: #CACAC5 url(http://rbbt.net/skins/wizard/marble26.png);
  padding: 5px;
  border-width: 0;
  font-size: 12px;
}
.ak_msg_seememberlist_showing {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #dedede;
}
#memberlist_link_back_to_board {
  color: #dedede;
}
/* MISCELLANEOUS SETTINGS */

/* PREVENTS BORDERS ON IMAGE LINKS */

img {
  border: 0;
}
/* BOTTOM RB LINKS */

.msg_foot_linkbar {
  font-size: 10px;
  text-align: center;
  margin-top: 2px;
  border: 1px solid #6f6f6f;
  padding: 5px;
  width: 85%;
  margin-bottom: 1em;
}
.msg_foot_linkbar a {
  margin: 1em;
}
a[href$=linktous]:after {
  content: ' (Runboard)'
}
a[href$=blogs]+a:after {
  content: none;
}


This code is a plug-n-play CSS replacement which means you can delete the skin's current CSS and paste this new CSS code in its place.

If you (or somebody else) can give me a screenshot of the forums page I can show you the CSS coding the implement the first part I talked about.

*** EDITED TO INCLUDE THE FORUM CENTERING CODES BEING DISCUSSED ***

Last edited by Pastor Rick, 2/18/2019, 3:05 am


---

Advertise Boards On TRDConceptsDE
2/17/2019, 9:54 pm Link to post Email Pastor Rick   PM Pastor Rick Blog
 
Susa Profile
Live feed
Blog
Friends
Miscellaneous info

Global Administrator


Registered: 07-2006
Location: Oχάιο
Posts: 4623
Karma: 128 (+137/-9)
Reply | Quote
Re:


Pastor Rick, this is all but the board statistics at the bottom. I couldn't get the whole board in one shot.

Image
Image
Image

---

SS eH PF
2/18/2019, 1:19 am Link to post PM Susa Blog
 


Add a reply

Page:  1  2 



You are not logged in (login)