Is there a watermark option 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

    Is there a watermark option

    johanmandal
    johanmandal
    Forumember


    Male Posts : 205
    Reputation : 10
    Language : English

    Is there a watermark option Empty Is there a watermark option

    Post by johanmandal September 5th 2008, 11:47 am

    i searched the forum but didnt find

    is there a watermark option?

    i want my background image to be fixed and the forum table to be transparent so that i can always see the background image even if i scroll down?

    sorry, im not much descriptive but i would be glad if there is such option
    avatar
    Guest
    Guest


    Is there a watermark option Empty Re: Is there a watermark option

    Post by Guest September 5th 2008, 1:51 pm

    To do this you will have to add a CSS code to the CSS box

    1. Log into your forum

    2. Navigate to

    Admin Panel\Display\Colors\CSS Stylesheet

    3. add the following code, adjusting the image link and pressing "Submit" to save

    Code:
    body {
    backgrpund-color: transparent;
    background-image: url('http://www.image_here.jpg');
    position: fixed;
    attachment: scroll;
    }

    Regards





    Craig
    johanmandal
    johanmandal
    Forumember


    Male Posts : 205
    Reputation : 10
    Language : English

    Is there a watermark option Empty Re: Is there a watermark option

    Post by johanmandal September 5th 2008, 3:05 pm

    hehe i think i cant get it done, my page is fixed and i cant scroll down
    moreover i dont see any changes i desired, besides my page is fixed(cant scroll down)

    thanks a lot anyway Smile
    Jalokim
    Jalokim
    Energetic


    Male Posts : 6113
    Reputation : 223
    Language : English,Polish,CSS,HTML
    Location : Poland

    Is there a watermark option Empty Re: Is there a watermark option

    Post by Jalokim September 5th 2008, 3:09 pm

    i lack the point of having a position fixed and a attachment: scroll ... the one with the other doesn't work...

    mr. johanmandal ...
    I suggest replacing the
    Code:
    position: fixed;
    attachment: scroll;

    with this:
    Code:
    background-attachment: fixed;
    if that doesn't give you your desired effect change it too scroll

    could you explain the transparent part again
    johanmandal
    johanmandal
    Forumember


    Male Posts : 205
    Reputation : 10
    Language : English

    Is there a watermark option Empty Re: Is there a watermark option

    Post by johanmandal September 5th 2008, 3:27 pm

    wow i think the background is fixed but whats the point if i cant see it, thanks Smile
    -by transparent i mean setting these background colors

    -Body line background color
    -Background color 1

    to transparent or remove them so i can see the background image through them at the same place even if i scroll down

    sorry if im bugging you, i dont know how to do, i had seen in a website once
    Jalokim
    Jalokim
    Energetic


    Male Posts : 6113
    Reputation : 223
    Language : English,Polish,CSS,HTML
    Location : Poland

    Is there a watermark option Empty Re: Is there a watermark option

    Post by Jalokim September 5th 2008, 3:36 pm

    you know what... changing the transparency via CSS brings a couple problems... but you can experiment with the script generator:

    https://help.forumotion.com/script-code-problems-f43/script-generator-comments-t318.htm?highlight=script

    register your site and create a code for translucent rows... its all explained on that site
    avatar
    Guest
    Guest


    Is there a watermark option Empty Re: Is there a watermark option

    Post by Guest September 5th 2008, 8:12 pm

    lol sorry i couldn't reply, i was called back to work when the server went down

    I was in the middle of posting here when it happened, The code wasn't complete Sad

    Sorry

    Regards







    Craig
    johanmandal
    johanmandal
    Forumember


    Male Posts : 205
    Reputation : 10
    Language : English

    Is there a watermark option Empty Re: Is there a watermark option

    Post by johanmandal September 6th 2008, 5:44 am

    Hey, its ok Smile

    By the way all those scripts Fried my brain last night, i think i will skip this idea, may be later Smile

    Thanks guys
    endless013
    endless013
    Forumember


    Male Posts : 450
    Reputation : 13
    Language : english
    Location : Some where in NY

    Is there a watermark option Empty Re: Is there a watermark option

    Post by endless013 September 6th 2008, 6:36 am

    Admin Panel>>Display>>Colors>>CSS Stylesheet

    heres the code I use for my backround, not sure if its what you're looking for but I hope its at least some help.
    Code:
    <style type='text/css'>
    .poqbum1 {content:"Body Properties";}
    body {
    background-color:000000;
    background-image:url('URL TO YOUR IMAGE HERE');
    background-position:center center;
    background-repeat:repeat-xxx;
    background-attachment:fixed;}</style>


    Last edited by endless013 on September 7th 2008, 3:24 pm; edited 2 times in total
    Jalokim
    Jalokim
    Energetic


    Male Posts : 6113
    Reputation : 223
    Language : English,Polish,CSS,HTML
    Location : Poland

    Is there a watermark option Empty Re: Is there a watermark option

    Post by Jalokim September 6th 2008, 12:03 pm

    johanmandal wrote:Hey, its ok Smile

    By the way all those scripts Fried my brain last night, i think i will skip this idea, may be later Smile

    Thanks guys

    then go to your admin panel-> display-> colors-> css tab
    find:
    row1 and row 2
    change their color to transparent:
    for example:
    Code:
    background-color: #333333;
    change it to
    Code:
    background-color: transparent;

    oh and i think you'll need to do I more thing:
    find #wrap
    and change its background color to transparent


    Last edited by Sunny_D on September 6th 2008, 4:03 pm; edited 1 time in total (Reason for editing : .wrap ------> #wrap (it's an ID, Jalo) ^^)