Quantcast
Channel: Myskins Studio - Free MyBB Themes, Custom MyBB Themes and Premium MyBB Themes - All Forums
Viewing all 5470 articles
Browse latest View live

bigrchat forum open's

$
0
0
Welcome all the our wonderful, Excellent forum I have been online for hours creating this site for you although it was quite challeging we are finished.

Bigrchat forums is and online site come interact with users, chat, discuss topics etc, debate, And you'll find anything expected from a general forum.


Who is behind this? bigrchat was createted by Nellano Doyle (me) on September 24th 2015.


We're happy you take time to read this thread thanks again and join our forum all the best.
http://bigrchat.icyboards.net/index.php

need points

points needed

Add User Title HTML

$
0
0
Hello Guys,
In this version of MyBB is present a problem with HTML on User Title, ok, enjoy this mini tutorial for easy fix that.

Go to your FTP and go to "inc/functions_post.php" edit that and go to line 269

The line 269 present that:

Code:
$post['usertitle'] = htmlspecialchars_uni($post['usertitle']);

Replace that with:

Code:
// $post['usertitle'] = htmlspecialchars_uni($post['usertitle']);

Now go to ACP and on Title of User make an HTML and in postbit is present an image and star!

PS: Thanks to Dvdxseo for help me on italian forum!
PS2: Don't allow the user to change a User Title is a vulnerable for XSS

Bye!

HOW TO GET A NICE LOOKING PAGINATION

$
0
0
Hello peeps

I know you all wondering how do I get a good looking pagination?
Well it pretty simple and easy to do and I'm going to tell you how Smile

Here a screen shot of what we going to achieve

.png  pag.png (Size: 2.62 KB / Downloads: 1)

First off the templates

Quote:Home » Template Sets » themename Templates » Multipage Pagination Templates

in here we have
Quote:multipage
multipage_breadcrumb
multipage_end
multipage_jump_page
multipage_nextpage
multipage_page
multipage_page_current
multipage_page_link_current
multipage_prevpage
multipage_start

so we start with multipage

The code should be something like this:
Code:
<div class="pagination">
<span class="pages">{$lang->multipage_pages}</span>
{$prevpage}{$start}{$mppage}{$end}{$nextpage}{$jumptopage}
</div>

we need to replace this with this
Code:
<div class="pagination">
<ul class="pagination">
{$prevpage}{$start}{$mppage}{$end}{$nextpage}{$jumptopage}
</ul>
</div>

multipage done.

multipage_breadcrumb

we dont need to do any changes in this one.

multipage_end

We dont need to do any changes to this one too.

multipage_jump_page

That right you guess it nothing to do on this one too.

multipage_nextpage

The code should be like something like this:
Code:
<a href="{$page_url}" class="pagination_next">{$lang->next} &raquo;</a>

we need to change it to this
Code:
<li class="previous"><a href="{$page_url}"><strong>{$lang->next}</strong></a></li>

multipage_nextpage done.

multipage_page

The code should look like this:
Code:
<a href="{$page_url}" class="pagination_page">{$i}</a>

we need to change it to this:
Code:
<li><a href="{$page_url}">{$i}</a></li>

multipage_page done.

multipage_page_current

The code should look like:
Code:
<span class="pagination_current">{$i}</span>

we going to change that to this:
Code:
<li class="active"><a href="#">{$i}</a></li>

multipage_page_current done.

multipage_page_link_current

The code should look this:
Code:
<a href="{$page_url}" class="pagination_current">{$i}</a>

We going to change it to this:
Code:
<li class="active"><a href="{$page_url}">{$i}</a></li>

multipage_page_link_current done.

multipage_prevpage

The code should look like this:
Code:
<a href="{$page_url}" class="pagination_previous">&laquo; {$lang->previous}</a>

We going to change that to this:
Code:
<li class="disabled"><a href="{$page_url}" class="previous"><strong>{$lang->previous}</strong></a></li>

multipage_start

And the last template we going to change

The code should look like this:
Code:
<a href="{$page_url}" class="pagination_first">1</a> {$lang->multipage_link_start}

And we going to change it to this:
Code:
<li><a href="{$page_url}">1</a> {$lang->multipage_link_start}</li>


Multipage_start done
So now we done the templates we now going to the theme css part
To do this go to:
Quote:Home » Themes » themename

here we have global.css this is where we going to put in the css
Quote:click global.css and then click Edit Stylesheet: Advanced Mode
and scroll to the bottom

