Portal left/right widget question 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

    Portal left/right widget question

    TheShaka
    TheShaka
    Forumember


    Male Posts : 412
    Reputation : 6
    Language : polish

    In progress Portal left/right widget question

    Post by TheShaka September 8th 2014, 2:09 pm

    Hi i want ask how i can make widgets like here: http://seiya.forumpl.net/ on my portal: http://seiya.forumpl.net/portal

    Portal left/right widget question 2mocr3c
    Ramdaman
    Ramdaman
    Active Poster


    Male Posts : 1590
    Reputation : 99
    Language : English, Albanian, Macedonian, Russian | HTML, CSS
    Location : New York City

    In progress Re: Portal left/right widget question

    Post by Ramdaman September 8th 2014, 9:37 pm

    If that is the forum index (mainpage of the forums), then it can only be done on phpBB3.

    Here's the tutorial. https://help.forumotion.com/t22589-forum-widgets
    TheShaka
    TheShaka
    Forumember


    Male Posts : 412
    Reputation : 6
    Language : polish

    In progress Re: Portal left/right widget question

    Post by TheShaka September 9th 2014, 6:25 am

    Ramdaman wrote:If that is the forum index (mainpage of the forums), then it can only be done on phpBB3.

    Here's the tutorial. https://help.forumotion.com/t22589-forum-widgets

    i see but this is for forum i need for portal.
    Ange Tuteur
    Ange Tuteur
    Forumaster


    Male Posts : 13207
    Reputation : 3000
    Language : English & 日本語
    Location : Pennsylvania

    In progress Re: Portal left/right widget question

    Post by Ange Tuteur September 9th 2014, 8:13 am

    Hello TheShaka,

    You want it to be fixed to the screen ? Edit the HTML and add the style attribute to adjust its positioning.
    Code:
    <a href="/" style="position:fixed;top:0px;right:0px;"><img src="/myimage.gif"/></a>

    Or you can give it a class name and adjust it that way. For example :
    Code:
    <a class="fixed-top-right" href="/"><img src="/myimage.gif"/></a>

    Then write CSS for it :
    Code:
    .fixed-top-right {
      position:fixed;
      top:0;
      right:0;
    }
    TheShaka
    TheShaka
    Forumember


    Male Posts : 412
    Reputation : 6
    Language : polish

    In progress Re: Portal left/right widget question

    Post by TheShaka September 9th 2014, 4:34 pm

    Look ange...
    This is my portal: http://seiya.forumpl.net/portal
    I want these widgets (its not image...): 
    Portal left/right widget question 2mocr3c

    To be like on my forum: http://seiya.forumpl.net/
    Ange Tuteur
    Ange Tuteur
    Forumaster


    Male Posts : 13207
    Reputation : 3000
    Language : English & 日本語
    Location : Pennsylvania

    In progress Re: Portal left/right widget question

    Post by Ange Tuteur September 9th 2014, 4:50 pm

    Add to your CSS :
    Code:
    .portal td.column + td + td.column {
      position:fixed;
      top:30px;
      right:0;
      bottom:0;
    }
    TheShaka
    TheShaka
    Forumember


    Male Posts : 412
    Reputation : 6
    Language : polish

    In progress Re: Portal left/right widget question

    Post by TheShaka September 9th 2014, 6:43 pm

    Thank you! loove