Forum Replies Created
-
AuthorPosts
-
May 30, 2017 at 9:02 pm in reply to: Parallax Pro: How to change the height of the Home Sections… #207190
James Chai
MemberTry decreasing your padding.
The setting of
100px 0means there is 100 pixels padding on TOP and BOTTOM of the element and 0 pixels on the LEFT and RIGHT of the element.
Marketing, Sales and WordPress Growth Hacking http://www.smbpress.com
May 30, 2017 at 8:50 pm in reply to: [Agentpress] How to lets registered user submit listing ? #207189James Chai
MemberUse a plugin like Members (FREE) and set parameters for registered users. Like being able to list and then have ADMIN approve listings.
Marketing, Sales and WordPress Growth Hacking http://www.smbpress.com
May 30, 2017 at 8:44 pm in reply to: Altitude Pro – some questions about adding widget areas & adding site logo #207188James Chai
MemberIn the style.css I would add it after the CSS for section 7. You may have to play with the spacing to see what works.
i.e.
#front-page-8 { margin-top: 20px; }
Marketing, Sales and WordPress Growth Hacking http://www.smbpress.com
James Chai
MemberIt is possible - locate and edit in style.css
.after-header:after=>background-color: #373d3f;tobackground-color: none;
Marketing, Sales and WordPress Growth Hacking http://www.smbpress.com
May 17, 2017 at 4:27 am in reply to: Altitude Pro – some questions about adding widget areas & adding site logo #206585James Chai
Member@jhguynn I am assuming that you will be buying @victorfont a beer or two 🙂
Marketing, Sales and WordPress Growth Hacking http://www.smbpress.com
James Chai
MemberTry this FREE plugin: https://wordpress.org/plugins/blox-lite/
Marketing, Sales and WordPress Growth Hacking http://www.smbpress.com
May 17, 2017 at 4:16 am in reply to: Problem displaying shortcodes on Genesis Custom Post Type Archive Pages #206583James Chai
MemberTry adding this to your functions.php file
/** * Allow shortcodes in genesis archive intro text. * * @author Joshua David Nelson, [email protected] **/ // Custom Post Type Archive Intro Text add_filter( 'genesis_cpt_archive_intro_text_output', 'do_shortcode' ); // Author Archive Intro Text add_filter( 'genesis_author_intro_text_output', 'do_shortcode' ); // Term Archive Intro Text add_filter( 'genesis_term_intro_text_output', 'do_shortcode' );
Marketing, Sales and WordPress Growth Hacking http://www.smbpress.com
James Chai
MemberApologies for the mis-spelling above.
.tagline span { display: none; }
Marketing, Sales and WordPress Growth Hacking http://www.smbpress.com
James Chai
Member1) When you publish a page/post you have the option to set 'Full Width' page layout.
2) Currently your
.nav-primaryis set to float 'right'. Change it to 'left' and add padding-left to suit.i.e.
.nav-primary { float: left; margin-top: 2px; padding-left: 200px; }
Marketing, Sales and WordPress Growth Hacking http://www.smbpress.com
James Chai
MemberTry this
.tagline span { dispaly: none; }worked in chrome inspect.
Marketing, Sales and WordPress Growth Hacking http://www.smbpress.com
James Chai
MemberThe (2) top providers are IDXBroker and Diverse Solutions. Both have their pros and cons.
Marketing, Sales and WordPress Growth Hacking http://www.smbpress.com
May 15, 2017 at 5:57 am in reply to: How to Change Overlay Color on Background Images in Altitude #206450James Chai
MemberClear your cache(s) and try viewing in another browser.
Marketing, Sales and WordPress Growth Hacking http://www.smbpress.com
May 14, 2017 at 2:56 pm in reply to: Are ADA 508-required features built into the Genesis core yet? #206426James Chai
MemberAnd that's why we ♥ Genesis - they bake so many goodies into the framework!
Marketing, Sales and WordPress Growth Hacking http://www.smbpress.com
James Chai
MemberLike @victorfont said any theme would work, comes down to your target market, end goals and which theme has the foundation suitable to design+develop from.
Marketing, Sales and WordPress Growth Hacking http://www.smbpress.com
James Chai
MemberNo matter the theme you migrate to you would have to consider end-goals that are particular to you.
Such as what design changes do you want to make? What feature/function (development) changes do you want to make? What is necessary to keep, what can you let go? Etc ...
IMO: I suggest backing up your ENTIRE site, pick a new theme that you like, and develop locally. This way until things are back the way you want them to be you have a FULL backup and can always start over - with the migration/update that is.
Marketing, Sales and WordPress Growth Hacking http://www.smbpress.com
May 14, 2017 at 2:34 pm in reply to: How to Change Overlay Color on Background Images in Altitude #206421James Chai
MemberNavigate to your style.css file and locate the following:
.image-section { background: -moz-linear-gradient(top, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 30%, rgba(0,0,0,0.8) 80%, rgba(0,0,0,0.9) 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0.2)), color-stop(30%,rgba(0,0,0,0.5)), color-stop(80%,rgba(0,0,0,0.8)), color-stop(100%,rgba(0,0,0,0.9))); background: -webkit-linear-gradient(top, rgba(0,0,0,0.2) 0%,rgba(0,0,0,0.5) 30%,rgba(0,0,0,0.8) 80%,rgba(0,0,0,0.9) 100%); background: -o-linear-gradient(top, rgba(0,0,0,0.2) 0%,rgba(0,0,0,0.5) 30%,rgba(0,0,0,0.8) 80%,rgba(0,0,0,0.9) 100%); background: -ms-linear-gradient(top, rgba(0,0,0,0.2) 0%,rgba(0,0,0,0.5) 30%,rgba(0,0,0,0.8) 80%,rgba(0,0,0,0.9) 100%); background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%,rgba(0,0,0,0.5) 30%,rgba(0,0,0,0.8) 80%,rgba(0,0,0,0.9) 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#33000000', endColorstr='#e6000000',GradientType=0 ); display: table; overflow: hidden; table-layout: fixed; width: 100%;To alter/edit the gray change rgba(0,0,0,0.2) to something like rgba(255,215,0,0.2) ... You would have to update ALL rgba elements.
Marketing, Sales and WordPress Growth Hacking http://www.smbpress.com
James Chai
MemberExactly what text are you trying to change?
Marketing, Sales and WordPress Growth Hacking http://www.smbpress.com
James Chai
MemberYou can customize ANY child theme to suit your needs, granted it requires coding knowledge (what level depends on what you want to customize).
And yes you can remove/replace the 'widgets' used in the DEMO ... they are merely placeholders meant to give you an idea of how you can utilize the child theme.
Marketing, Sales and WordPress Growth Hacking http://www.smbpress.com
James Chai
MemberGo ahead and re-install the Sample child theme, you won't lose your media or pages.
Marketing, Sales and WordPress Growth Hacking http://www.smbpress.com
James Chai
MemberAssuming you are using Genesis - when you add a 'Featured' post/page widget you are given the option to show a Featured Image.
Depending on the child theme you can also align and select image size.
Marketing, Sales and WordPress Growth Hacking http://www.smbpress.com
-
AuthorPosts