so at the bottom we want to put in the following:
Code:
@media (min-width: 768px)
.pagination {
   display: inline-block;
height:41px;
}
.pagination {
   position: relative;
   display: block;
height:41px;
}
.pagination {
   display: inline-block;
   padding-left: 0;
   margin: 20px 0;
   border-radius: 4px;
height:41px;
}
.pagination>ul {
   display: inline-block;
   padding: 0;
   margin: 0;
   color: #FFF;
   word-spacing: -.5px;
   background: #2c3e50;
   border-radius: 6px;
height:41px;
}
.pagination li {
   display: inline-block;
   margin-right: -3px;
   word-spacing: normal;
   vertical-align: middle;
height:41px;
}
.pagination li.previous>a, .pagination li.next>a, .pagination li.previous>span, .pagination li.next>span {
   min-width: auto;
   padding: 12px 17px;
   font-size: 16px;
   background-color: transparent;
   border-right: 2px solid #e4e7ea;
height:41px;
}
.pagination li:first-child>a, .pagination li:first-child>span {
   border-left: none;
   border-radius: 6px 0 0 6px;
height:41px;
}
.pagination li>a, .pagination li>span {
   display: inline-block;
   min-width: 41px;
   min-height: 41px;
height:41px;
   padding: 12px 10px;
   font-size: 14px;
   line-height: 16px;
   color: #FFF;
   text-align: center;
   background: 0 0;
   border: none;
   border-left: 2px solid #e4e7ea;
   outline: 0;
   -webkit-transition: .25s ease-out;
   transition: .25s ease-out;
}
.pagination li.active>a, .pagination li.active>span {
   color: #fff;
   background-color: #1abc9c;
   border-color: #dfe2e5;
height:41px;
}

You can change your colors by editing pagination li.active and pagination>ul

hope that helps Big Grin

Majestic Theme - Is it possible to have same profile layout width in both forumwidth?

$
0
0
As you know Majestic theme has this option, having wide and narrow forum.

Profile layout looks bad in wide option, like this :

Wide :
http://i.hizliresim.com/aDnva5.jpg

Profile layout looks great in narrow mode :
Narrow :
http://i.hizliresim.com/Po7dVN.jpg

When I make forum layout narrow, I want to make only message part get bigger. I want profile layout stay the same.

What should I do?

Nebosh Training in Chennai

$
0
0
That's also a good point about making a post in the Gaming Table forum redirecting to here, since this thread only has 60 views in three days. I'll go ahead and do that now.I can tell ya what I did.......I delete everything at the entrace and placed my firworks right when ya walk in the park. Then ran a path through the middle of the fireworks. As the VIP entered the park I advanced the time on the show to go off as he was walking through. So he stoped and watched it.

Hello community!

$
0
0
Hello I am Lee Yang.

I just started thinking in Mybb for my new project. Now I found this big community and is great. Thanks for be here.

Cheers.

Tesla Game?

Hello people New kid in town

$
0
0
Hello guys,,


This is sandy i am new to this forum was searching for theme for my new forum and landed here hopefully will get some awesome work done here thanks !

This sort of chat with the position the medical

$
0
0
This sort of chat with the position the medical attendants I'm and administration staff there to figure out how they connect Neurocell and how disinformation share and it's astounding some different things up by Nancy as having move to electronic framework met numerous spots don't have what we call a complete electronic well being record framework thus a complete electronic well being care system is one drinking spree framework all through there the office and usually you have various an electronic.

http://www.x4facts.com/neurocell/

The other rebuked as the egg yolks

$
0
0
The other rebuked as the egg yolks usurious that more extensive or other use of coconut oil for the most part dad segments NO2 Blast of bacon and uh... I’m out the entryway uh... it's similar to normally great you three-hour them sooner or later for our staff is that that they yet that specific speaking to hundreds folio_ and get this show on the road the ball spot world and didn’t you anything before rearm of fares.

http://t-rexmusclefacts.com/no2-blast/

Experience too yet I'll no young lady

$
0
0
Experience too yet I'll no young lady who loves hear one another later we cherish doing her cosmetics they all bode well that Aurora Deep Sea Eye Cream you wanna and overwhelming cosmetics each once in a while I’m beyond any doubt that you know you don't have any %uh microorganisms your back here for my sister straighter for quick paced blending in with your with between the your cosmetics it all sea and again.

http://www.idolizeadvancedeyeserumfacts....eye-cream/

As methanol you ass that is then it you

$
0
0
As methanol you ass that is then it you prepare Balart you know given credit I mean simply managing essentially you in view of Just orbislim dial around it and images that their you do some truly sneaky stop and take it and attempt to rename it like some insane Rob a room toys R Us writes now definitely you know individual act like you came up with that name you're significantly greater ass you know saucers .

http://alphashredcritique.com/orbislim/

Nicostrato

$
0
0
Greetings, I'm Nicostrato and am relatively new to MyBB.

Welkom Big Grin

Cual tema gratis me recomiendan?

$
0
0
Necesito un tema para mi foro, pero tengo dudas, cual me recomiendan?

Cual es el tema de la pagina myskins?

$
0
0
Esta chulisimo, alguien me puede decir como conseguirlo?

Como puedo cambiar el tipo de letra de mi foro?

$
0
0
Alguien sabe como se cambia el tipo de letra en mybb?

balling in the house

$
0
0
hi guys,

I just wanna download themes and plugs for our mybb boards

Majestic so lags on scrolling

$
0
0
When I scroll my forum on Majestic it is really lagged. But when I scroll my forum on default theme then is everything ok. So why on Majestic are so big lags? Ahh I probably know. Cause is too much CSS and jQuery?

PS: my forum - http://haihai.pl/
Viewing all 5470 articles
Browse latest View live