nicolesage
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Tiny Forge] Remove or move footer widget on just home pageAm I totally off by doing something like this (it fixed the overlapping problem on the cell phone but then on the computer the footer was back up in the middle of the screen:
body.home footer @media screen and (min-width: 770px) {
position: absolute;
bottom: 0px;
width: 100%;
}I originally had just this (which worked for moving footer down on computer but caused it to overlap on cell phone):
body.home footer {
position: absolute;
bottom: 0px;
width: 100%;
}Forum: Themes and Templates
In reply to: [Tiny Forge] Remove or move footer widget on just home pagehmm OK. I guess I’m just having a hard time understanding why the footer now overlaps the menu when viewing on the cell phone screen. and then when I tap the menu and it drops down, then text from the footer is mixed in with the menu items. Trying to find out where along the lines I put something in my child’s theme to possibly cause this.
Forum: Themes and Templates
In reply to: [Tiny Forge] Remove or move footer widget on just home pageSo I played with the below adding in just the ‘padding-top’ but it changes the padding on the view on the computer, not on the cell phone screen.
/* 12.1 Minimum width of 770 pixels */
@media screen and (min-width: 770px) {
/* Three footer widget areas */
#footer-widgets {
width: 100%;
border-top: none;
padding-top: 20%;
}
#footer-widgets.three #footer-widget-left {
float: left;
width: 30%;
padding-right: 2.3%;
padding-top: 20%;
}
#footer-widgets.three #footer-widget-middle {
float: left;
width: 30%;
padding-left: 2.5%;
padding-right: 2.3%;
padding-top: 20%;
}
#footer-widgets.three #footer-widget-right {
float: right;
width: 30%;
padding-left: 2.5%;
padding-top: 20%;Am I at least in the right direction to adjust the footer on cell phone screens? Need it moved down slightly so it does not overlap the menu.
thank you!
Forum: Themes and Templates
In reply to: [Tiny Forge] Remove or move footer widget on just home pageAlso thank you for all those links! I just saw that post.
Forum: Themes and Templates
In reply to: [Tiny Forge] Remove or move footer widget on just home pageI am using a child’s theme and refer to the theme’s style sheet for help.
In changing the rule to the 770px media screen, would it be adding a padding to the top? or do I need to target the footer for this? Any tips on what direction to go would be greatly appreciated. Basically just on the home page of cell phone view I need to move the footer down so it does not overlap the menu.
Thank you for all your help this afternoon!
Forum: Themes and Templates
In reply to: [Tiny Forge] Remove or move footer widget on just home pageOK so I did:
body.home footer {
position: absolute;
bottom: 0px;
width: 100%;
}which seems to be working except now on the mobil homepage it’s acting weird by overlapping footer onto the menu bar.
Forum: Themes and Templates
In reply to: [Tiny Forge] Remove or move footer widget on just home pageSo that works but it applies it to every single page. I was trying to make it work with just the home page since all the other pages have content so by making the footer absolute it overlaps with content on those other pages.
maybe something with bogy.home footer instead of footer#colophon?
That might not make sense, I’m still learning by experimenting.
Forum: Themes and Templates
In reply to: [Tiny Forge] Remove or move footer widget on just home pagehmmm yes I see what you mean now. Maybe I should play with making the overall image wider so it fits to the wider screens?
Forum: Themes and Templates
In reply to: [Tiny Forge] Remove or move footer widget on just home pageThank you, I appreciate you experimenting! I’ve been trying several ways also with sticky footers and positioning in the css but nothing seems to be moving it.
I see what you mean about the image extending, I could make it smaller. right now the images is 1060 x 826 but the plugin I used to make it full screen is supposed to make it responsive so the image shouldn’t be extending. I will have to play with that a bit.
Forum: Themes and Templates
In reply to: [Tiny Forge] Remove or move footer widget on just home pageSo what I am trying to do is on the home page move the footer down towards the bottom so it sits right under the image of the sign. That way their homepage has their hours and such because all they want are those and the image which is their logo.
thank you!
Forum: Themes and Templates
In reply to: [Tiny Forge] Remove or move footer widget on just home pageGreat, thank you!
Website is here
Forum: Themes and Templates
In reply to: [Tiny Forge] Remove or move footer widget on just home pageI understand and apologize for that. The client does not want it live until it is completed. If you let me know when you are on the message board and have time to check the site I will make it live and send the link. I will be at the computer working on it most of the day so will keep checking back to see when you are on.
Sorry for any inconvenience.
Forum: Themes and Templates
In reply to: [Tiny Forge] Remove or move footer widget on just home pageWould it work to move it down using something like the about code that removed it but instead of ‘display: none’ it moves it to the bottom or the screen?
Forum: Themes and Templates
In reply to: [Tiny Forge] Remove or move footer widget on just home pageI’m not sure how to place the image in a <div> since I am using the plugin ‘Background Manager’ so the image on every page is a full screen. Any suggestions where to look to accomplish moving the footer down while still using this plugin on the page?
The code worked to remove the footer (thank you!!) But now the client is asking for the footer to be on the home page since it has the business hours, etc but moved down.
Any direction to accomplish this would be greatly appreciated. Thank you!
Forum: Plugins
In reply to: [Column Shortcodes] three columnsIs there a solution to using 3 column? My third column keeps falling under the 1st one. I did not use any padding or margins and used this setup:
[one_third]
a
[/one_third][two_third]
b
[/two_third][two_third_last]
c
[/two_third_last]