Css Sheet problem Hitskin_logo Hitskin.com

This is a Hitskin.com skin preview
Install the skinReturn to the skin page

The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.
5 posters

    Css Sheet problem

    avatar
    DareDev1l
    Forumember


    Posts : 103
    Reputation : 2
    Language : English

    Css Sheet problem Empty Css Sheet problem

    Post by DareDev1l February 13th 2015, 3:47 pm

    any time i try to add a new code . an error pops saying that the code paper is too long . and i tried a smaller code . i had the same problem

    +

    What is the code to make my latest topics list move


    Last edited by DareDev1l on February 13th 2015, 3:50 pm; edited 1 time in total
    Ikerepc
    Ikerepc
    Active Poster


    Male Posts : 1187
    Reputation : 167
    Language : Who cares...
    Location : Where web help & support is needed

    Css Sheet problem Empty Re: Css Sheet problem

    Post by Ikerepc February 13th 2015, 3:49 pm

    How many lines you have in it?

    Can you post it here? But please in code.
    avatar
    DareDev1l
    Forumember


    Posts : 103
    Reputation : 2
    Language : English

    Css Sheet problem Empty Re: Css Sheet problem

    Post by DareDev1l February 13th 2015, 4:04 pm

    the sheet is 788 lines

    i tried to post the codes here it said its too long
    _Twisted_Mods_
    _Twisted_Mods_
    Helper
    Helper


    Male Posts : 2083
    Reputation : 336
    Language : English
    Location : Ms

    Css Sheet problem Empty Re: Css Sheet problem

    Post by _Twisted_Mods_ February 13th 2015, 11:34 pm

    you probably have a bunch of un needed css or it was not organized correct .you will either have to remove some of the un needed css or goto acp>display>templates>overall_header

    and add your css inside <style></style> tags
    avatar
    zunixaani
    New Member


    Posts : 1
    Reputation : 1
    Language : english

    Css Sheet problem Empty Re: Css Sheet problem

    Post by zunixaani February 27th 2015, 10:26 am

    It used to work flawlessly, but recently it has started to bug a lot.
    Bug: If I post by quick reply, message is sent, but you can't see it. New post used to pop by slide, now it just gets stuck. I can see the message, when I manually refresh the page.
    So the question is - what is wrong? Css Sheet problem Icon_biggrin



    Are you interested in Pass4sure - security+ test Get our self paced coloradotech.edu and passguide itil study pba to pass your Hobe Sound Bible College without any difficulty in selftestengine lsat.


    Last edited by zunixaani on March 2nd 2015, 1:17 pm; edited 1 time in total
    Van-Helsing
    Van-Helsing
    Hyperactive


    Male Posts : 2431
    Reputation : 116
    Language : English, Greek

    Css Sheet problem Empty Re: Css Sheet problem

    Post by Van-Helsing February 27th 2015, 10:46 am

    DareDev1l wrote:the sheet is 788 lines

    i tried to post the codes here it said its too long
    Hello @DareDev1l,
    Have you tried to compress your CSS code?
    _Twisted_Mods_
    _Twisted_Mods_
    Helper
    Helper


    Male Posts : 2083
    Reputation : 336
    Language : English
    Location : Ms

    Css Sheet problem Empty Re: Css Sheet problem

    Post by _Twisted_Mods_ February 27th 2015, 10:59 am

    as black-shadow said you should try to compress your css .. remove any extra line breaks that are not needed and add same element stuff together

    example

    before
    Code:
    #element{
    background-color:black;
    color:green;
    }
    #element{
    font-size:12px;
    }

    after

    Code:
    #element{background-color:black;color:green;font-size:12px;}