MyBB Community Forums

Full Version: Vienna 1.8.7
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
(2018-08-02, 04:01 PM)ThrashMayhem Wrote: [ -> ]
(2018-08-02, 03:32 PM)iAndrew Wrote: [ -> ]Templates > Vienna > ForumBit Templates > forumbit_depth2_forum + forumbit_depth2_cat

<span class="float_right forum_status forum_{$lightbulb['folder']} ajax_mark_read" title="{$lightbulb['altonoff']}" id="mark_read_{$forum['fid']}"><i class="fa fa-quote-right"></i></span>



Thanks for the answer mate, but how can I change it for images?

Replace that line in those two templates with this
<span class="forum_status forum_{$lightbulb['folder']} ajax_mark_read" title="{$lightbulb['altonoff']}" id="mark_read_{$forum['fid']}"></span>

Open Global.css

Replace this
.forum_status {
	width: 30px;
	height: 25px;
	display: inline-block;
	background-repeat: no-repeat;
	text-shadow: #fff 0px 1px 1px;
	margin-left: 15px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	
	font-size: 23px;
}

.forum_status i {
	display: inline-block;
	padding: 5px 5px;
}

.forum_on {
	color: #646464;
	text-shadow: #fff 0px 1px px;
}

.forum_off, .forum_offlock, .forum_offlink {
color: #ccc;
text-shadow: rgba(0,0,0,0.3) 0px -1px 0px;
}

.forum_off i {
	color: #646464;
	opacity: .4;
	text-shadow: #fff 0px 1px 1px;
}

.forum_offlock i:before {
	color: #646464;
	content: "\f05e";
	text-shadow: #fff 0px 1px 1px;
}

.forum_offlink i:before {
	color: #646464;
	content: "\f079";
	text-shadow: #fff 0px 1px 1px;
}

With this
.forum_status {
	height: 30px;
	width: 30px;
	background: url(images/forum_icon_sprite.png) no-repeat 0 0;
	display: inline-block;
}

.forum_on {
	background-position: 0 0;
}

.forum_off {
	background-position: 0 -30px;
}

.forum_offclose {
	background-position: 0 -60px;
}

.forum_offlink {
	background-position: 0 -90px;
}
(2018-08-02, 04:57 PM)iAndrew Wrote: [ -> ]
(2018-08-02, 04:01 PM)ThrashMayhem Wrote: [ -> ]
(2018-08-02, 03:32 PM)iAndrew Wrote: [ -> ]Templates > Vienna > ForumBit Templates > forumbit_depth2_forum + forumbit_depth2_cat

<span class="float_right forum_status forum_{$lightbulb['folder']} ajax_mark_read" title="{$lightbulb['altonoff']}" id="mark_read_{$forum['fid']}"><i class="fa fa-quote-right"></i></span>



Thanks for the answer mate, but how can I change it for images?

Replace that line in those two templates with this
<span class="forum_status forum_{$lightbulb['folder']} ajax_mark_read" title="{$lightbulb['altonoff']}" id="mark_read_{$forum['fid']}"></span>

Open Global.css

Replace this
.forum_status {
	width: 30px;
	height: 25px;
	display: inline-block;
	background-repeat: no-repeat;
	text-shadow: #fff 0px 1px 1px;
	margin-left: 15px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	
	font-size: 23px;
}

.forum_status i {
	display: inline-block;
	padding: 5px 5px;
}

.forum_on {
	color: #646464;
	text-shadow: #fff 0px 1px px;
}

.forum_off, .forum_offlock, .forum_offlink {
color: #ccc;
text-shadow: rgba(0,0,0,0.3) 0px -1px 0px;
}

.forum_off i {
	color: #646464;
	opacity: .4;
	text-shadow: #fff 0px 1px 1px;
}

.forum_offlock i:before {
	color: #646464;
	content: "\f05e";
	text-shadow: #fff 0px 1px 1px;
}

