"I have updated the page HTML structure a little and this cause some problem with the custom styles that follows the old CSS. Follow the steps bellow to fix this:
First go to the "layout" section (line 800+ or about 50%)
Find this subsection which have this comments on it
/* =layout_framework
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Used on:
-- basic foundation for the layouts, effects all layouts
*/
Replace the ' top: 0;' with ' top: -50px;'. This maybe subject your userpage design.
If you can't see the user status, try increasing/decreasing the values (negative values applies)
Finally, scroll futher down about 95% (line 1721)
Look for:
/* =layout_mode_showcase_main_showcase
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Used on:
-- Pages with those huge image showcase
*/
Change the #main_showcase ' top' which is now at 150px value to 100px. DONE!
So what are the changes made? I have moved out the header and the footer from the main page structure and placed it outside. This allows more flexibility in design as you can see it here or see it live at CSS Task Force group. The changes I have just instruct you to change is for the header and footer to fall back in the same place as before the structural change.
If still does not work, CLICK HERE and select the official theme." View
Majors and Jobs
2 years 5 months ago
"I graduated with BSC(HONS) in Computing with Specialism in Internet Technology and worked as a web designer before. Soon I'll be working as a software engineer in Japan. Though I still prefer my old job, the new job doubled my salary and I get to stay at Japan :)." View
New moderator
2 years 5 months ago
"Oh a bit late, but better than never haha. Congrats Sunira! Welcome to the team" View
Suggestion: Limiting quotes
2 years 5 months ago
"Maybe I've made the quote button a little to convenient LOL XD
The quoted post was made by me in the Announcement thread. Anyway, is it possible to have more distance between the lines by default?
FIXED
shinsengumi
The "Notify me of updates to this thread" links don't seem to work; I do not get notifications for new posts in threads for which I have requested notifications.
In the notification area, please look for the tabs above.. there should be "Compose", "Messages", "Topic", "Comments", "Favorites" and "Friends Submissions"
Click on the Topic will get you to the topic notification page." View
ANIMEPAPER V4 BUG REPORTS
2 years 5 months ago
"
sorcerer
Maybe im just stupid(wicth probably is true) but i cant change my age(at least i cant see that option), and the thing was that for the 6 time i entered AP the server asked me for the age and by accident i placed 2006 as the year the last time. The prob now is that i cant change the age, not that i mind but i think you guys should look into that, if you fell like it anyways...
The age thing have been fixed, try logout and login in again. There should be a form again asking for your age again. If not try go to your userpage.
Weird...it's stuck on my side. I can't read what's written between your spoiler tags. I have clicked on every single pixels of the spoiler bar and the alphabets too. I'm not sure which Firefox settings (if there is one) are responsible for it.
I guess I'll need a few hours to figure things out on what's wrong with my comp. Maybe a browser or computer restart or something else that I can think of.
It still stuck even now? I know it didn't earlier and I have fixed this just a while ago. But now it should be fine...
Try a force refresh (ctrl+F5)
I'm using FF 1.5 and I dont have this problem." View
style share
2 years 5 months ago
"
BabyBonnieHood
its not the font size... it the TEXTAREA size.... ~ i x.x~ trying to say *my english is really bad ¬¬
the box~ where the people ~ comment~
Ah sorry, I didn't get what you mean at first. Ok, the text area here are all set using html height by default, but you can overwrite this by just adding the height attribute:
form textarea {
margin-top: 3px;
height: 500px
line-height: 1.5em; }
but of course this will cause ALL TEXTAREA to follow that height. In order to prevent this, you might want to target specific page. Now the AP page consist of several templates and the hierarchy for it are as follows:
- A shared common outer template
---- The content template (you want to target this)
So if you view-source you can see that I have commented each template, the content template are located about 1/3 of the page like below:
<!-- Body templates applies here -->
<div id="content" class="narrow">
<div id="content-inner">
<!-- TEMPLATE INFO | regular mode | ap_forum_postview template | Last Update: 1:36 PM Tuesday, December 27, 2005 | By: Xenohawk -->
For the above example I view-source on this forum. So alright, we know this forum is using template from ap_forum_postview.
"Don't worry guys, I'll whip up a basic css soon that is easier for you guys to do global modification. What you see in there now is the raw css and it is more for those that are familiar with css and worked with it.
Or just give it sometime and soon the page will be filled with styles from other user and you can just use them :)" View
ANIMEPAPER V4 BUG REPORTS
2 years 5 months ago
" SLOW SCROLLING MAY have been fixed, but I can't be for sure if this works for all. PM me if it stil does, and please provide your system information and the browsers you are using." View
gallery freeze?
2 years 5 months ago
"We have noticed this bug in IE for quite a while, we are still looking into it." View
V4 Early Release!
2 years 5 months ago
"Regarding the SLOW SCROLLING, I've already found what is the cause and will rectify it soon. Just bare with it for a while okay :)" View
Custom CSS (Styles) problem on the new structure
2 years 5 months ago
"I have updated the page HTML structure a little and this cause some problem with the custom styles that follows the old CSS. Follow the steps bellow to fix this:First go to the "layout" section (line 800+ or about 50%)
Find this subsection which have this comments on it
/* =layout_framework~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Used on:
-- basic foundation for the layouts, effects all layouts
*/
then find this line:
#container {/*background: transparent url(http://www.animepaper.net/images/920_grid.gif) repeat-y left top;*/
margin: 0 auto; width: 920px;
position: relative;
text-align: left; }
Now, change that to:
#container {/*background: transparent url(http://www.animepaper.net/images/920_grid.gif) repeat-y left top;*/
margin: 0 auto; width: 920px;
padding-bottom: 20px;
position: relative;
text-align: left; }
Then find this:
#footer { margin-top: 30px; padding: 5px 0; }And, change that to:
#footer { padding: 5px 0; }After you are done with that, add this ABOVE the #footer line:
#header_wrapper, #footer_wrapper {
margin: 0 auto;
width: 960px; }
#header, #footer {
margin: 0 auto;
width: 920px; }
Then find the following subsection which have this comments (line 1166 or about 65%):
/* =layout_general
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Used on:
-- general layout style used throughout the entire template
*/
And then add this on the top, right below the comments ( background depends on your design)
#header_wrapper, #footer_wrapper {background: #FCFBF9; }
Still in the same subsection, scroll down and look for this:
#user_status {background: #EEE;
position: absolute;
top: 0; right: 0;
display: block;
text-align: right;
font-size: 11px;
letter-spacing: 1px;
border: 1px solid #E0E0E0;
padding: 5px; }
Replace the ' top: 0;' with ' top: -50px;'. This maybe subject your userpage design.
If you can't see the user status, try increasing/decreasing the values (negative values applies)
Finally, scroll futher down about 95% (line 1721)
Look for:
/* =layout_mode_showcase_main_showcase
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Used on:
-- Pages with those huge image showcase
*/
#main_showcase {
position: absolute;
top: 150px; left: 50%; margin-left: -440px;
display: block;
height: 500px;
width: 860px;
padding: 20px 0 0 20px;
z-index: 1; }
Change the #main_showcase ' top' which is now at 150px value to 100px.
DONE!
So what are the changes made? I have moved out the header and the footer from the main page structure and placed it outside. This allows more flexibility in design as you can see it here or see it live at CSS Task Force group. The changes I have just instruct you to change is for the header and footer to fall back in the same place as before the structural change.
If still does not work, CLICK HERE and select the official theme."
View
Majors and Jobs
2 years 5 months ago
"I graduated with BSC(HONS) in Computing with Specialism in Internet Technology and worked as a web designer before. Soon I'll be working as a software engineer in Japan. Though I still prefer my old job, the new job doubled my salary and I get to stay at Japan :)."View
New moderator
2 years 5 months ago
"Oh a bit late, but better than never haha. Congrats Sunira! Welcome to the team"View
Suggestion: Limiting quotes
2 years 5 months ago
"Maybe I've made the quote button a little to convenient LOL XD-_-"
View
ANIMEPAPER V4 BUG REPORTS
2 years 5 months ago
"FIXED
In the notification area, please look for the tabs above.. there should be "Compose", "Messages", "Topic", "Comments", "Favorites" and "Friends Submissions"
Click on the Topic will get you to the topic notification page."
View
ANIMEPAPER V4 BUG REPORTS
2 years 5 months ago
"The age thing have been fixed, try logout and login in again. There should be a form again asking for your age again. If not try go to your userpage.
"
View
ANIMEPAPER V4 BUG REPORTS
2 years 5 months ago
"It still stuck even now? I know it didn't earlier and I have fixed this just a while ago. But now it should be fine...
Try a force refresh (ctrl+F5)
I'm using FF 1.5 and I dont have this problem."
View
style share
2 years 5 months ago
"Ah sorry, I didn't get what you mean at first. Ok, the text area here are all set using html height by default, but you can overwrite this by just adding the height attribute:
form textarea {margin-top: 3px;
height: 500px
line-height: 1.5em; }
but of course this will cause ALL TEXTAREA to follow that height. In order to prevent this, you might want to target specific page. Now the AP page consist of several templates and the hierarchy for it are as follows:
- A shared common outer template
---- The content template (you want to target this)
So if you view-source you can see that I have commented each template, the content template are located about 1/3 of the page like below:
<!-- Body templates applies here -->
<div id="content" class="narrow">
<div id="content-inner">
<!-- TEMPLATE INFO | regular mode | ap_forum_postview template | Last Update: 1:36 PM Tuesday, December 27, 2005 | By: Xenohawk -->
For the above example I view-source on this forum. So alright, we know this forum is using template from ap_forum_postview.
So now we modify the CSS code earlier like this:
#ap_forum_postview form textarea {margin-top: 3px;
height: 500px
line-height: 1.5em; }
So now that textarea height will only effect on forum and nowhere else.
Btw the gallery that you comment is using the ap_gallery_display template.
Good luck"
View
style share
2 years 5 months ago
"In the CSS editor (in the profile)Scroll down until you have reach the form section
/*----------------------------------------------------------------
=forms
--------------------------------------------------------------*/
Then look for this block under it
form textarea {
margin-top: 3px;
line-height: 1.5em; }
Just add in a font-size there, since I use relative size font try this:
"form textarea {
margin-top: 3px;
font-size: 1.2em;
line-height: 1.5em; }
View
style share
2 years 5 months ago
"Don't worry guys, I'll whip up a basic css soon that is easier for you guys to do global modification. What you see in there now is the raw css and it is more for those that are familiar with css and worked with it.Or just give it sometime and soon the page will be filled with styles from other user and you can just use them :)"
View
ANIMEPAPER V4 BUG REPORTS
2 years 5 months ago
" SLOW SCROLLING MAY have been fixed, but I can't be for sure if this works for all. PM me if it stil does, and please provide your system information and the browsers you are using."View
gallery freeze?
2 years 5 months ago
"We have noticed this bug in IE for quite a while, we are still looking into it."View
V4 Early Release!
2 years 5 months ago
"Regarding the SLOW SCROLLING, I've already found what is the cause and will rectify it soon. Just bare with it for a while okay :)"View