Forum Replies Created
-
AuthorPosts
-
June 22, 2016 at 12:32 am in reply to: How can I add a fullscreen optin to a page/post on Parallax Pro? (Genesis) #187986
William
MemberHi Martie,
I understood you correctly, this is how I would tackle it:
#1 - Register a widget area & add your opt-in form in text widget
#2 - Hook the widget at "genesis_after_header" for single pages
#3 - fiddle with you CSS until it looks good! 🙂
Genesis Customization Service | Quick fixes whenever you need them ! | Contact me at Fixmysite.com !
June 22, 2016 at 12:26 am in reply to: Remove "Leave a Reply" from SOME pages – Agentpress Pro #187985William
MemberPlease visit in the WP admin:
Genesis > Theme Settings > Comments & Trackbacks > Un-click enable comments on posts
Let me know if that works 🙂
Genesis Customization Service | Quick fixes whenever you need them ! | Contact me at Fixmysite.com !
William
MemberThe home page has a class of "home" in the body tag. you can you that to target elements on the homepage exclusively.
You will still need to do a bit of fiddling, but this should get you started!
.home .site-title > a { text-indent: 0px; display: block !important; background: none !important; }
Genesis Customization Service | Quick fixes whenever you need them ! | Contact me at Fixmysite.com !
William
MemberDo you still have an issue? I see you have a background image and your logo?
Genesis Customization Service | Quick fixes whenever you need them ! | Contact me at Fixmysite.com !
William
MemberHi there,
When you hover over your menu item you have added a padding of 10px and a border while in its regular state you have 8px padding and no border!
Look for:
.genesis-nav-menu a:hover
and change the padding to 8px and get rid of the border 🙂
Genesis Customization Service | Quick fixes whenever you need them ! | Contact me at Fixmysite.com !
William
MemberCan you please be a bit more detailed 🙂 Perhaps include an illustration of what you want to do!
Genesis Customization Service | Quick fixes whenever you need them ! | Contact me at Fixmysite.com !
William
Memberadd_action("......where ever you want to hook it.....", "tiles_function" ); function tiles_function() { // Try to get all the top posts in a single query $first_posts = get_posts( array( 'category' => array( 6, 7, 8 ) ); // Then get all the posts that should end up last $last_posts = get_posts( array( 'category' => 5 ); // Merge the 2 arrays of posts, first posts first, last posts last $posts = array_merge( $first_posts, $last_posts ); // Display the tiles! (WP Tiles 1.0 only!) the_wp_tiles( $posts ); }
Add it to your front-page.php and let me know if it works 🙂
Genesis Customization Service | Quick fixes whenever you need them ! | Contact me at Fixmysite.com !
June 21, 2016 at 12:36 am in reply to: How Do I set Facebook Image on Home Page using the Metro Pro Theme? #187912William
MemberWould you like to set an image that will be used when your homepage is shared on Facebook?
If so, you need to add a few of Facebook's Open Graph Meta Tags to your header:
🙂
Genesis Customization Service | Quick fixes whenever you need them ! | Contact me at Fixmysite.com !
William
Member#1
.site-header { background-color: grey; }
#2
Register a widget area, and hook it using "genesis_after_header" 🙂
Genesis Customization Service | Quick fixes whenever you need them ! | Contact me at Fixmysite.com !
June 17, 2016 at 7:52 am in reply to: How to change hover color for links and attachments – Lifestyle Pro theme #187736William
MemberPerhaps you want to look at the CSS :hover selector
http://www.w3schools.com/cssref/sel_hover.asp
Genesis Customization Service | Quick fixes whenever you need them ! | Contact me at Fixmysite.com !
William
MemberHi There,
It 's doable, but you will have to spend some time fiddling with the menu styles 🙂
Genesis Customization Service | Quick fixes whenever you need them ! | Contact me at Fixmysite.com !
June 16, 2016 at 12:01 pm in reply to: How do I remove the white space between the header image and the nav bar? #187699William
Member.site-header { padding: 0 !important; }
🙂
Genesis Customization Service | Quick fixes whenever you need them ! | Contact me at Fixmysite.com !
June 16, 2016 at 11:56 am in reply to: Altitude Pro larger sticky header area including above header menu #187698William
MemberNot very clear about what are you asking ? 🙂
Genesis Customization Service | Quick fixes whenever you need them ! | Contact me at Fixmysite.com !
William
MemberBased on your current website: 1200 x 380 pixels 🙂
Genesis Customization Service | Quick fixes whenever you need them ! | Contact me at Fixmysite.com !
June 16, 2016 at 2:59 am in reply to: How To Make Atmosphere Homepage a Landing Page (no menu or footer) #187654William
MemberThis reply has been marked as private.William
MemberThis reply has been marked as private.William
MemberCopy the code from the Studiopress website and paste it all the way on the bottom of the functions.php file 🙂
Genesis Customization Service | Quick fixes whenever you need them ! | Contact me at Fixmysite.com !
June 15, 2016 at 1:29 pm in reply to: How To Make Atmosphere Homepage a Landing Page (no menu or footer) #187603William
MemberHi there,
#1 - Backup your front-page.php file
#2 - Delete your front-page.php file
#3 - Set a static page as the homepage (a page that uses the landing page template)#4 - let me know if it worked 🙂
KR,
Will
Genesis Customization Service | Quick fixes whenever you need them ! | Contact me at Fixmysite.com !
William
MemberI found a few articles by doing a quick google search!
https://wordpress.org/plugins/html-in-widget-titles/If you are looking to change the look of a widget heading, consider doing it with CSS.
By default, WordPress widget titles do not accept HTML, though they are workarounds they are a bit messy!
Genesis Customization Service | Quick fixes whenever you need them ! | Contact me at Fixmysite.com !
June 14, 2016 at 12:19 pm in reply to: Disaply genesis featured page widget inline & in rows – Paralax pro #187535William
MemberI don't see why the featured page widget wouldn't work for you 🙂 just add it 6 times!
Genesis Customization Service | Quick fixes whenever you need them ! | Contact me at Fixmysite.com !
-
AuthorPosts