Community Forums › Forums › Archived Forums › General Discussion › Layout Help with Genesis Framework
Tagged: genesis framework, layout
- This topic has 2 replies, 2 voices, and was last updated 11 years, 5 months ago by eze1981.
-
AuthorPosts
-
April 19, 2013 at 5:54 pm #36466eze1981Member
Guys, please help me out here. My site http://www.startupslove.com
I'd like to change layout as follow:
Website total width should be 1040px
Website layout sizes should be: 500px content | 180px sidebar | 310px sidebar
Please let me know if that makes sense, or if you have any questions.
Thank you in advance!
April 20, 2013 at 5:43 am #36540AnitaCKeymasterHello, it's customary to only post an issue once on the forum. I have closed the first one you added about this last night.
Look in your style.css file for the following areas. Responsive design uses percentages. You will need to adjust the percentages to the widths you desire.
To change the content area:
.content-sidebar-sidebar #content, .sidebar-content-sidebar #content, .sidebar-sidebar-content #content { width: 56.8104%; }
To change the sidebar (middle column):
.content-sidebar-sidebar .sidebar, .sidebar-content-sidebar .sidebar, .sidebar-sidebar-content .sidebar { width: 37.931%; }
To change the sidebar-alt (last column):
#sidebar-alt { width: 15.2778%; }
Need help with customization or troubleshooting? Reach out to me.
April 21, 2013 at 7:35 am #36683eze1981MemberThank you very much Anitac!
As I wanted to disable the mobile responsiveness, I went ahead and used a fixed width for each one.
Here is what I did. Not sure if is good, but seems to work fine for me. However, please let me know if you see anything wrong with it and I can change it.
/* 04b - 1040px CSS Grid ----------- */
#sidebar-alt {
width: 310px;
}.footer-widgets-1,
.footer-widgets-2,
.footer-widgets-3,
.sidebar,
#header .widget-area {
width: 30.555555555%; /* 352px / 1040px */
}.content-sidebar-sidebar .sidebar,
.sidebar-content-sidebar .sidebar,
.sidebar-sidebar-content .sidebar {
width: 180px;
}.content-sidebar-sidebar #content,
.sidebar-content-sidebar #content,
.sidebar-sidebar-content #content {
width: 510px;
}.content-sidebar #content,
.sidebar-content #content,
#title-area {
width: 65.277777777%; /* 752px / 1040px */
}.content-sidebar-sidebar #content-sidebar-wrap,
.sidebar-content-sidebar #content-sidebar-wrap,
.sidebar-sidebar-content #content-sidebar-wrap {
width: 705px;
}.content-sidebar #content-sidebar-wrap,
.full-width-content #content,
.full-width-content #content-sidebar-wrap,
.sidebar-content #content-sidebar-wrap {
width: 100%; /* 1040px / 1040px */
}.footer-widgets-1,
.footer-widgets-2,
.sidebar-content #sidebar,
.sidebar-sidebar-content #sidebar,
#content,
#content-sidebar-wrap,
#footer .gototop,
#sidebar-alt,
#title-area {
float: left;
}.content-sidebar-sidebar #sidebar-alt,
.footer-widgets-3,
.sidebar,
.sidebar-content #content,
.sidebar-content-sidebar #content-sidebar-wrap,
.sidebar-sidebar-content #content,
.sidebar-sidebar-content #content-sidebar-wrap,
#footer .creds,
#header .widget-area {
float: right;
}Thanks for your help, and I'll be sure to only do 1 posting per topic for the next time 🙂
-
AuthorPosts
- The topic ‘Layout Help with Genesis Framework’ is closed to new replies.