[NODEBB] Help for my custom CSS
-
@phenomlab said in [NODEBB] Help for my custom CSS:
Hmm. You could use a simple jQuery function to replace that icon with the right one. Just seems a bit โoverkillโ but might be necessary
why not, if you can write this query Iโm not saying no, just to test
-
@phenomlab said in [NODEBB] Help for my custom CSS:
Hmm. You could use a simple jQuery function to replace that icon with the right one. Just seems a bit โoverkillโ but might be necessary
why not, if you can write this query Iโm not saying no, just to test
@DownPW might be a bit greedy, but try this
$(document).ready(function() { $(window).on('action:ajaxify.end', function(data) { $(this).find($(".fa")).removeClass('fa-nbb-none').addClass('fa-commenting-o'); }); }); -
JS code seems not working butโฆ
I see on ACP, the image of category is uploaded to imgur :

and I see this on dev console :

The url seems to not be encoded correctly, I donโt know why ???
If I change manually the URL in the dev console, itโs OK:


-
JS code seems not working butโฆ
I see on ACP, the image of category is uploaded to imgur :

and I see this on dev console :

The url seems to not be encoded correctly, I donโt know why ???
If I change manually the URL in the dev console, itโs OK:


@DownPW said in [NODEBB] Help for my custom CSS:
The url seems to not be encoded correctly, I donโt know why ???
Yes, that certainly seems the case. I think you need to take this issue up with the plugin developer.
-
the trick is to know which plugin is in question!!
-
the trick is to know which plugin is in question!!
@DownPW sorry. I meant the
imgurplugin author -
hmmm I donโt thinks so because I have the same problem on NO PRODUCTION VM and I have this bug too without nodebb-imgur-plugin.
I have test with a local url in public nodebb folder and itโs the same too
I test to desactivate all plugin one by one for see at the moment
-
hmmm I donโt thinks so because I have the same problem on NO PRODUCTION VM and I have this bug too without nodebb-imgur-plugin.
I have test with a local url in public nodebb folder and itโs the same too
I test to desactivate all plugin one by one for see at the moment
@DownPW let me know when your development server is available tomorrow and Iโll take a look at that code I provided previously
-
no problem Iโm at home tomorrow all the day
Iโll let you know if I find
-
I think itโs a nodebb issue, because with only one plugin and one theme activate :
- nodebb-plugin-composer-default@9.1.0 (installed, enabled)
- nodebb-theme-persona@12.1.1 (installed, enabled)
Custom CSS, custom JS, custom Header and all custom widgets are disableโฆ
Result itโs the same, I have this bug.
On your dev system, can you test to add a logo for a catรฉgorie, delete the icon and test a new topic in this category ?
I think you will have the same result.
Let me know if you test too !
-
I think itโs a nodebb issue, because with only one plugin and one theme activate :
- nodebb-plugin-composer-default@9.1.0 (installed, enabled)
- nodebb-theme-persona@12.1.1 (installed, enabled)
Custom CSS, custom JS, custom Header and all custom widgets are disableโฆ
Result itโs the same, I have this bug.
On your dev system, can you test to add a logo for a catรฉgorie, delete the icon and test a new topic in this category ?
I think you will have the same result.
Let me know if you test too !
@DownPW did you delete the icon ? Iโm wondering if this creates an orphaned reference to an icon which of course canโt be read.
-
yes off course I delete it
because if Idonโt delete the icon, she appears on bubble
Open issue here:
https://github.com/NodeBB/NodeBB/issues/10896
If I not delete icon, sheโs appear but not the image :

-
The issue is closed @phenomlab
Itโs a nodebb bug. Fixed in 2.5.3 milestone

-
The issue is closed @phenomlab
Itโs a nodebb bug. Fixed in 2.5.3 milestone

@DownPW Yes, I saw that. Caused by regression from what I see.
Thanks
-
JS code seems not working butโฆ
I see on ACP, the image of category is uploaded to imgur :

and I see this on dev console :

The url seems to not be encoded correctly, I donโt know why ???
If I change manually the URL in the dev console, itโs OK:


@DownPW said in [NODEBB] Help for my custom CSS:
JS code seems not working butโฆ
Sorry, that should have been something like this (obviously modify the source and replacement)
$(document).ready(function() { $(window).on('action:ajaxify.end', function(data) { $(".row").find($(".fa")).removeClass('fa-fw fa-comments-o').addClass('fa-check-to-slot'); }); }); -
hi @phenomlab
on v2.x , I have user online widget in my home page and I can center the widget like this :


because we have a div by default on the widget
I canโt do the same on v3.x
Any idea how to get the same result ?
Thanks Dude
-
hi @phenomlab
on v2.x , I have user online widget in my home page and I can center the widget like this :


because we have a div by default on the widget
I canโt do the same on v3.x
Any idea how to get the same result ?
Thanks Dude
@DownPW Iโd give the widget itself an
idand then add customcssto that
div#onlineusers { left: 0; right: 0; margin: 0 auto; position: relative; }
-
Yep, itโs a good idea thanks to you but Iโd like to display it without div card-header and body like the first screen
-
Yep, itโs a good idea thanks to you but Iโd like to display it without div card-header and body like the first screen
@DownPW In that case, change the
containercode to
<div id="onlineusers">{{body}}</div>And same CSS class
div#onlineusers { justify-content: center; display: flex; }Then add
paddingandmarginto suit -
Perfect my friend

Hello! It looks like you're interested in this conversation, but you don't have an account yet.
Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.
With your input, this post could be even better ๐
Register LoginDid this solution help you?
Related Topics
-
Test of youtube embeds
Solved Configure -
-
-
-
-
-
Nodebb Hashtag plugin
Solved General -