So it's been a while since i've needed help, so here it goes:
Can someone help me to remove smooth scrolling from this message style?
http://djlyzombie.free.fr/dotclear/inde ... sage-style
I really like the style, but dislike smooth scrolling. Any help would be appreciated. Renaming the template.html file did remove it, but now I just need to make the style usable. Any help would be appreciated.
Help me remove the scrolling of the smooth, pwease!
I made a little hackering and I think it works (or so) with this template file:
http://www.salvadorcaffarena.com/asd/Template.zip
However it would be perfect to make it work without a template file at all and make it use the built-in one. The one above is the same as the built-in one except:
Built in Template
Custom Ruler Template
http://www.salvadorcaffarena.com/asd/Template.zip
However it would be perfect to make it work without a template file at all and make it use the built-in one. The one above is the same as the built-in one except:
Built in Template
Code: Select all
<!-- This style is shared by all variants. !-->
<style id="baseStyle" type="text/css" media="screen,print">
%@
*{ word-wrap:break-word; }
</style>
<!-- Although we call this mainStyle for legacy reasons, it's actually the variant style !-->
<style id="mainStyle" type="text/css" media="screen,print">
@import url( "%@" );
</style>
Code: Select all
<style id="mainStyle" type="text/css" media="screen,print"> @import url( "%@" ); </style>
Jorge Salvador Caffarena
-- Life is a theatre ... until the last tragedy.
-- Life is a theatre ... until the last tragedy.
And to fix the thing completely, edit the main.css file and change the body tag to show like this:
Code: Select all
body {
margin-top: -10px;
background-color: white;
color: black;
word-break: none;
}
Jorge Salvador Caffarena
-- Life is a theatre ... until the last tragedy.
-- Life is a theatre ... until the last tragedy.