Oh no! Where's the JavaScript?
Your Web browser does not have JavaScript enabled or does not support JavaScript. Please enable JavaScript on your Web browser to properly view this Web site, or upgrade to a Web browser that does support JavaScript.
Not a member yet? Click here to register.
Forgot Password?

BSF

Asked Modified Viewed 14,307 times
P
pattyland
P
  • Junior Member, joined since
  • Contributed 23 posts on the community forums.
  • Started 4 threads in the forums
  • Started this discussions
asked
Junior Member

[mp]587[/mp]
Edited by N/A on 16-09-2013 16:08,
0 replies

10 posts

J
jikaka
J
jikaka 10
www.rusfusion.ru - russian nss
  • Veteran Member, joined since
  • Contributed 946 posts on the community forums.
  • Started 82 threads in the forums
answered
Veteran Member

good for start!
:)
0 replies
— 3 months later —
L
lifeguard
L
  • Member, joined since
  • Contributed 113 posts on the community forums.
  • Started 27 threads in the forums
answered
Member

Yep

Nice theme. But nobody see this?
When go to admin . Add news
i.imgur.com/aav40pH.jpg


How to fix this?
0 replies
P
pattyland
P
  • Junior Member, joined since
  • Contributed 23 posts on the community forums.
  • Started 4 threads in the forums
  • Started this discussions
answered
Junior Member

@lifeguard: Thanks your your comment. I know there are still display errors... The problem is that the theming engine is so limited! I cant set classes in the admin backend without core modifications...
0 replies
P
PHPist
P
PHPist 10
  • Junior Member, joined since
  • Contributed 25 posts on the community forums.
  • Started 2 threads in the forums
answered
Junior Member

Good theme! Kroax Video not opening and Fusion Video Panel video size changed (fix), thanks.
0 replies
C
Chan
C
Chan 0
Lead Developer of PHP-Fusion
  • Super Admin, joined since
  • Contributed 3,841 posts on the community forums.
  • Started 232 threads in the forums
  • Answered 6 questions
answered
Super Admin

Quote

pattyland wrote:

@lifeguard: Thanks your your comment. I know there are still display errors... The problem is that the theming engine is so limited! I cant set classes in the admin backend without core modifications...


Haha!! You feel my pain.

Don't start, if you do, be prepared for a very long journey ahead of you.

You can have tables themed up tbl1, tbl2 (or tb1 tb2 ) to achieve the same table-striped effect, You can add them in your theme to simplify matters. All admin panel pages use the css class.
0 replies
P
pattyland
P
  • Junior Member, joined since
  • Contributed 23 posts on the community forums.
  • Started 4 threads in the forums
  • Started this discussions
answered
Junior Member

@PHPist; Thanks for your comment! I'm not very sure what you want you mean with Kroax Video? Is this some kind of video hoster which doesn't work well with my theme?

@hien: Well, I'm not sure what's nastier; Core modifications or preg_replace'ing the output... The problem that @lifeguard mentioned are inputs with any classes... I could try to get them via the name... Hello attribute selectors! :o
0 replies
A
Ankur
A
Ankur 10
Hi! Its me, Ankur Thakur! smile
  • Veteran Member, joined since
  • Contributed 1,277 posts on the community forums.
  • Started 60 threads in the forums
answered
Veteran Member

Cool!

Faga, your themes are always creative and exhibit the best modern design. I would love to find more creative and latest HTML5 based themes... Well done, keep it up :)
0 replies
P
pattyland
P
  • Junior Member, joined since
  • Contributed 23 posts on the community forums.
  • Started 4 threads in the forums
  • Started this discussions
answered
Junior Member

@Ankur: Thank you, but I'm not Faga :(
0 replies
— 1 month later —
L
lifeguard
L
  • Member, joined since
  • Contributed 113 posts on the community forums.
  • Started 27 threads in the forums
answered
Member

So, there is no solution for this time problem?
0 replies
C
Chan
C
Chan 0
Lead Developer of PHP-Fusion
  • Super Admin, joined since
  • Contributed 3,841 posts on the community forums.
  • Started 232 threads in the forums
  • Answered 6 questions
answered
Super Admin

Sure will have solution. The faster way is Don't enable bootstrap in admin mode since that's the problem.

I have not check the theme, but there will be a add_to_head(); which themes usually would do, the method will be used to call bootstrap .js and .css files. And it usually will be made in the first few lines in theme.php (all coders do this usually)... Again I am just guessing here.

While it is on front end, yes responsive and everything because you can theme side and table and layout the render page grid. But not in Admin Panel since the add news page has a problem.

Now, you gotta mod that theme via this method... To stop loading bootstrap when admin panel is on.

if (!ADMIN_PANEL) { ... Add bootstrap header inside here }


Next method would be just recode the admin panel, or mod on the bootstrap CSS file with an extra .block file since bootstrap is base on float left (hence responsive).

So what I would do is to destroy the float via this.

 if (ADMIN_PANEL) {
add_to_head("
<style>
div { display: inline-block !important; position:relative !important; float:none !important;}
</style>
");
}


Or something along with that nature (to destroy bootstrap CSS files) so it goes back to normal (I.e. Not responsive) on Admin panel.

Just a thought ..
0 replies

Labels

None yet

Statistics

  • Views 0 views
  • Posts 10 posts
  • Votes 0 votes
  • Topic users 6 members

0 participants

Notifications

Track thread

You are not receiving notifications from this thread.

Related Questions

Not yet