- This topic is empty.
-
AuthorPosts
-
November 21, 2014 at 2:41 pm #188947
klaw718
ParticipantOkay one last question guys: what’s the right code for making the widgets more centered and also make the bottom-border under the titles shorter? I have the genesis framework and everything on the page was in a structural wrap, so I removed the footer widget wrap so I could make the footer area full width. All I want to do now is line up the widgets with the main body of the site so the widgets don’t look so spaced out and messy. Also, the bottom-border is too long, as you can see from my site, http://www.thepeacetribe.com.
[MOD EDIT – Codedump removed]
Please let me know if you have any suggestions. Thanks in advance for your help!
- Kristen
November 21, 2014 at 2:47 pm #188948Paulie_D
MemberNow you’re doing what we call codedumping and we kinda frown upon it.
It takes up too much space, is rarely useful without the accompanying HTML and is often incomplete or not actually related to the issue.
Try a link instead…if you can’t create a reduced case demo.
November 21, 2014 at 2:56 pm #188950Paulie_D
MemberYour main content width is restricted by a wrapping div with these classes
.site-inner .wrap { clear: both; margin: 60px auto; overflow: hidden; max-width: 1240px; padding: 0px 60px 0px 60px; }
so you could copy some of those properties (specifically the max-width) over to
.footer-widgets .wrap { background-color: #006B24; clear: both; color: #fff; max-width: 1240px; /* here */ overflow: hidden; padding: 40px 70px 0px 70px; text-align: left; margin: 0 auto; /* added to center element */ }
Also move the bg color to
.footer-widgets { clear: both; overflow: hidden; width: 100%; }
…and it will be full width green.
November 21, 2014 at 2:59 pm #188952klaw718
Participantokay sorry about that, the link to my site is listed above. I don’t really know what html or css to put here to start a case..
November 21, 2014 at 3:02 pm #188953Paulie_D
MemberAlso, the bottom-border is too long
It’s not clear what you mean but if you’re referring to the white border under “About” and “Site” etc….well that’s a little complex.
How long is too long?
The element with the border is an
h4
and headings like that are 100% wide by default.So, again, how long is too long?
What ‘look’ are you after?
November 21, 2014 at 3:05 pm #188954klaw718
ParticipantI don’t want the lines to be touching one another, it looks as if there’s no space between them. Also, I think the bigger issue is the spacing of the widgets themselves. I’m trying to figure out what’s wrong with my code so that I can space them evenly and make them line up with the main content of my site (the posts and sidebar).
November 21, 2014 at 3:10 pm #188955klaw718
Participantnevermind, I fixed it.
November 21, 2014 at 3:11 pm #188956klaw718
Participantthanks for your help!
-
AuthorPosts
- The forum ‘CSS’ is closed to new topics and replies.