Forum's Website Development & Bugs & Problems Reporting
- Sublevel 114
- layer restorer
- Posts: 16587
- Joined: 11 Dec 2012 20:23
Re: Bugs & Problems Reporting
1024x600
Re: Bugs & Problems Reporting
Really? Because the actual content of the forum is set at width of 1025 px, which means you should be able to see at least all of the forum at that size.Sublevel 102 wrote:1024x600
I am still leaving the scrollbars here in case anyone here have resolution lower than 1000 px. I will need to tweak the coding so that people can view the forum from any resolution without scrolling horizontally.
-------
EDIT: Ha! It's quite simple. The whole content is now responsive to fit any resolution! All I had to do was to change the code "width: 1025px" to "max-width: 1025px" and viola! You should be able to read the forum without needing the horizontal scrollbar.
BOOM.
-------
EDIT 2: Polling is now permitted! You can create polls and vote on them! Be sure not to abuse the system or I will remove the privileges. As of now, the polls are limited to General Discussion section.
Enjoy

{Admin account of AK, former forum host. --Ancient Crystal}
- Sublevel 114
- layer restorer
- Posts: 16587
- Joined: 11 Dec 2012 20:23
Re: Development & Bugs & Problems Reporting
Thanks, Pastel God!
:3
And it's quite annoying, but...
When can we wait A'LLUKIUN story?
:3
And it's quite annoying, but...
When can we wait A'LLUKIUN story?
Re: Development & Bugs & Problems Reporting
Ok, bad news.
I am still unable to find any viable solution to fix the GO TO PAGE and VIEW UNREAD POSTS. As far I know, any solutions that I found through phpBB are simply incompatible with this Serenity-styled forum. I simply have no idea how Mateusz got them to work in the first place.
If anyone and I mean ANYONE know how to fix them, please let me know. Otherwise, I am ceasing any further attempts to pursue this matter.
EDIT: Since the GO TO PAGE is literally useless, I have disabled it via CSS. If solution is found and sought in near future, I will reactivate the link.
I am still unable to find any viable solution to fix the GO TO PAGE and VIEW UNREAD POSTS. As far I know, any solutions that I found through phpBB are simply incompatible with this Serenity-styled forum. I simply have no idea how Mateusz got them to work in the first place.
If anyone and I mean ANYONE know how to fix them, please let me know. Otherwise, I am ceasing any further attempts to pursue this matter.
EDIT: Since the GO TO PAGE is literally useless, I have disabled it via CSS. If solution is found and sought in near future, I will reactivate the link.
{Admin account of AK, former forum host. --Ancient Crystal}
- Sublevel 114
- layer restorer
- Posts: 16587
- Joined: 11 Dec 2012 20:23
Re: Development & Bugs & Problems Reporting
I compared sources...
That's missing
from thread of old forum
Was that thing that not worked?
Edit: lol I successfully jumped to page of April Fools thread
:D
Code: Select all
function jumpto()
{
var page = prompt('Enter the page number you wish to go to:', '5');
var per_page = '10';
var base_url = './viewtopic.php?f=9&t=502';
if (page !== null && !isNaN(page) && page == Math.floor(page) && page > 0)
{
if (base_url.indexOf('?') == -1)
{
document.location.href = base_url + '?start=' + ((page - 1) * per_page);
}
else
{
document.location.href = base_url.replace(/&/g, '&') + '&start=' + ((page - 1) * per_page);
}
}
}
from thread of old forum
Was that thing that not worked?
Edit: lol I successfully jumped to page of April Fools thread
:D
Last edited by Sublevel 114 on 30 Apr 2015 19:51, edited 1 time in total.
Re: Development & Bugs & Problems Reporting
Aside from jumping to April Fools thread, I need to know where did you find that string of code.Sublevel 102 wrote:I compared sources...
That's missingCode: Select all
function jumpto() { var page = prompt('Enter the page number you wish to go to:', '5'); var per_page = '10'; var base_url = './viewtopic.php?f=9&t=502'; if (page !== null && !isNaN(page) && page == Math.floor(page) && page > 0) { if (base_url.indexOf('?') == -1) { document.location.href = base_url + '?start=' + ((page - 1) * per_page); } else { document.location.href = base_url.replace(/&/g, '&') + '&start=' + ((page - 1) * per_page); } } }
from thread of old forum
Edit: It jumped to April Fools thread
Please

{Admin account of AK, former forum host. --Ancient Crystal}
- Sublevel 114
- layer restorer
- Posts: 16587
- Joined: 11 Dec 2012 20:23
Re: Development & Bugs & Problems Reporting
you mean when did I get that source code?admin wrote:I need to know where did you find that string of code
Please :?
as I said, it's taken from mht file of archived pages of oldforum
for example, archived page of April Fools thread
page 5
Code: Select all
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en-gb" xml:lang="en-gb">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<meta http-equiv="content-language" content="en-gb" />
<meta http-equiv="content-style-type" content="text/css" />
<meta http-equiv="imagetoolbar" content="no" />
<title>Pastel Forum - View topic - April Fools</title>
<link rel="alternate" type="application/atom+xml" title="Feed - Pastel Forum" href="http://www.pastelportal.com/forum/feed.php" /><link rel="alternate" type="application/atom+xml" title="Feed - New Topics" href="http://www.pastelportal.com/forum/feed.php?mode=topics" /><link rel="alternate" type="application/atom+xml" title="Feed - Forum - general discussion" href="http://www.pastelportal.com/forum/feed.php?f=9" /><link rel="alternate" type="application/atom+xml" title="Feed - Topic - April Fools" href="http://www.pastelportal.com/forum/feed.php?f=9&t=502" />
<!--
phpBB style name: Serenity
Based on style: subsilver2
Original author: Tom Beddard ( http://www.subBlue.com/ )
Modified by: stsoftware ( http://www.stsoftware.biz/ )
-->
<link rel="stylesheet" href="./styles/serenity/theme/stylesheet.css" type="text/css" />
<script type="text/javascript">
// <
OOPS?
Well, broke the styling of the forum. I don't know why specifically, but the tiny bit of coding seems to revert the whole structure back to the way previous Pastel Portal forum looks. I will need to investigate the changes in structure since it's appears that some of my stylings remain intact. Perhaps any further changes in the CSS will need to be done to get the whole forum back to the way it used to look.
HOORAY?

{Admin account of AK, former forum host. --Ancient Crystal}