I'm solving a problem with style settings. Namely, in the desktop view, the width of the toggle is defined by the text,
while in the mobile view, it has the same width as the header.
I came up with a simple solution in the browser in debug mode. Just "uncheck" width.
The problem is how to write this using CSS / JS. This way, the "comment out" code so setting an empty value
$(".tg-site-layout--default #primary").css("width", "");
will not have the same effect.
But, is it even possible to "comment out" a code in another file? Or can it be solved in another way?
Please help
Thank you
PS. It's on this page - It is a website in wordpress for testing purposes only.