No, there weren't any.skyler-d wrote:is there the changes for subsilver 2 from rc8 to gold?
No, there weren't any.skyler-d wrote:is there the changes for subsilver 2 from rc8 to gold?
He was pointing out that what you wrote doesn't make complete sense, it needs fixed. While going through these massive changes there are multiple times where you have to figure things out for yourself because you've written them either wrong or confusingly. It makes an already incredibly long process even longer. We appreciate the post but it's got some errors in it. They always do and he was just pointing one out.Raimon wrote:@tupeu;
what are you doing , what is the use to type the changes that i posted already?
I don't have this. The word LOCKED isn't in my viewforum file anywhere so I just left it out.Raimon wrote:Prosilver changes for RC8 :
open: /styles/prosilver/template/viewforum_body.html
search:
Code: Select all
<div class="<!-- IF S_IS_LOCKED -->locked-icon<!-- ELSE -->post-icon<!-- ENDIF -->"><a href="{U_POST_NEW_TOPIC}"><span><!-- IF S_IS_LOCKED -->{L_FORUM_LOCKED}<!-- ELSE -->{L_POST_TOPIC}<!-- ENDIF --></span></a></div>
replace with:
search:Code: Select all
<div class="<!-- IF S_IS_LOCKED -->locked-icon<!-- ELSE -->post-icon<!-- ENDIF -->"><a href="{U_POST_NEW_TOPIC}" title="<!-- IF S_IS_LOCKED -->{L_FORUM_LOCKED}<!-- ELSE -->{L_POST_TOPIC}<!-- ENDIF -->"><span></span><!-- IF S_IS_LOCKED -->{L_FORUM_LOCKED}<!-- ELSE -->{L_POST_TOPIC}<!-- ENDIF --></a></div>
Code: Select all
<div class="<!-- IF S_IS_LOCKED -->locked-icon<!-- ELSE -->post-icon<!-- ENDIF -->"><a href="{U_POST_NEW_TOPIC}"><span><!-- IF S_IS_LOCKED -->{L_FORUM_LOCKED}<!-- ELSE -->{L_POST_TOPIC}<!-- ENDIF --></span></a></div>
replace with:
Code: Select all
<div class="<!-- IF S_IS_LOCKED -->locked-icon<!-- ELSE -->post-icon<!-- ENDIF -->" title="<!-- IF S_IS_LOCKED -->{L_FORUM_LOCKED}<!-- ELSE -->{L_POST_TOPIC}<!-- ENDIF -->"><a href="{U_POST_NEW_TOPIC}"><span></span><!-- IF S_IS_LOCKED -->{L_FORUM_LOCKED}<!-- ELSE -->{L_POST_TOPIC}<!-- ENDIF --></a></div>
Doing this made my buttons not show up at all. A few of them did (delete button, quote) but the big ones didn't. ALL buttons had the text over top of them after these changes. I put the big button code back (both files) and got my buttons to show up but I still have the text on top of them. I'll have to work backwards and see what screwed that up. Just wanted to post and see if anyone had any ideas on what went wrong and also so if others have the same problem they'll know they aren't alone.Raimon wrote: THEME changes:
Open: /styles/prosilver/theme/buttons.css
search:
replace with:Code: Select all
/* Hide <a> text and hide off-state image when rolling over (prevents flicker in IE) */ .buttons div span { display: none; } .buttons div a:hover { background-image: none; }
search:Code: Select all
/* Hide <a> text and hide off-state image when rolling over (prevents flicker in IE) */ /*.buttons div span { display: none; }*/ /*.buttons div a:hover { background-image: none; }*/ .buttons div span { position: absolute; width: 100%; height: 100%; cursor: pointer;} .buttons div a:hover span { background-position: 0 100%; }
replace with:Code: Select all
/* Big button images */ .reply-icon, .reply-icon a { background: transparent none 0 0 no-repeat; } .post-icon, .post-icon a { background: transparent none 0 0 no-repeat; } .locked-icon, .locked-icon a { background: transparent none 0 0 no-repeat; } .pmreply-icon, .pmreply-icon a { background: none 0 0 no-repeat; } .newpm-icon, .newpm-icon a { background: none 0 0 no-repeat; } .forwardpm-icon, .forwardpm-icon a { background: none 0 0 no-repeat; }
open: /styles/prosilver/theme/colours.cssCode: Select all
/* Big button images */ .reply-icon span { background: transparent none 0 0 no-repeat; } .post-icon span { background: transparent none 0 0 no-repeat; } .locked-icon span { background: transparent none 0 0 no-repeat; } .pmreply-icon span { background: none 0 0 no-repeat; } .newpm-icon span { background: none 0 0 no-repeat; } .forwardpm-icon span { background: none 0 0 no-repeat; }
search:
replace with:Code: Select all
/* Big button images */ .reply-icon, .reply-icon a { background-image: url("{IMG_BUTTON_TOPIC_REPLY_SRC}"); } .post-icon, .post-icon a { background-image: url("{IMG_BUTTON_TOPIC_NEW_SRC}") ;} .locked-icon, .locked-icon a { background-image: url("{IMG_BUTTON_TOPIC_LOCKED_SRC}"); } .pmreply-icon, .pmreply-icon a { background-image: url("{IMG_BUTTON_PM_REPLY_SRC}") ;} .newpm-icon, .newpm-icon a { background-image: url("{IMG_BUTTON_PM_NEW_SRC}") ;} .forwardpm-icon, .forwardpm-icon a { background-image: url("{IMG_BUTTON_PM_FORWARD_SRC}") ;}
Code: Select all
/* Big button images */ .reply-icon span { background-image: url("{IMG_BUTTON_TOPIC_REPLY_SRC}"); } .post-icon span { background-image: url("{IMG_BUTTON_TOPIC_NEW_SRC}"); } .locked-icon span { background-image: url("{IMG_BUTTON_TOPIC_LOCKED_SRC}"); } .pmreply-icon span { background-image: url("{IMG_BUTTON_PM_REPLY_SRC}") ;} .newpm-icon span { background-image: url("{IMG_BUTTON_PM_NEW_SRC}") ;} .forwardpm-icon span { background-image: url("{IMG_BUTTON_PM_FORWARD_SRC}") ;}
Edit 2: Ok maybe it's not fixed. After I clicked a topic I got a bunch of "unexpected $end" errors in the viewtopic_body file. RE-uploaded a fresh copy and the forum works but the text overlay is still there for the smaller buttons. Really annoyed at all these updates to things I don't need just to get PM popups working again.Raimon wrote:Open: /styles/prosilver/theme/buttons.css
search:
Code: Select all
/* Hide <a> text and hide off-state image when rolling over (prevents flicker in IE) */ .buttons div span { display: none; } .buttons div a:hover { background-image: none; }
replace with:
Code: Select all
/* Hide <a> text and hide off-state image when rolling over (prevents flicker in IE) */ /*.buttons div span { display: none; }*/ /*.buttons div a:hover { background-image: none; }*/ .buttons div span { position: absolute; width: 100%; height: 100%; cursor: pointer;} .buttons div a:hover span { background-position: 0 100%; }
Not really, when you search well you find only the first line, nothing more or less, or it must be written different.FPClub wrote:He was pointing out that what you wrote doesn't make complete sense, it needs fixed. While going through these massive changes there are multiple times where you have to figure things out for yourself because you've written them either wrong or confusingly. It makes an already incredibly long process even longer. We appreciate the post but it's got some errors in it. They always do and he was just pointing one out.Raimon wrote:@tupeu;
what are you doing , what is the use to type the changes that i posted already?
Not really, just refresh your theme on your administrationpanel, will solve this problem and a reload of your browser.Doing this made my buttons not show up at all. A few of them did (delete button, quote) but the big ones didn't. ALL buttons had the text over top of them after these changes. I put the big button code back (both files) and got my buttons to show up but I still have the text on top of them. I'll have to work backwards and see what screwed that up. Just wanted to post and see if anyone had any ideas on what went wrong and also so if others have the same problem they'll know they aren't alone.
EDIT: Fixed the text-over-the-button nonsense. Un-replaced this.
See above for the answer.Edit 2: Ok maybe it's not fixed. After I clicked a topic I got a bunch of "unexpected $end" errors in the viewtopic_body file. RE-uploaded a fresh copy and the forum works but the text overlay is still there for the smaller buttons. Really annoyed at all these updates to things I don't need just to get PM popups working again.
It's something that you can figure out but it's not written like all the other items in the list like it should be. That's all I'm saying.Raimon wrote: Not really, when you search well you find only the first line, nothing more or less, or it must be written different.
See above for the answer.[/quote]Edit 2: Ok maybe it's not fixed. After I clicked a topic I got a bunch of "unexpected $end" errors in the viewtopic_body file. RE-uploaded a fresh copy and the forum works but the text overlay is still there for the smaller buttons. Really annoyed at all these updates to things I don't need just to get PM popups working again.
Code: Select all
/* Big button images */
.reply-icon, .reply-icon a { background: transparent none 0 0 no-repeat; }
.post-icon, .post-icon a { background: transparent none 0 0 no-repeat; }
.locked-icon, .locked-icon a { background: transparent none 0 0 no-repeat; }
.pmreply-icon, .pmreply-icon a { background: none 0 0 no-repeat; }
.newpm-icon, .newpm-icon a { background: none 0 0 no-repeat; }
.forwardpm-icon, .forwardpm-icon a { background: none 0 0 no-repeat; }
Code: Select all
/* Big button images */
.reply-icon span { background: transparent none 0 0 no-repeat; }
.post-icon span { background: transparent none 0 0 no-repeat; }
.locked-icon span { background: transparent none 0 0 no-repeat; }
.pmreply-icon span { background: none 0 0 no-repeat; }
.newpm-icon span { background: none 0 0 no-repeat; }
.forwardpm-icon span { background: none 0 0 no-repeat; }
You mean code tags with white content perhaps?pixel001 wrote:Hi,
the first page of this post doesn't render correctly on my browser. the <code> tags overlap with the post text making it all unreadable. i'm using firefox 2,0,0,11 on os X.
Code: Select all
text-align: left;
}
Code: Select all
.rtl div.rules ul {
margin-left: 0;
margin-right: 20px;
}
Code: Select all
text-align: left;
}
Code: Select all
.rtl ul.leftside li, .rtl ul.rightside li {
float: left;
}
.rtl ul.leftside {
float: right;
margin-left: 5px;
margin-right: 0;
text-align: right;
}
.rtl ul.rightside {
float: left;
margin-left: -5px;
margin-right: 5px;
text-align: left;
}
Code: Select all
.rtl dl.details dt {
float: right;
text-align: left;
}
.rtl dl.details dd {
margin-right: 16em;
margin-left: 0;
padding-right: 5px;
padding-left: 0;
}
/* Pagination
Code: Select all
.rtl dl.details dt {
float: right;
clear: right;
text-align: left;
}
.rtl dl.details dd {
margin-right: 0;
margin-left: 0;
padding-right: 5px;
padding-left: 0;
float: right;
}
*:first-child+html dl.details dd {
margin-right: 15em;
float: none;
}
* html dl.details dd {
margin-right: 15em;
float: none;
}
/* Pagination
Code: Select all
.rtl .sitehome, .rtl .icon-faq, .rtl .icon-members, .rtl .icon-home, .rtl .icon-ucp, .rtl .icon-register, .rtl .icon-logout,
.rtl .icon-bookmark, .rtl .icon-bump, .rtl .icon-subscribe, .rtl .icon-unsubscribe, .rtl .icon-pages, .rtl .icon-search {
background-position: 100% 50%;
Code: Select all
padding: 1px 17px 0 0;
Code: Select all
.announce, .unreadpost {
/* Highlight the announcements & unread posts box */
border-left-color: #BC2A4D;
border-right-color: #BC2A4D;
}
Code: Select all
font-weight: bold;
}
Code: Select all
ul.leftside {
float: left;
margin-left: 0;
margin-right: 5px;
text-align: left;
}
ul.rightside {
float: right;
margin-left: 5px;
margin-right: -5px;
text-align: right;
}
Code: Select all
dl.details dt {
float: left;
width: 16em;
text-align: right;
color: #000000;
display: block;
}
dl.details dd {
margin-left: 16em;
padding-left: 5px;
margin-bottom: 5px;
color: #828282;
}
/* Pagination
Code: Select all
dl.details dt {
float: left;
clear: left;
width: 15em;
text-align: right;
color: #000000;
display: block;
}
dl.details dd {
margin-left: 0;
padding-left: 5px;
margin-bottom: 5px;
color: #828282;
float: left;
}
/* Pagination
Code: Select all
div.rules li {
margin-left: 20px;
}
Code: Select all
div.rules ul {
margin-left: 20px;
}
Code: Select all
/* Correctly clear floating for details on profile view */
*:first-child+html dl.details dd {
margin-left: 15em;
float: none;
}
* html dl.details dd {
margin-left: 15em;
float: none;
}
Code: Select all
a.sendemail:hover {
background-position: 0 -18px;
}
Code: Select all
ul.navlinks {
padding-bottom: 1px;
Code: Select all
margin-bottom: 1px;
Code: Select all
font-size: 1.1em;
}
Code: Select all
div.rules li {
margin-left: 20px;
}
Code: Select all
/* Specific layout 1 */
fieldset.fields1 dt {
width: 10em;
border-right-width: 0;
}
fieldset.fields1 dd {
margin-left: 10em;
border-left-width: 0;
}
Code: Select all
/* Specific layout 1 */
fieldset.fields1 dt {
width: 15em;
border-right-width: 0;
}
fieldset.fields1 dd {
margin-left: 15em;
border-left-width: 0;
}
Code: Select all
input.tiny { width: 110px; }
Code: Select all
input.tiny { width: 125px; }
Code: Select all
font-family: "Lucida Grande", Verdana, Arial, Helvetica, sans-serif;
}
Code: Select all
.forumrules h3 {
color: red;
}
Code: Select all
/* Nice method for clearing floated blocks without having to insert any extra markup (like spacer above)
From http://www.positioniseverything.net/easyclearing.html */
#tabs:after, #minitabs:after, .post:after, .navbar:after, fieldset dl:after, ul.topiclist dl:after, ul.linklist:after, dl.polls:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
#tabs, #minitabs, .post, .navbar, fieldset dl, ul.topiclist dl, ul.linklist, dl.polls {
height: 1%;
}
/* Simple fix so forum and topic lists always have a min-height set, even in IE6
Code: Select all
/* Nice method for clearing floated blocks without having to insert any extra markup (like spacer above)
From http://www.positioniseverything.net/easyclearing.html
#tabs:after, #minitabs:after, .post:after, .navbar:after, fieldset dl:after, ul.topiclist dl:after, ul.linklist:after, dl.polls:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}*/
.clearfix, #tabs, #minitabs, .post, .navbar, fieldset dl, ul.topiclist dl, ul.linklist, dl.polls {
height: 1%;
overflow: hidden;
}
/* Simple fix so forum and topic lists always have a min-height set, even in IE6
Code: Select all
.rtl .button {
float: right;
}
Code: Select all
.rtl .button div {
float: right;
margin: 0 0 0 5px;
}
Code: Select all
/* Icon images
---------------------------------------- */
.sitehome, .icon-faq, .icon-members, .icon-home, .icon-ucp, .icon-register, .icon-logout,
.icon-bookmark, .icon-bump, .icon-subscribe, .icon-unsubscribe, .icon-pages, .icon-search{
background-position: 0 50%;
background-repeat: no-repeat;
background-image: none;
padding: 1px 0 0 17px;
}
.rtl .sitehome, .rtl .icon-faq, .rtl .icon-members, .rtl .icon-home, .rtl .icon-ucp, .rtl .icon-register, .rtl .icon-logout,
.rtl .icon-bookmark, .rtl .icon-bump, .rtl .icon-subscribe, .rtl .icon-unsubscribe, .rtl .icon-pages, .rtl .icon-search{
background-position: 100% 50%;
padding: 1px 17px 0 0;
}
/* Poster profile icons
----------------------------------------*/
ul.profile-icons {
Code: Select all
/* Icon images
---------------------------------------- */
.icon-bookmark, .icon-bump, .icon-subscribe, .icon-unsubscribe, .icon-pages, .icon-search {
background-position: 0 50%;
background-repeat: no-repeat;
background-image: none;
padding: 1px 0 0 17px;
}
/* Poster profile icons
----------------------------------------*/
ul.profile-icons {
Code: Select all
.rtl ul.profile-icons li {
margin: 0 0 3px 6px;
}
Code: Select all
.rtl ul.profile-icons li.edit-icon { margin: 0 3px 0 0; }
.rtl ul.profile-icons li.quote-icon { margin: 0 10px 0 0; }
.rtl ul.profile-icons li.info-icon, .rtl ul.profile-icons li.report-icon { margin: 0 0 0 3px; }
Code: Select all
border-left-color: #FFFFFF;
}
Code: Select all
.rtl ul.topiclist dd {
border-right-color: #fff;
border-left-color: transparent;
}
Code: Select all
border-left-color: #CCCCCC;
}
Code: Select all
.rtl li.row:hover dd {
border-right-color: #CCCCCC;
border-left-color: transparent;
}
Code: Select all
.attachbox p.stats
{
Code: Select all
.attachbox p.stats {
Code: Select all
color: #FFFFFF;
}
Code: Select all
.rtl .pollbar1, .rtl .pollbar2, .rtl .pollbar3, .rtl .pollbar4, .rtl .pollbar5 {
border-right-color: transparent;
}
Code: Select all
.pollbar1 {
background-color: #AA2346;
border-bottom-color: #74162C;
border-right-color: #74162C;
}
Code: Select all
.rtl .pollbar1 {
border-left-color: #74162C;
}
Code: Select all
.pollbar2 {
background-color: #BE1E4A;
border-bottom-color: #8C1C38;
border-right-color: #8C1C38;
}
Code: Select all
.rtl .pollbar2 {
border-left-color: #8C1C38;
}
Code: Select all
.pollbar3 {
background-color: #D11A4E;
border-bottom-color: #AA2346;
border-right-color: #AA2346;
}
Code: Select all
.rtl .pollbar3 {
border-left-color: #AA2346;
}
Code: Select all
.pollbar4 {
background-color: #E41653;
border-bottom-color: #BE1E4A;
border-right-color: #BE1E4A;
}
Code: Select all
.rtl .pollbar4 {
border-left-color: #BE1E4A;
}
Code: Select all
.pollbar5 {
background-color: #F81157;
border-bottom-color: #D11A4E;
border-right-color: #D11A4E;
}
Code: Select all
.rtl .pollbar5 {
border-left-color: #D11A4E;
}
Code: Select all
border-left-color: #FFFFFF;
}
Code: Select all
.rtl .postprofile {
border-right-color: #FFFFFF;
border-left-color: transparent;
}
Code: Select all
.pm .postprofile {
border-left-color: #DDDDDD;
}
Code: Select all
.rtl .pm .postprofile {
border-right-color: #DDDDDD;
border-left-color: transparent;
}
Code: Select all
color: #425067;
}
Code: Select all
option.disabled-option {
color: graytext;
}
Code: Select all
/* Quick-login on index page */
fieldset.quick-login input {
background-color: #F2F3F3;
}
Code: Select all
/* Quick-login on index page */
fieldset.quick-login input.inputbox {
background-color: #F2F3F3;
}
Code: Select all
.rtl #search-box {
float: left;
text-align: left;
margin-right: 0;
margin-left: 5px;
}
Code: Select all
.rtl #site-description {
float: right;
}
Code: Select all
.pagination span.page-sep {
display:none;
}
Code: Select all
.pagination span.page-sep {
display: none;
}
Code: Select all
padding: 0 0 0 12px;
}
Code: Select all
.forum-image {
float: left;
padding-top: 5px;
margin-right: 5px;
}
Code: Select all
/* Quote block */
blockquote {
/* Also see tweaks.css */
margin: 1em 1px 1em 25px;
padding: 5px;
background: #ebebeb none 6px 8px no-repeat;
border:1px solid #dbdbdb;
font-size:0.95em;
margin:1em 1px 1em 25px;
overflow:hidden;
padding:5px;
}
blockquote blockquote {
/* Nested quotes */
background-color:#bababa;
font-size:1em;
margin:0.5em 1px 0pt 15px;
}
Code: Select all
/* Quote block */
blockquote {
background: #ebebeb none 6px 8px no-repeat;
border: 1px solid #dbdbdb;
font-size: 0.95em;
margin: 0.5em 1px 0 25px;
overflow: hidden;
padding: 5px;
}
blockquote blockquote {
/* Nested quotes */
background-color: #bababa;
font-size: 1em;
margin: 0.5em 1px 0 15px;
}
Code: Select all
padding-right: 1em;
}
Code: Select all
option.disabled-option {
color: graytext;
}
Code: Select all
fieldset.quick-login input {
Code: Select all
width: auto;
}
fieldset.quick-login input.inputbox {
Code: Select all
input.checkbox {
width: auto !important;
background-color: transparent !important;
}
Code: Select all
* html .rtl #search-box {
margin-right: 0;
margin-left: 35px;
}
Code: Select all
.rowgood {
background-color: #C2D6CD;
padding: 4px;
}
.rowneutral {
background-color: #CAC1D7;
padding: 4px;
}
.rowbad {
background-color: #D7C1C3;
padding: 4px;
}
Code: Select all
padding: 0 1em 0 0;
}
Code: Select all
option.disabled-option {
color: graytext;
}