-
Notifications
You must be signed in to change notification settings - Fork 6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
width of right frame #104
Comments
@fabian-stoeckl, I am trying to edit the width of my right frame to make it wider on PC, but can't seem to to figure out how. Any help is greatly appreciated! Following the README, I created an
This did not result in any change at all though. I also tried moving the wrapper and section code before the Sorry for the noob question, and thanks for your help! |
If you still need it, I made it work: Pay attention, the double lines
are needed, otherwise it does not apply. |
I recomend use media queries to adress with this kind of things. Take a look at: |
The solution given here which was cited above didn't work for me, unfortunately. Incorrect layout for mobile devices persisted. |
Copied from the solution in this issue: pages-themes/minimal#104 (comment)
Used code from https://github.com/mambax/mambax/blob/a6c364c0a0866b8d422446f44eb5207315636951/assets/css/style.scss#L1 pointed to in this Issue: pages-themes/minimal#104
Is there a way to decrease the size of the left frame (containing the logo) and increase that of the right frame?
I played around in "jekyll-theme-minimal.scss" with the following width values:
header {
width:270px;
float:left;
position:fixed;
-webkit-font-smoothing:subpixel-antialiased;
}
header {
padding-right:320px;
}
section {
width:500px;
float:right;
padding-bottom:50px;
}
The result looked fine on the PC but didn't work on my mobile phone. I also checked the internet for information but couldn't find any help. Does anyone know?
The text was updated successfully, but these errors were encountered: