3.1.x Extensions Database 3.1 / 3.2 ⇒ Partner Page
-
- Users
- Posts: 43
- Joined: 04 Dec 2015, 00:19
Re: Partner Page
Getting error updating
The migration "\dmzx\partner\migrations\partner_install" is not fulfillable, missing migration "\phpbb\db\migration\data\v320\v320a1".
The migration "\dmzx\partner\migrations\partner_install" is not fulfillable, missing migration "\phpbb\db\migration\data\v320\v320a1".
-
- Users
- Posts: 118
- Joined: 06 Feb 2016, 19:22
Re: Partner Page
What's new in update sir? Can also guest allow to view this partner?
Compilation of Android Roms, Recoverys, Apps, Games and Tricks
Visit my blog http://androidcribs.com

Visit my blog http://androidcribs.com
- Androidcribs.com
- Androidcribs

-
- Founder
- Posts: 6464
- Joined: 13 Jan 2014, 21:45
Re: Partner Page
Download updatedSuperl wrote: 09 Mar 2016, 16:15 Getting error updating
The migration "\dmzx\partner\migrations\partner_install" is not fulfillable, missing migration "\phpbb\db\migration\data\v320\v320a1".
Yes can set permissionskillfrenzy wrote: 09 Mar 2016, 16:17What's new in update sir? Can also guest allow to view this partner?
-
- Users
- Posts: 118
- Joined: 06 Feb 2016, 19:22
Re: Partner Page
Sir where can I set permission?
You do not have the required permissions to view the files attached to this post! Maybe your post count is too low.
-
- Users
- Posts: 118
- Joined: 06 Feb 2016, 19:22
Re: Partner Page
haha I didn't noticed...lol Thanks a lot sir

-
- Users
- Posts: 120
- Joined: 06 Jun 2015, 12:41
Re: Partner Page
Hello,
where can I change the order??
t sorts only according to alphabet,
however, I would like to determine the order myself.
Googletranslate is my frind??
where can I change the order??
t sorts only according to alphabet,
however, I would like to determine the order myself.
Googletranslate is my frind??
-
- Users
- Posts: 120
- Joined: 06 Jun 2015, 12:41
Re: Partner Page
No idea like one the order can determine??
Thanks for Info..
Thanks for Info..
-
- Founder
- Posts: 6464
- Joined: 13 Jan 2014, 21:45
Re: Partner Page
No for now it cannot be determined will take a look if possible in net version.
-
- Users
- Posts: 83
- Joined: 19 Jun 2016, 05:47
Re: Partner Page
This may or may not be a stupid question. I dislike editing the ext itself, because if there is an upgrade I am afraid I will break it's functionality...
That being said, all of the extensions that use the page-body have nothing there, so it displays on the background. I want to actually have it display in a container, so it matches everything else. On this extension in partner.css I can paste:
And then it shows in that gradient container properly. I do not want this for my overall page-body, only certain extensions. How would I edit "#page-body" to use this in CssMagic instead of editng the root files of the extensions?
That being said, all of the extensions that use the page-body have nothing there, so it displays on the background. I want to actually have it display in a container, so it matches everything else. On this extension in partner.css I can paste:
Code: Select all
#page-body {
position: relative;
overflow: hidden;
background: linear-gradient(#212121, #313131, #313131, #212121);
padding: 5px 10px;
border-radius: 7px;
}
-
- Admin
- Posts: 5105
- Joined: 06 Apr 2014, 16:12
Re: Partner Page
Copy the css file from the ext and place it in cssmagic.css and adjust to suit your needs (if im reading i tright)

-
- Users
- Posts: 83
- Joined: 19 Jun 2016, 05:47
Re: Partner Page
Won't that edit everywhere that uses page-body? Like the main forum index page?
I don't want it on that one, but pretty much more of the other ones I do.
Edit: Like is there anyway to do:
I don't want it on that one, but pretty much more of the other ones I do.
Edit: Like is there anyway to do:
Code: Select all
partners.page-body {
position: relative;
overflow: hidden;
background: linear-gradient(#212121, #313131, #313131, #212121);
padding: 5px 10px;
border-radius: 7px;
}
-
- Users
- Posts: 83
- Joined: 19 Jun 2016, 05:47
Re: Partner Page
Here is what I did. Board Rules ext, boardrules_controller.html has <div id="container"> wrapping the entire rules section.
CssMagic:
The in the Downloads, Partners, and FAQ I edited the html files to wrap in <div id="container">. Porbably not the best way to go about this, but I did not want this on my forum index page. This also makes it match the rest of the static pages created with Pages ext.
Edit: By default this displays on the navbar. Would like to request that it is optional, but it still works even if it is not on nav bar. That way I can just use the page link and make a Button for it on the Button menu ;)
CssMagic:
Code: Select all
#container {
position: relative;
overflow: hidden;
background: linear-gradient(#212121, #313131, #313131, #212121);
padding: 5px 10px;
border-radius: 7px;
margin: inherit;
}
Edit: By default this displays on the navbar. Would like to request that it is optional, but it still works even if it is not on nav bar. That way I can just use the page link and make a Button for it on the Button menu ;)