change background on view page 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.
3 posters

    change background on view page

    poesia-verses
    poesia-verses
    Forumember


    Male Posts : 569
    Reputation : 22
    Language : and small english

    Solved change background on view page

    Post by poesia-verses Wed 14 Jun 2023 - 12:57

    I need to change the background on the image view page, is it possible to add another style to the script for this?

    https://stihi-podval.forumotion.com/viewimage?u=https%3A%2F%2Fi.servimg.com%2Fu%2Ff10%2F20%2F33%2F56%2F10%2Fa_58011.png

    such a background is desirable
    change background on view page Clipbo13

    and one more thing: so that the link above the image changes color, (otherwise it will not be visible against such a background

    Code:
    if (window.location.href.indexOf('viewimage') > -1) {
        var style = document.createElement('style');
        style.innerHTML = '#left { display: none; }';
        document.head.appendChild(style);
      }

    in this code add styles for the above


    Last edited by poesia-verses on Wed 14 Jun 2023 - 13:33; edited 1 time in total
    tikky
    tikky
    Forumember


    Posts : 922
    Reputation : 160
    Language : 🇵🇹

    Solved Re: change background on view page

    Post by tikky Wed 14 Jun 2023 - 13:11

    Hello poesia-versos,

    Here
    Code:
    if (window.location.href.indexOf('viewimage') > -1) {
        var style = document.createElement('style');
        style.innerHTML = 'body { background-color: purple !important; }a[href="javascript:window.close()"] { color: #fff !important; } #left { display: none; }';
        document.head.appendChild(style);
      }
    Change
    Code:
    purple
    to the color you want to use and
    Code:
    #fff
    to the link

    TonnyKamper and poesia-verses like this post

    poesia-verses
    poesia-verses
    Forumember


    Male Posts : 569
    Reputation : 22
    Language : and small english

    Solved Re: change background on view page

    Post by poesia-verses Wed 14 Jun 2023 - 13:33

    solved
    Razor12345
    Razor12345
    Support Moderator
    Support Moderator


    Male Posts : 1575
    Reputation : 266
    Language : Ukr, Rus, Eng
    Location : Ukraine

    Solved Re: change background on view page

    Post by Razor12345 Wed 14 Jun 2023 - 13:39

    Problem solved & topic archived.
    Please read our forum rules: ESF General Rules



    change background on view page Screen51

    poesia-verses likes this post