Quantcast
Channel: MyBB Community Forums - Tutorials
Viewing all articles
Browse latest Browse all 685

[1.8] Dropdown panel: Post Options, Thread display options

$
0
0
Change this:

[Image: 8JcZNjk.png]

To:
[Image: SIG3Vgg.png]
[Image: d8Eg2HI.png]

1 - create extra.css (Admin CP > Templates & Style > Themes > Add Stylesheet)
1.1 - Add code below:
PHP Code:
.droppanel {
    
background-color#efefef;
    
width170px;
    
margin0px auto;
    
text-aligncenter;
    
font-size11px;
    
padding-bottom3px;
    
border-radius0px 0px 4px 4px;
    
border1px solid #ccc;
    
border-width0px 1px 1px;
    
border-stylenone solid solid;

2 - In newthread template
2.1 - Find
PHP Code:
</table
2.2 - Add below:
PHP Code:
<div class="droppanel">
    <
a href="#" class="post_options">Post Options</a>
</
div>
<
script type="text/javascript">
    var 
elements = $("tr").filter(':eq(13), :eq(14), :eq(15), :eq(16)');
    
elements.hide();
    $(
".post_options").click(function(e) {
        
e.preventDefault();
        
elements.toggle();
    });
</script> 

It´s all...
You can make something too newreply etc...



Change this:

[Image: PWTvPXs.png]

To:

[Image: epqcbaf.png]
[Image: MTe3l7f.png]

1 - create extra.css (Admin CP > Templates & Style > Themes > Add Stylesheet)
1.1 - Add code below:
PHP Code:
.droppanel {
    
background-color#efefef;
    
width170px;
    
margin0px auto;
    
text-aligncenter;
    
font-size11px;
    
padding-bottom3px;
    
border-radius0px 0px 4px 4px;
    
border1px solid #ccc;
    
border-width0px 1px 1px;
    
border-stylenone solid solid;


2 - In forumdisplay_threadlist template
2.1 - Find:
PHP Code:
</table
2.2 - Add below:
PHP Code:
<div class="droppanel">
    <
a href="#" class="exibition_topic">Thread Display Options</a>
</
div>
<
script type="text/javascript">
    var 
elements = $("form").filter(':eq(1)');
    
elements.hide();
    $(
".exibition_topic").click(function(e) {
        
e.preventDefault();
        
elements.toggle();
    });
</script> 

It´s all...

Viewing all articles
Browse latest Browse all 685

Trending Articles