Community Forums › Forums › Archived Forums › Design Tips and Tricks › Prallax Pro: Customizing Footer
Tagged: parallax-pro
- This topic has 6 replies, 3 voices, and was last updated 10 years, 1 month ago by
khull.
-
AuthorPosts
-
February 28, 2015 at 3:49 am #142636
Mahesh
MemberHi,
I am editing the parallax pro theme for my clients. I have managed to edit the footer using shortcodes.
However, I have yet to find a way to remove the category links and also make the footer widgetize at the place of category links.
Any idea how to accomplish this?
Any help on this is much appreciated. 🙂
February 28, 2015 at 5:59 am #142639Davinder Singh Kainth
Member1. Those category links at bottom is basically menu items of your selected 'secondary menu'. You can either uncheck menu being selected as 'secondary menu' or bring menu below primary menu at top part by removing following code from functions.php file
//* Reposition the secondary navigation menu remove_action( 'genesis_after_header', 'genesis_do_subnav' ); add_action( 'genesis_footer', 'genesis_do_subnav', 7 );
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesFebruary 28, 2015 at 6:01 am #142640Davinder Singh Kainth
Member2. Parallax theme does have footer widgets but please note - it is only has one footer widget. To add more widgets, look for following code in functions.php file.
//* Add support for 3-column footer widgets add_theme_support( 'genesis-footer-widgets', 1 );
Replace it with
//* Add support for 3-column footer widgets add_theme_support( 'genesis-footer-widgets', 3 );
Now you will have 3 footer widgets but you have add to required styling for new footer widgets in style.css file.
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesMarch 5, 2015 at 9:06 am #143316khull
MemberI used this to change a site to 4 columns using the above, but in responsive (media 480) I'd like them to stack because the columns are very narrow on a phone. I know it's a CSS thing but I can't get it to work.
Here's the
@media only screen and (max-width: 480px) {.home-even .widget-title,
.home-odd .widget-title {
font-size: 26px;
}.home-even,
.home-odd {
font-size: 22px;
}.footer-widgets .widget-title {
font-size: 14px;
}.home-odd h1 {
font-size: 26px;
}}
March 5, 2015 at 9:12 am #143321Davinder Singh Kainth
MemberKhull, I don't think 'private reply' feature works perfectly on this forum setup. You may want to add a public reply or connect with query posting user directly.
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesMarch 5, 2015 at 9:57 am #143329khull
MemberI forgot to mention, I have also tried the below change and it didn't work:
@media only screen and (max-width: 480px) {.home-even .widget-title,
.home-odd .widget-title {
font-size: 26px;
}.home-even,
.home-odd {
font-size: 22px;
}.footer-widgets .widget-title {
font-size: 14px;
}.home-odd h1 {
font-size: 26px;
}.footer-widgets-1,
.footer-widgets-2,
.footer-widgets-3,
.footer-widgets-4 {
width: 100%;
padding: 10px;
}
}March 5, 2015 at 3:04 pm #143376khull
MemberLatest update - I can get it to stack by inserting a clear:both but the width won't change.
Here’s what I have figured out.
In media 480:
.footer-widgets .widget-title {
font-size: 20px;
}
is working - it changes it only in the mobile & not on the site - but
.footer-widgets-1,
.footer-widgets-2,
.footer-widgets-3,
.footer-widgets-4 {
clear: both;
width:100%;
padding: 10px;
}
doesn’t work.If I change the width to 100% from 25% in the regular footer section
.footer-widgets-1 {
float: left;
padding: 0 0px 0 0;
width: 100%;
text-align: left;
font-size: 14px;
}
It works like a charm. But, then the regular site stacks.
If you do inspect element in Chrome, it clearly shows the css as media=all so it isn’t pulling from the media 480.I’ve even tried pasting the entire footer section into 480 and changing it to 100% in 480 and it doesn’t work.
The site is here: http://acctivate.com/
-
AuthorPosts
- The forum ‘Design Tips and Tricks’ is closed to new topics and replies.