Cell Placement on the Index
3 posters
Page 1 of 1
Cell Placement on the Index
Hello, I was wondering can we move my recent topics system to the top of the page above the widgets? here is an image
would like it to be 100% width above the right side forum widgets
punbb
Forum link: TPSN
Thank you in advance!
would like it to be 100% width above the right side forum widgets
punbb
Forum link: TPSN
Thank you in advance!
Re: Cell Placement on the Index
@Ange We did this with the shoutbox but seeing that the shoutbox is a mess and we are liking the look of it without the shoutbox was wondering if we can move this, I think the recent topics cell was attached to the chatbox if this helps here is the code that did that silly i should have posted it.
Edit: Oh i see what you mean as a guest it is in the right place, but signed in it's like the first image i posted can we fix that?
Edit2: Fixed the issue changed the chabox top in the JS to fa_ticker_block and it moved up just fine thank you again!
- Code:
$(function() {
if (location.pathname == "/") {
var latestTopic = setInterval(function() {
if (_userdata.session_logged_in !== null) {
if (_userdata.session_logged_in) {
if (document.getElementById("chatbox_top") !== null) {
if (document.getElementById("left") !== null) {
clearInterval(latestTopic);
$('#left').detach().insertAfter('#chatbox_top')
}
}
} else {
if (document.getElementById("left") !== null) {
clearInterval(latestTopic);
$('#left').detach().prependTo('#wrapper')
}
}
}
}, 80)
}
});
Edit: Oh i see what you mean as a guest it is in the right place, but signed in it's like the first image i posted can we fix that?
Edit2: Fixed the issue changed the chabox top in the JS to fa_ticker_block and it moved up just fine thank you again!
Similar topics
» Placement of Chat Box
» Help with pop up from cell phones only
» Best Cell Phone Case???
» Transparent Cell's for forum.
» Placement of BB Codes
» Help with pop up from cell phones only
» Best Cell Phone Case???
» Transparent Cell's for forum.
» Placement of BB Codes
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum