MyBB Community Forums

Full Version: Flow Theme Free Release
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
(2018-03-10, 01:12 AM)Password1234 Wrote: [ -> ]how can i change the logo?
i tried to upload the logo1.png to my root in images==> flow and it didnt work.

try to hard refresh (Ctrl + F5).
It is not actually designed for 1.8.19 but with 'ignore compatibility mode', I installed it. It is a very good theme but it would be an 'EXCELLENT' theme if it would be totally RESPONSIVE. It is kinda disappointment for me when I saw it is not fully responsive. Sad
(2019-02-27, 03:49 PM)DarKMaSk Wrote: [ -> ]It is not actually designed for 1.8.19 but with 'ignore compatibility mode', I installed it. It is a very good theme but it would be an 'EXCELLENT' theme if it would be totally RESPONSIVE. It is kinda disappointment for me when I saw it is not fully responsive. Sad

Actually I already had completed making its responsive version a year ago but due to this(https://community.mybb.com/thread-206582.html) problem, I never released it publically,
You can check out it's demo @ https://Post4VPS.com (Post4VPS Responsive Theme).

If that problem could be sorted out then it would be awesome.
(2019-02-28, 04:01 PM)HMR Wrote: [ -> ]
(2019-02-27, 03:49 PM)DarKMaSk Wrote: [ -> ]It is not actually designed for 1.8.19 but with 'ignore compatibility mode', I installed it. It is a very good theme but it would be an 'EXCELLENT' theme if it would be totally RESPONSIVE. It is kinda disappointment for me when I saw it is not fully responsive. Sad

Actually I already had completed making its responsive version a year ago but due to this(https://community.mybb.com/thread-206582.html) problem, I never released it publically,
You can check out it's demo @ https://Post4VPS.com (Post4VPS Responsive Theme).

If that problem could be sorted out then it would be awesome.

Perhaps if you share the alpha here, some of the members may have the free time and or be able to take it for a test drive and look further under the hood and possibily come up with a solution, though it is understandable to not post the alpha if the final product is planned to be premium or what not.
(2019-02-28, 04:01 PM)HMR Wrote: [ -> ]
(2019-02-27, 03:49 PM)DarKMaSk Wrote: [ -> ]It is not actually designed for 1.8.19 but with 'ignore compatibility mode', I installed it. It is a very good theme but it would be an 'EXCELLENT' theme if it would be totally RESPONSIVE. It is kinda disappointment for me when I saw it is not fully responsive. Sad

Actually I already had completed making its responsive version a year ago but due to this(https://community.mybb.com/thread-206582.html) problem, I never released it publically,
You can check out it's demo @ https://Post4VPS.com (Post4VPS Responsive Theme).

If that problem could be sorted out then it would be awesome.

bro please check pm 

Tq
Please update the theme.
Issue:Authorization code mismatch. Are you accessing this function correctly? Please go back and try again.
Whoa this is an awesome theme just like https://4hub.net/how-to-host-on-twitch/ and I really like it. Thanks for sharing it and cheers.
Why there mybb download about this theme
Hey, I was wondering if you could help me. I'm trying to add 2 new tabs to the navigation bar on the top of the forums (where portal, member list, etc) is. The two new tabs/links are "Store" and "Discord".

Here's the FontAwesome Unicode Codes for each -

Store -> f54e / Goes to -> https://vanguardservers.net/store
Discord -> f392 / Goes to -> https://discord.gg/xbj3qEE

------------

Here's the forum: https://vanguardservers.net
(2019-10-17, 01:09 AM)Algorithmz Wrote: [ -> ]Hey, I was wondering if you could help me. I'm trying to add 2 new tabs to the navigation bar on the top of the forums (where portal, member list, etc) is. The two new tabs/links are "Store" and "Discord".

Here's the FontAwesome Unicode Codes for each -

Store -> f54e / Goes to -> https://vanguardservers.net/store
Discord -> f392 / Goes to -> https://discord.gg/xbj3qEE

------------

Here's the forum: https://vanguardservers.net
 
You need to make a couple of changes in the global css

FIND (around line 107)
#logo ul.top_links a.search::before,
#logo ul.top_links a.memberlist::before,
#logo ul.top_links a.calendar::before,
#logo ul.top_links a.help::before,
#logo ul.top_links a.portal::before {
	font: normal normal normal 14px/1 FontAwesome;
	font-size: 2em;
	display: block;
	margin-bottom: 5px;
}


REPLACE IT WITH
(just added to first to lines to the top)
#logo ul.top_links a.store::before,
#logo ul.top_links a.discord::before,
#logo ul.top_links a.search::before,
#logo ul.top_links a.memberlist::before,
#logo ul.top_links a.calendar::before,
#logo ul.top_links a.help::before,
#logo ul.top_links a.portal::before {
	font: normal normal normal 14px/1 FontAwesome;
	font-size: 2em;
	display: block;
	margin-bottom: 5px;
}

Just before that add
(just added to first to lines to the top)
#logo ul.top_links a.store::before {
    content: "\f54e";
}
#logo ul.top_links a.discord::before {
    content: "\f392";
}


In your header template

Find
<ul class="menu top_links">

Then wherever you want the links to show add the following in to this that ul tag

<li><a href="https://vanguardservers.net/store" class="store"><span>Store</span></a></li>
<li><a href="https://discord.gg/xbj3qEE" class="discord"><span>Discord</span></a></li>
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22