.forum_offlink i:before {
	color: #646464;
	content: "\f079";
	text-shadow: #fff 0px 1px 1px;
}

With this
.forum_status {
	height: 30px;
	width: 30px;
	background: url(images/forum_icon_sprite.png) no-repeat 0 0;
	display: inline-block;
}

.forum_on {
	background-position: 0 0;
}

.forum_off {
	background-position: 0 -30px;
}

.forum_offclose {
	background-position: 0 -60px;
}

.forum_offlink {
	background-position: 0 -90px;
}

Thanks!!!

I have onlly one more question.

when you press the log in button, the login frame open in the bottom of the index, It's possible that the same frame will open in the same place wehere you try to log in?


Thanks in advance!

[Image: 2132q79.png]
I recently saw that when you press the get more button on the smilies, doesn't open the pop up window to browse all smilies, how can I fix this?

Thanks in advance!
(2018-08-07, 04:00 PM)ThrashMayhem Wrote: [ -> ]I recently saw that when you press the get more button on the smilies, doesn't open the pop up window to browse all smilies, how can I fix this?

Thanks in advance!

For the modal login and other modals add this at the bottom of Global.css.
This might fix the smilies popup.

/** Modal Start **/

.blocker {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	z-index: 9999;
	padding: 20px;
	box-sizing: border-box;
	background-color: rgb(0,0,0);
	background-color: rgba(0,0,0,0.75);
	text-align: center;
}

.blocker:before{
	content: "";
	display: inline-block;
	height: 100%;
	vertical-align: middle;
	margin-right: -0.05em;
}

.blocker.behind {
	background-color: transparent;
}

.modal {
	width: 400px;
	text-align: left;
	background: #fff;
	display: inline-block;
	vertical-align: middle;
	position: relative;
	z-index: 2;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-o-border-radius: 8px;
	-ms-border-radius: 8px;
	border-radius: 8px;
	-webkit-box-shadow: 0 0 10px #000;
	-moz-box-shadow: 0 0 10px #000;
	-o-box-shadow: 0 0 10px #000;
	-ms-box-shadow: 0 0 10px #000;
	box-shadow: 0 0 10px #000;
}

.modal a.close-modal {
	position: absolute;
	top: -12.5px;
	right: -12.5px;
	display: block;
	width: 30px;
	height: 30px;
	text-indent: -9999px;
	background: url(images/close.png) no-repeat 0 0;
}

.modal-spinner {
	display: none;
	width: 64px;
	height: 64px;
	position: fixed;
	top: 50%;
	left: 50%;
	margin-right: -32px;
	margin-top: -32px;
	background: url(images/spinner_big.gif) no-repeat center center;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-o-border-radius: 8px;
	-ms-border-radius: 8px;
	border-radius: 8px;
}

/** Modal End **/
Yes, that solve the problem! Thanks men!
Drop down menu is not working, could somebody help me from this problem?
(2018-08-28, 11:40 AM)suresh Wrote: [ -> ]Drop down menu is not working, could somebody help me from this problem?

You haven't uploaded the vienna image folder into your MyBB image folder.
(2018-08-28, 12:11 PM)iAndrew Wrote: [ -> ]
(2018-08-28, 11:40 AM)suresh Wrote: [ -> ]Drop down menu is not working, could somebody help me from this problem?

You haven't uploaded the vienna image folder into your MyBB image folder.

Thanks
How to change the social site links, should i need to change from admin panel or direct in xml?
(2018-09-12, 05:16 AM)suresh Wrote: [ -> ]
(2018-08-28, 12:11 PM)iAndrew Wrote: [ -> ]
(2018-08-28, 11:40 AM)suresh Wrote: [ -> ]Drop down menu is not working, could somebody help me from this problem?

You haven't uploaded the vienna image folder into your MyBB image folder.

Thanks
How to change the social site links, should i need to change from admin panel or direct in xml?

I believe it in Index Page Templates
Can this be updated for 1.8.19
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35