widgets show on bottom
4 posters
Page 1 of 1
widgets show on bottom
hello..
i have a problem with widgets..
when i login in the forum the widgets are fine for all members but for the guest widgets are at the end of the forum
i have a problem with widgets..
when i login in the forum the widgets are fine for all members but for the guest widgets are at the end of the forum
Last edited by MasterSly on June 2nd 2018, 11:05 pm; edited 1 time in total
Re: widgets show on bottom
Please post your forum's link.
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: widgets show on bottom
Alright. It's no need. I see what is the problem.
Go to ACP (Administration Control Panel), then choose Display tab, go to Pictures and colors section and click Colors. Then, choose CSS stylesheet tab.
Scroll down to bottom of the textarea with CSS Code and paste this:
- Code:
#content-container div#content {
margin-right: 0;
float: left;
width: calc(100% - 270px);
}
The #content div wasn't set to be on the left, and margin does nothing, because it's still div's area.
By the way, I highly suggest to set all the width by % unit. On 1024px wide screens the right panel is like invisible or you have to scroll horizontally, which is a bad idea (forum's design gets broken).
Re: widgets show on bottom
Please change the title of your topic to something that is related to your question/issue, so that other users will be able to find their question/issue using the search engine.
|
Shadow- Manager
- Posts : 16208
Reputation : 1832
Language : French, English
Re: widgets show on bottom
@MasterSly, okay, I knew that. CSS is not correctly read (calc function), so I suggest to put a script.
Go to ACP -> Modules -> HTML&Javascript section -> Javascript codes management -> Create a new script. Make sure that you have enabled Javascript management.
Title: your choice
Placement: in all the pages
Javascript code:
Go to ACP -> Modules -> HTML&Javascript section -> Javascript codes management -> Create a new script. Make sure that you have enabled Javascript management.
Title: your choice
Placement: in all the pages
Javascript code:
- Code:
$(function() {
$('head').append('<style id="widget-fix">#content-container div#content {margin-right: 0;float: left;width: calc(100% - 270px);}</style>');
});
Similar topics
» Show/Hide Widgets Script at both sides
» Show/Hide Widgets Script
» Forum widgets wont show
» My Forum Widgets Doesnt Show Up
» Show/Hide Widgets Script
» Show/Hide Widgets Script
» Forum widgets wont show
» My Forum Widgets Doesnt Show Up
» Show/Hide Widgets Script
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum