OffshoreCorpTalk Scheduled Upgrade and Maintenance on September 25th

Status
Not open for further replies.
aniglo22 said:
Can't replicate your issue . Can you share your logical resolution ?
Did you clear your cache ?
Click to expand...
You cannot? For the screenshot, I can replicate it on any device. It appears anytime with a low page width. The issue is the following inline CSS
Code:
.uix_sidebarInner {margin-top: -75px;}
in combination with the CSS from css.php, line 10:
Code:
Code:
@media (max-width: 900px) {
  body .uix_sidebarInner .uix_sidebar--scroller {
    margin-top: 0;
  }
}

I can reproduce it with almost any browser with a width less than or equal 900px. Any thoughts.

For the other point, You can check like here:
[IMG alt="JohnnyDoe"]http://localhost/data/avatars/s/28/28143.jpg?1654271978[/IMG]

Post in thread 'Russia residence - my journey'

Oct 3, 2024
Clank said:
I talked with the lawyer you mentioned. You need to go as a tourist and apply inside Russia, right?
Click to expand...
Correction: you need to go with a specific visa issued on the basis of your intention to apply for a permit.
Previously, all those posts would have been merged. Now, not anymore.
 
The merge function hasn't been activated yet; it will come later, so you don't need to worry about it right now 🙂

Toggle signature

Latest Video Interviews, Offshore Company Resources, Payment Processing Tips & Tricks, Articles and Anonymity Hints only a click away!
Support the Freedom of Speech of our Community

Disclaimer: Nothing I say should be taken as tax, legal or financial advice. Anything I say is for general informational purposes only. Always seek independent professional advice.
 
daniels27 said:
You cannot? For the screenshot, I can replicate it on any device. It appears anytime with a low page width. The issue is the following inline CSS
Code:
.uix_sidebarInner {margin-top: -75px;}
in combination with the CSS from css.php, line 10:
Code:
Code:
@media (max-width: 900px) {
  body .uix_sidebarInner .uix_sidebar--scroller {
    margin-top: 0;
  }
}

I can reproduce it with almost any browser with a width less than or equal 900px. Any
daniels27 said:
You cannot? For the screenshot, I can replicate it on any device. It appears anytime with a low page width. The issue is the following inline CSS
Code:
.uix_sidebarInner {margin-top: -75px;}
in combination with the CSS from css.php, line 10:
Code:
Code:
@media (max-width: 900px) {
  body .uix_sidebarInner .uix_sidebar--scroller {
    margin-top: 0;
  }
}

I can reproduce it with almost any browser with a width less than or equal 900px. Any thoughts.

For the other point, You can check like here:
[IMG alt="JohnnyDoe"]http://localhost/data/avatars/s/28/28143.jpg?1654271978[/IMG]

Post in thread 'Russia residence - my journey'

Oct 3, 2024
Clank said:
I talked with the lawyer you mentioned. You need to go as a tourist and apply inside Russia, right?
Click to expand...
Correction: you need to go with a specific visa issued on the basis of your intention to apply for a permit.
Previously, all those posts would have been merged. Now, not anymore.
Click to expand...

thoughts.

For the other point, You can check like here:
[IMG alt="JohnnyDoe"]http://localhost/data/avatars/s/28/28143.jpg?1654271978[/IMG]

Post in thread 'Russia residence - my journey'

Oct 3, 2024
Clank said:
I talked with the lawyer you mentioned. You need to go as a tourist and apply inside Russia, right?
Click to expand...
Correction: you need to go with a specific visa issued on the basis of your intention to apply for a permit.
Previously, all those posts would have been merged. Now, not anymore.
Click to expand...
Yeah can reproduce it now . The internal CSS is the correct one but it won't get applied because the external css from the stylesheet is more specific (exactly 1 scoring point) because of the element selector "body" .
To fix it they need to change the internal CSS to :
CSS:
body .uix_sidebarInner .uix_sidebar--scroller {margin-top: 75px;}
instead
CSS:
.uix_sidebarInner .uix_sidebar--scroller {margin-top: 75px;}

Last edited: Oct 3, 2024
 
Sorry @aniglo22, not sure but can you check, I think they have both inline and css.php:

Code:
Code:
@media (max-width: 900px) {
  body .uix_sidebarInner .uix_sidebar--scroller {
    margin-top: 0;
  }
}
.uix_sidebarInner .uix_sidebar--scroller {
  margin-top: 75px;
}

But I think the problem here is that there is a media query applied to with<=900px which removes the 75 margin. This is fine. But then, the counter part on the parent (.uix_sidebarInner) is missing, which still has -75px margin. Hence, either both parent and child need a respective media query or none. Or am I missing something now?
 
daniels27 said:
Sorry @aniglo22, not sure but can you check, I think they have both inline and css.php:

Code:
Code:
@media (max-width: 900px) {
  body .uix_sidebarInner .uix_sidebar--scroller {
    margin-top: 0;
  }
}
.uix_sidebarInner .uix_sidebar--scroller {
  margin-top: 75px;
}

But I think the problem here is that there is a media query applied to with<=900px which removes the 75 margin. This is fine. But then, the counter part on the parent (.uix_sidebarInner) is missing, which still has -75px margin. Hence, either both parent and child need a respective media query or none. Or am I missing something now?
Click to expand...
Yes the external css from the css.php endpoint is the one applied because its more specific " body .uix_sidebarInner .uix_sidebar--scroller" .
It will always apply the internal css , if we make the internal css the same specificity as the stylesheet . Because the stylesheet (css.php) is specified in the head element and the internal CSS further down in the document .
But the media query is more specific (from css.php) so we need to add a "body " selector to the internal CSS to make it equal specific .
Before changing the internal css :
1727956622844.webp


After changing the internal css :
from
CSS:
.uix_sidebarInner .uix_sidebar--scroller {margin-top: 75px;}
to
CSS:
body .uix_sidebarInner .uix_sidebar--scroller {margin-top: 75px;}
after:
1727956743287.webp
 
The CSS isue you discussed here should have been fixed now. Please have a look and feel free to post here if you still have errors or find new ones 🙂

Toggle signature

Latest Video Interviews, Offshore Company Resources, Payment Processing Tips & Tricks, Articles and Anonymity Hints only a click away!
Support the Freedom of Speech of our Community

Disclaimer: Nothing I say should be taken as tax, legal or financial advice. Anything I say is for general informational purposes only. Always seek independent professional advice.
 
It's not me, the forum developers are doing a good work here 😉
daniels27 said:
Perfect. Working much better now! Your help is very appreciated as always.
Click to expand...

Toggle signature

Latest Video Interviews, Offshore Company Resources, Payment Processing Tips & Tricks, Articles and Anonymity Hints only a click away!
Support the Freedom of Speech of our Community

Disclaimer: Nothing I say should be taken as tax, legal or financial advice. Anything I say is for general informational purposes only. Always seek independent professional advice.
 
mraleph said:
Still, there is no back button - like it had been present in previous version - in the down left side; bloody hard to navigate from an iPhone when the OCT is put on home screen.
Previously, you could click on a new post in any particular thread from the main forum page - now you're landed on that sub-forum main page when clicking from main forum page; loss of time.
Post merger should be enabled in time to come 😉
Click to expand...
can you check if it works now for oyu ?

Toggle signature

Latest Video Interviews, Offshore Company Resources, Payment Processing Tips & Tricks, Articles and Anonymity Hints only a click away!
Support the Freedom of Speech of our Community

Disclaimer: Nothing I say should be taken as tax, legal or financial advice. Anything I say is for general informational purposes only. Always seek independent professional advice.
 
mraleph said:
Can't check post merger.
Click to expand...
Forget the post merger, once it is available we will announce it here in the thread 😉

Toggle signature

Latest Video Interviews, Offshore Company Resources, Payment Processing Tips & Tricks, Articles and Anonymity Hints only a click away!
Support the Freedom of Speech of our Community

Disclaimer: Nothing I say should be taken as tax, legal or financial advice. Anything I say is for general informational purposes only. Always seek independent professional advice.
 
Update :
It seems that we've also managed to fix the last minor issues caused by the upgrade. For instance, there was a problem with logging users out, which resulted in an error. This has been resolved today, and during the process (which lasted 2-3 minutes), there was an unfortunate error where posts were made from the wrong user accounts. There was no access to others' accounts; it just posted incorrectly.

Additionally, we have split this thread in two, so that ONLY errors are posted here in this thread ”“ no eye candy, possible changes, or improvements (that are not errors) to make things better, prettier, or for personal preferences.

If there are more errors, feel free to report them here in this thread, the rest into the below thread.
[COLOR=#b388ff] C [/COLOR]

Thread 'OffshoreCorpTalk suggestions, random off topic, complaints,feedback'

Sep 28, 2024
@JohnLocke please send me a PM, I can't start a conversation myself.

Toggle signature

Latest Video Interviews, Offshore Company Resources, Payment Processing Tips & Tricks, Articles and Anonymity Hints only a click away!
Support the Freedom of Speech of our Community

Disclaimer: Nothing I say should be taken as tax, legal or financial advice. Anything I say is for general informational purposes only. Always seek independent professional advice.
 
dziter said:
Hi!

It seems I am not able to send DM and I should based on the rules:
https://www.offshorecorptalk.com/help/conversation-criterium/

May be it is linked to the recent upgrade/maintenance of the forum?
Click to expand...
Yes, may be. @JohnLocke , could you have a look at it, please?

dziter said:
@Forester : I hope you do not mind I took a screenshot of your profile as example
Click to expand...
No problem of course ”“ and really, there is something wrong; there should be a “Send direct message” button between “Follow” and “More options” (see the screenshot attached ”“ this is from your profile as I see it 🙂 )

dziter said:
I did not receive your test DM by the way.
Click to expand...
As I have just explained in the DM that has just been sent: this is neither a system fail nor yours 😉. Just an outage of my brain 🙁 If you do not have it now, please report.

Attachments​

  • send_message2.webp
    send_message2.webp
    20.5 KB · Views: 64
Toggle signature
--------------------------------------------------------------------------------------------------------------------------------------

I am just a simple countryman. Anything I say is only a personal opinion, not a certified advice 🙂

If you think it makes sense, you can like it; if opposite, please, tell me, why I am wrong...
 
No problem at all, I have received your DM and I could reply to it.
However, I am not able to initiate a private conversation/send a DM as I do not see the option "Send direct message" that you mentionned.
 
There is a glitch in the user account promotions, working on it. Right now you account has been promoted, please try now and report back here.

Toggle signature

Latest Video Interviews, Offshore Company Resources, Payment Processing Tips & Tricks, Articles and Anonymity Hints only a click away!
Support the Freedom of Speech of our Community

Disclaimer: Nothing I say should be taken as tax, legal or financial advice. Anything I say is for general informational purposes only. Always seek independent professional advice.
 
@JohnLocke : Hi, thanks a lot for your help. I highly appreciate it. I confirm that everything works perfectly for me as I see the DM option.
 
We have just upgraded the advanced mail system (PM) for mentor group gold members and Bronze members. In the tests we conducted, it appears that all the sorting done before the upgrade is restored, so there is no need to sort again.

Personally, I greatly enjoy the mail system, and I hope all of you who have access to the mentor group and Bronze do as well.

Toggle signature

Latest Video Interviews, Offshore Company Resources, Payment Processing Tips & Tricks, Articles and Anonymity Hints only a click away!
Support the Freedom of Speech of our Community

Disclaimer: Nothing I say should be taken as tax, legal or financial advice. Anything I say is for general informational purposes only. Always seek independent professional advice.
 
Hi @JohnLocke ,
maybe an issue with the private messages,
I have a couple of private messages, not too old (current month), I have replied, and conversation was going on, but now I can't reply anymore (no reply button), is that normal?
I think I should be able to continue the PM conversation?

Thanks a lot
Mike
 
Status
Not open for further replies.

JohnnyDoe.is is an uncensored discussion forum
focused on free speech,
independent thinking, and controversial ideas.
Everyone is responsible for their own words.

Quick Navigation

User Menu