@phenomlab said in Layout Issues/Transparency:
Does it work properly now?
Yes, it does 🙂
@cagatay good. Thanks for confirming.
Can we ensure that the section I show in the picture can be hidden after the user reads it once?
@cagatay Not easily without modifying the function itself. The function will look for the end of the thread and append the banner there. It’s possible to place a cookie on the user’s machine, although they will need to dismiss the banner for that to be saved.
One other immediate issue is that the cookie is browser session based, so you would need a unique identifier to determine if the message should be displayed or not - this essentially means that we test for the existence of a stored cookie on chat load and if we find a match, we hide the message.
This will have an impact on performance if you have hundreds of chat messages available, and for that reason, I’d recommend not taking this route.
got the point Mark, thank you for your explanation.
Hi,
How can i change those areas colors to white one?
Try your browser’s developer tools to try to find the codes that interest you
To test & adapt because I searched very quickly :
.skin-noskin .composer {
background-color: #xxxxxx !important;
color: #xxxxxx !important;
}
.bootstrap-tagsinput, .form-control {
background-color: #xxxxxx;
border: 1px solid var(--bs-border-color);
color: var(--bs-body-color);
}
.bootstrap-tagsinput, .form-control {
background-color: var(--bs-card-cap-bg);
border: 1px solid var(--bs-border-color);
color: var(--bs-body-color);
}
.composer .tags-container .bootstrap-tagsinput {
background: #xxxxxx;
}
@cagatay As you are using the Sudonix themes, find
.bootstrap-tagsinput, .form-control
And replace it with this
.bootstrap-tagsinput, .form-control {
background-color: var(--bs-body-bg) !important;
border: 1px solid var(--bs-border-color);
color: var(--bs-body-color);
}
And, find
.composer .tags-container .bootstrap-tagsinput input
Replace the block with
.composer .tags-container .bootstrap-tagsinput input, ::placeholder {
color: var(--bs-body-color-muted) !important;
}
thank you Mark.
By the way, gif is not working i dont know why?
For example;
@cagatay said in Rendering issues post migration to Sudonix theme/code:
By the way, gif is not working i dont know why?
It not that it doesn’t work - you have included a link to an image, which OGProxy tries to render but won’t because it’s an image and not a site URL as such.
For “Giphy” type images, you should use the button and select an image from there - for example
so i dont have any gif section and also mine is not similar as yours.
@cagatay because you don’t have the giphy extensuon installed.
you mean tenor gif?
@cagatay yes, sorry.
my tenor gif is not working
03 - {"error":{"code":403,"message":"Requests from referer <empty> are blocked.","status":"PERMISSION_DENIED","details":[{"@type":"type.googleapis.com/google.rpc.ErrorInfo","reason":"API_KEY_HTTP_REFERRER_BLOCKED","domain":"googleapis.com","metadata":{"consumer":"projects/83199950872","service":"tenor.googleapis.com"}}]}}
done it
Mark hi
Here is my problem, 00:40 and night here but the site is saying good morning.
Same problem in my web site also.
How we can fix this problem?
@cagatay that’s not a problem or a bug. Anything past midnight is considered morning
@phenomlab said in Rendering issues post migration to Sudonix theme/code:
that’s not a problem or a bug. Anything past midnight is considered morning
sorry for my ignorance
@phenomlab lol Is there a way to calculate this based on sun rise/set…
@crazycells anything is possible, but this would of course vary by location… Unless you use a weather api