MyBB Community Forums

Full Version: Square theme
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
"Square is a minimalistic template, renewed to 1.8 MyBB series. You can find a lot of details in the design, and of course, all squared.

Enjoy the crossbrowser design, tested in the latest Google Chrome, Mozilla Firefox and Opera versions.

¡¿What are you waiting for?! Join us now! "

On which template above text is located?
category description is disappearing after a few second .
http://www.irandeliver.com/forum/index.php

1) how to fix it ?
2) how to make it invisible to users and visible to Google ?
How can I edit the QUICK LINKS in the footer?
They are not shown in the language file or footer template.

Thanks for help.
(2015-02-12, 05:37 PM)Pikeman Wrote: [ -> ]How can I edit the QUICK LINKS in the footer?
They are not shown in the language file or footer template.

Thanks for help.

They must be in footer template. You should recheck the footer template. You must have missed them. 
OK. Everything is fine. All found. Sorry.

But another question please.

Is it possible to change the width from 1024px to 85% or 90% of the whole theme?
(2015-02-12, 06:09 PM)Pikeman Wrote: [ -> ]OK. Everything is fine. All found. Sorry.

But another question please.

Is it possible to change the width from 1024px to 85% or 90% of the whole theme?

yes it's possible check this
http://forum.parsiandownload.net/
Nice. Can you tell me how to do this?
Thanks fo help.
find .wrapper in global.css and change width to 98% or what ever you want

go to headerinclude of your theme

change this

<script type="text/javascript">

jQuery(function($) {
    $(".clickedbuttons").hide();
    $(".buttons").click(function() {
        $(".sidebar").animate({height: "hide", opacity: 0}, 500,
            function() {
                $(".forums").animate({width: "984px"}, 500);
            });
        $(this).hide();
        $(".clickedbuttons").show();
        $.cookie("sidebar","collapsed", {expires: 365});
        return false;
    });
    $(".clickedbuttons").click(function() {
        $(".forums").animate({width: "724px"}, 500,
            function() {
                $(".sidebar").animate({height: "show", opacity: 1}, 500);
            });
        $(this).hide();
        $(".buttons").show();
        $.cookie("sidebar","expanded", {expires: 365});
        return false;
    });
    if($.cookie("sidebar") == "collapsed") {
        $(".buttons").hide();
        $(".clickedbuttons").show();
        $(".forums").css("width","984px");
        $(".sidebar").hide();
    };
});
</script>
to this


<script type="text/javascript">
jQuery(function($) {
    $(".clickedbuttons").hide();
    $(".buttons").click(function() {
        $(".sidebar").animate({height: "hide", opacity: 0}, 500,
            function() {
                $(".forums").animate({width: "100%"}, 500);
            });
        $(this).hide();
        $(".clickedbuttons").show();
        $.cookie("sidebar","collapsed", {expires: 365});
        return false;
    });
    $(".clickedbuttons").click(function() {
        $(".forums").animate({width: "74%"}, 500,
            function() {
                $(".sidebar").animate({height: "show", opacity: 1}, 500);
            });
        $(this).hide();
        $(".buttons").show();
        $.cookie("sidebar","expanded", {expires: 365});
        return false;
    });
    if($.cookie("sidebar") == "collapsed") {
        $(".buttons").hide();
        $(".clickedbuttons").show();
        $(".forums").css("width","100%");
        $(".sidebar").hide();
    };
});
</script>
good luck Heart
(2015-02-06, 07:35 AM)amanda2014 Wrote: [ -> ]
(2015-02-03, 03:27 PM)id820 Wrote: [ -> ]Yes, that's why i said 'including' the admin folder. Really weird Big Grin

Which version of Square are you running? It was added in a later version.


Hey Amanda, sorry but, how can i check my theme version? I got Mybb 1.8.0 not 1.8.3 tho.
hiya, this theme is really neat.

i have a question.
i would like to edit the header menu link (index, calender, help etc). i want to replace these with different link and some of these link will be a drop down menu, i noticed that the theme has a dropmenu for the usercp, is it advisable to use the same dropdown menu mechanism for the header?

edit: decided to use my own dropdown menu =)