Hi i want ask how i can make widgets like here: http://seiya.forumpl.net/ on my portal: http://seiya.forumpl.net/portal
3 posters
Portal left/right widget question
TheShaka- Forumember
- Posts : 412
Reputation : 6
Language : polish
- Post n°1
Portal left/right widget question
Ramdaman- Active Poster
- Posts : 1590
Reputation : 99
Language : English, Albanian, Macedonian, Russian | HTML, CSS
Location : New York City
- Post n°2
Re: Portal left/right widget question
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
Here's the tutorial. https://help.forumotion.com/t22589-forum-widgets
TheShaka- Forumember
- Posts : 412
Reputation : 6
Language : polish
- Post n°3
Re: Portal left/right widget question
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- Forumaster
- Posts : 13207
Reputation : 3000
Language : English & 日本語
Location : Pennsylvania
- Post n°4
Re: Portal left/right widget question
Hello TheShaka,
You want it to be fixed to the screen ? Edit the HTML and add the style attribute to adjust its positioning.
Or you can give it a class name and adjust it that way. For example :
Then write CSS for it :
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- Forumember
- Posts : 412
Reputation : 6
Language : polish
- Post n°5
Re: Portal left/right widget question
Look ange...
This is my portal: http://seiya.forumpl.net/portal
I want these widgets (its not image...):Â
To be like on my forum: http://seiya.forumpl.net/
This is my portal: http://seiya.forumpl.net/portal
I want these widgets (its not image...):Â
To be like on my forum: http://seiya.forumpl.net/
Ange Tuteur- Forumaster
- Posts : 13207
Reputation : 3000
Language : English & 日本語
Location : Pennsylvania
- Post n°6
Re: Portal left/right widget question
Add to your CSS :
- Code:
.portal td.column + td + td.column {
position:fixed;
top:30px;
right:0;
bottom:0;
}
TheShaka- Forumember
- Posts : 412
Reputation : 6
Language : polish
- Post n°7
Re: Portal left/right widget question
Thank you!