Allan Style - SUBSILVER

couple of bugs - Allan Style - SUBSILVER

couple of bugs

by sakm » Mon Nov 28, 2016 12:42 pm

this is a long shot as there seems to be a big lack of support for this style :?

But when viewing in responsive mode on view topic the author and message is all out of place!

bug.png
bug.png (4.51 KiB) Viewed 251 times


also not in responsive mode when viewing your user account if there is a global announcement it doesn't show right in the user account area
sakm
Registered User
Posts: 716
Joined: Sun Jan 21, 2007 8:14 pm
Location: Hull, uk
Name: Stu

Re: couple of bugs

by sakm » Thu Dec 01, 2016 4:50 pm

If anyone is interested in some little fixes

The first on in view topic when in responsive mode I ended up hiding the author and message part and it makes it a little neater

In viewtopic_body.html

find

Code: Select all

<div id="subsilver-nav-topic">
   <div class="inner"><div class="post has-profile">
      <div class="leftsided postbody subsilver-topic-title">{L_MESSAGE}</div>
      <div class="leftsided postprofile subsilver-topic-author">{L_AUTHOR}</div>
   </div>


Replace with

Code: Select all

<div id="subsilver-nav-topic" class="responsive-hide">
   <div class="inner responsive-hide"><div class="post has-profile responsive-hide">
      <div class="leftsided postbody subsilver-topic-title">{L_MESSAGE}</div>
      <div class="leftsided postprofile subsilver-topic-author">{L_AUTHOR}</div>
   </div>


Also when viewing the user control panel any global announcements weren't showing properly the last poster was showing directly under the author!

To fix this I changed ucp_main_front.html

Find

Code: Select all

<dd class="lastpost"><span>{L_LAST_POST} {L_POST_BY_AUTHOR} {topicrow.LAST_POST_AUTHOR_FULL}
               <a href="{topicrow.U_LAST_POST}" title="{L_GOTO_LAST_POST}">{LAST_POST_IMG}</a> <br />{topicrow.LAST_POST_TIME}</span>
            </dd>


Replace with

Code: Select all

<li class="lastpost"><span>{L_LAST_POST} {L_POST_BY_AUTHOR} {topicrow.LAST_POST_AUTHOR_FULL}
               <a href="{topicrow.U_LAST_POST}" title="{L_GOTO_LAST_POST}">{LAST_POST_IMG}</a> <br />{topicrow.LAST_POST_TIME}</span>
            </li>


Also when viewing in responsive mode the page never fit to screen! you have a bit of side to side movement!

In responsive.css

Find

Code: Select all

.headerbar, .navbar, .forabg, .forumbg, .post, .panel {
   border-radius: 0;
   margin-left: -5px;
   margin-right: -5px;


Replace with

Code: Select all

.headerbar, .navbar, .forabg, .forumbg, .post, .panel {
   border-radius: 0;
   margin-left: 5px;
   margin-right: 5px;


You will need to copy ucp_main_front.html and viewtopic_body.html from prosilver and add them to your child style or Allen style subsilver

Hope this helps anyone
sakm
Registered User
Posts: 716
Joined: Sun Jan 21, 2007 8:14 pm
Location: Hull, uk
Name: Stu