How to change left border width in Zen Mode PhpStorm? - ide

I started using the PhpStorm IDE.
I found the perfect mode for coding called Zen Mode.
But I have one point to make about this. Its left border is so wide. How can I change this?

In Zen / Distraction Free mode the code is kind of centred (hence that big gap on the left: it gets bigger on a wider screen). It is by design. You may want to use Full Screen mode instead. https://www.jetbrains.com/help/phpstorm/2021.1/ide-viewing-modes.html
You may also want to check these links for some tips on how to customize your IDE:
https://blog.jetbrains.com/idea/2020/04/ui-secrets-customize-the-appearance-of-intellij-idea/
https://blog.jetbrains.com/idea/2021/02/find-your-visual-zen/
https://www.jetbrains.com/help/phpstorm/2021.1/tool-windows.html
Regarding the editor gutter width in general: see IDEA-148002 and check the comments and linked tickets there.

Related

Default Shopify CSS seems busted, can't edit site. Attached image

Out of the blue, EVERY browser shows the same problem. The left-most column is squashed and refuses to expand. It makes it impossible to edit the template options. Any ideas? thanks :-)
This looks like a glitch with Shopify and would be better addressed by opening up a support ticket with their support team
Note: If you shrink your screen width to 599px wide or less, the sidebar should expand to be 100% of the window width - this might help if you're in a pinch and need to make updates right now

PhpStorm. Darcula theme. Disable left gap

How to disable the gap I've pointed to?
Or, at least, change its' color to the same as the editor area.
Distraction free mode works not as I want to.
Gutter background color can be changed here:

How to make photoshop right sidebar smaller?

I have OS X El Capitan 10.11 and Photoshop CC 2015. My issue is width of right sidebar - I want to make it narrower, because currently is way too wide for me and it makes workspace way too small to work on big files. I'm trying to hold LPM on one side of sidebar and I can make it wider, but can't make it narrower. I'm enclosing screenshot with selected sidebar and current width. How I can make it narrower?
Thank you for help!
Click here to see screnshot
Each panel has a different set with, for example Color/Kolor is actually thinner than Swatches/próbek. So I imagine the right hand sidebar will not reduced down in width lower than the largest panel. If you drag both Kolor and próbek off the right hand menu and create them as floating tabs you can then scale them as small as possible to see what I mean. They can then be locked back into the right hand menu

Toolbar Icon Size in PHPStorm and Intellij

I use both these IDE's and my only annoyance is the size of the toolbar icons - they're too small for me. Is there any way to increase the size? I've poked around, and I haven't found a way to assign an icon larger than about 20x20.
The simplest way to fix this is to go into Settings --> Appearance & Behavior Appearance.
Then check the box "Override default fonts by (not recommended):
Name: <"set your font"> Size: <"set your size">
This will increase the font sizes and icon toolbar sizes. This works well for HiDPI displays.
I'm afraid there is no way to do it.
Note that many developers prefer to disable the toolbar completely to save the vertical screen space. It doesn't provide a lot of useful features and everything that it offers can be accessed via keyboard shortcuts.
Don't know the shortcut? Not a problem at all, use Help | Find Action (Ctrl+Shift+A).
Under Linux, the icons are undersized. I fixed this by installing the JB JRE here.
Try to use this plugin. It has an option "Bigger Icons"
https://plugins.jetbrains.com/plugin/10044-atom-material-icons
You can use icon 23x23px. This is max size.
Settings --> Appearance & Behavior Appearance. and again Appearance.
Here it is shown where to look.

Header of a WP responsive theme won't properly remain on top at the top when scrolling; position:fixed and width:any% throws it out of whack

The WP responsive theme I'm working on:
http://www.wpexplorer.me/tetris/
I use Firebug for Firefox browser addon thingy to make changes before messing with the actual files. So if you have it or something similar, you will see that by adding position:fixed; to the #header section the header width shrinks well more than half its original size and the navigation menu is jacked up within the new shrunken space.
I have added other snippets of coding to the #header section like width:100%;, width:959px; and other percentages and pixels, which messes up the layout; especially when you resize the window down to what you would consider to be for a tablet and a mobile device - it's all out of whack. I can't get the sticky header for this theme to function or do right. Oh, I've also added z-index:200; to the #header section and margin:160px 0; to #main-content; these don't give me issues.
Adding the width: ; code to the #main-content doesn't seem to help either (which I read somewhere online that this was where the width code goes).
Anyway, does anyone know what code I need to make the header of this theme scroll up until it gets to the top of the page where it becomes sticky/static/fixed/on top (whatever the real term for it is) at all times? And, can you get it to work with the layout being in tact when the window is resized all the way down to the size of a mobile device?
Thanks.
This should work
#header-wrap{position:fixed;top:0;z-index:999;}
#pre-header{margin:20px 0 15px;width:960px;}
#main-content{margin:215px 0 30px;}
The position is fixed at the top using 0 with a z-index:999 you then need to set the width of the inner container pre-header 960px to match the rest.
You will need to setup the media queries for the other sizes you have setup. Easy, and Enjoy.
If you want the menu itself and not the social icons to become the top fixed bar without the social icons then you want to make a jquery scroll CSS change so that the #header becomes the fixed position.
It working with fixed header and social:
An illustration of it working without the social bar using a Jquery Scroll CSS change:
This is the way I would do it, I would move the menu down, and add the social icons to the menu itself. (Below is a screenshot of what I mean, the social icons are reduced to 75%)
PS. The social icons stand out to much so I would add a CSS3 Greyscale, and when the visitor hovers over them it turns on the color with a transition effect.
Hope this helps ;)