The issue I had was with the calendar mod on livewire's site.
The problem was with the style edits.
The parts that say "FIND" and when I look at the Black Pearl style, the lines I am supposed to look for don't exist.
These parts:
(My assumption is that I replace prosilver with the black pearl style)
Open: styles/prosilver/template/index_body.html
Find
Tip: This may be a partial find and not the whole line.
Code: Select All
<IF>
<h3>{L_STATISTICS}</h3>
<p>{TOTAL_POSTS} • {TOTAL_TOPICS} • {TOTAL_USERS} • {NEWEST_USER}</p>
<ENDIF>
<ENDIF>
Add after
Tip: Add these lines on a new blank line after the preceding line(s) to find.
Code: Select All
<IF>
<INCLUDE>
<ENDIF>
Open: styles/prosilver/template/overall_header.html
Find
Tip: This may be a partial find and not the whole line.
Code: Select All
<ul>
Add after
Tip: Add these lines on a new blank line after the preceding line(s) to find.
Code: Select All
<IF>
<li><a>{L_LANG_CALENDAR}</a></li>
<ENDIF>
Open: styles/prosilver/template/portal_header.html
Find
Tip: This may be a partial find and not the whole line.
Code: Select All
<IF>
<script></script>
Replace With
Tip: Replace the preceding line(s) to find with the following lines.
Code: Select All
<IF>
<script></script>
<ENDIF>
<IF>
Open: styles/prosilver/template/posting_buttons.html
Find
Tip: This may be a partial find and not the whole line.
Code: Select All
var panels = new Array('options-panel', 'attach-panel', 'poll-panel');
Replace With
Tip: Replace the preceding line(s) to find with the following lines.
Code: Select All
//---BEGIN CALENDAR MOD ALTERATION--- added event-panel to panels array
var panels = new Array('options-panel', 'attach-panel', 'poll-panel', 'event-panel');
//---END CALENDAR MOD ALTERATION---
Open: styles/prosilver/template/posting_editor.html
Find
Tip: This may be a partial find and not the whole line.
Code: Select All
<IF><li><a><span>{L_ADD_POLL}</span></a></li><ENDIF>
Add after
Tip: Add these lines on a new blank line after the preceding line(s) to find.
Code: Select All
<IF><li><a><span>{L_CALENDAR_ASSOC_EVENT}</span></a></li><ENDIF>
Open: styles/prosilver/template/posting_layout.html
Find
Tip: This may be a partial find and not the whole line.
Code: Select All
<IF><INCLUDE><ENDIF>
Add after
Tip: Add these lines on a new blank line after the preceding line(s) to find.
Code: Select All
<IF><INCLUDE><ENDIF>
Open: styles/prosilver/template/viewtopic_body.html
Find
Tip: This may be a partial find and not the whole line.
Code: Select All
<IF>
Add before
Tip: Add these lines on a new blank line before the preceding line(s) to find.
Code: Select All
<IF>
<div>
<div><span><span></span></span>
<a><h4>{L_HAS_ASSOCIATED_EVENT}</h4></a><hr><br>
<div>
<dl>
<dt>{L_STARTS}:</dt>
<dd><strong>{START_TIME}</strong></dd>
<dt>{L_ENDS}:</dt>
<dd><strong>{END_TIME}</strong></dd>
<dt>{L_DURATION}:</dt>
<dd><strong>{DURATION}</strong></dd>
<IF>
<dt>{L_REPEATED}:</dt>
<dd><strong>{REPEAT_LIST}</strong></dd>
<ENDIF>
</dl>
</div>
<hr>
<IF>
<div>
<IF>
<p>{L_CALENDAR_SIGNED_UP} <a>{L_CALENDAR_UN_SIGN_UP}</a></p>
<ELSEIF>
<p>{L_CALENDAR_SIGNED_DOWN} <a>{L_CALENDAR_UN_SIGN_UP}</a></p>
<ELSE>
<p>{L_CALENDAR_SIGN_UP_INVITATION} <a>{L_CALENDAR_SIGN_UP_ACCEPT}</a> • <a>{L_CALENDAR_SIGN_UP_DECLINE}</a></p>
<ENDIF>
</div>
<IF>
<h4>{L_CALENDAR_EVENT_MEMBERS_SIGNED}</h4>
<IF>{SIGNED_UP_LIST}<ELSE>{L_CALENDAR_EVENT_MEMBERS_SIGNED_NONE}<ENDIF>
<hr>
<h4>{L_CALENDAR_EVENT_MEMBERS_NOT_SIGNED}</h4>
<IF>{SIGNED_DOWN_LIST}<ELSE>{L_CALENDAR_EVENT_MEMBERS_NOT_SIGNED_NONE}<ENDIF>
<hr>
<br>
<ENDIF>
<ENDIF>
<a>{L_GO_TO_EVENT}</a>
<span><span></span></span></div>
</div>
<ENDIF>
Open: styles/prosilver/theme/portal.css
Find
Tip: This may be a partial find and not the whole line.
Code: Select All
.cal_today {
background-color:#FFBBAA;
font-weight: bold;
}
.cal_birthday {
color:#FF8000;
font-weight: bold;
}
.cal_event {
color:#FF0000;
font-weight: bold;
}
table.calendar {
border:solid 1px;
border-color:#C2E6F6;
}
td.calendar {
border:solid 1px;
border-color:#C2E6F6;
}
tr.calendar {
/*
background-image: url("./images/bg_list.gif");
color:#EFFFFF;
*/
color:#0D97DC;
background-repeat: repeat-x;
height: 22px;
border:none;
}
tr.cal_block_header {
background-color:#CADCEB;
height:16px;
border-color:#C2E6F6;
font-weight:bold;
}
Replace With
Tip: Replace the preceding line(s) to find with the following lines.
Code: Select All
/* calendar css moved to calendar.css */
Open: styles/prosilver/theme/stylesheet.css
Find
Tip: This may be a partial find and not the whole line.
Code: Select All
@import url("profile_on_left.css");
Add after
Tip: Add these lines on a new blank line after the preceding line(s) to find.
Code: Select All
@import url("calendar.css");
Some of the .css edits I could probably do, but the others, I can't find the lines I am to look for.