Mobile Version Issues 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.
2 posters

    Mobile Version Issues

    Take Notes
    Take Notes
    Helper
    Helper


    Male Posts : 2337
    Reputation : 324
    Language : English
    Location : Forumountain

    Mobile Version Issues Empty Mobile Version Issues

    Post by Take Notes May 28th 2016, 10:07 pm

    The category image is in px, so we have it aligned a specific way so that black covers over Last Posts, Posts, and Topics, but on mobile the category image barely shows any black due to the screen being smaller.

    Is there any way to fix this so that the category image is measured in percent or so the category image looks the same for both mobile and computer?

    www.forumpromocean.forumotion.com
    10spetter10
    10spetter10
    Forumember


    Posts : 195
    Reputation : 82
    Language : Dutch

    Mobile Version Issues Empty Re: Mobile Version Issues

    Post by 10spetter10 May 29th 2016, 12:06 am

    Have you tried this yet?

    Code:
    background: -webkit-linear-gradient(-45deg, #61A398 0, #61A398 60%, #333333 60%, #333333 100%);
    background: -moz-linear-gradient(135deg, #61A398 0, #61A398 60%, #333333 60%, #333333 100%);
    background: linear-gradient(135deg, #61A398 0, #61A398 60%, #333333 60%, #333333 100%);
    background-position: 50% 50%;

    Thats a css code to create the similar effect of your image but just by css. Add it to the css of your
    Code:
    ul.topiclist
    or
    Code:
    li.header
    ,because right now you defined the background twice.
    Take Notes
    Take Notes
    Helper
    Helper


    Male Posts : 2337
    Reputation : 324
    Language : English
    Location : Forumountain

    Mobile Version Issues Empty Re: Mobile Version Issues

    Post by Take Notes June 11th 2016, 7:33 pm

    I will try that when I get the chance, thanks.