Forum Replies Created
-
AuthorPosts
-
Genesis Developer
MemberGenesis Developer
MemberGenesis Developer
MemberI am getting hamburger menu icon below the logo. Are you cleared the cache and checked your site?
Genesis Developer
MemberI have pro tips for this. I used Genesis Responsive Slider plugin.
Genesis Developer
MemberCan you provide your site URL?
Genesis Developer
MemberGenesis Developer
MemberAlso you css file have error. At line no 552 have a closing bracket. You will remove it.
Genesis Developer
MemberI just checked your home page. You have HTML markup issue. See this
<p><a href=""><img src="https://flarenote.com/media/facebook-48-48-w.png"</img></a> <a href=""><img src="https://flarenote.com/media/twitter-48-48-w.png"</img></a> <a href=""><img src="https://flarenote.com/media/google-plus-48-48-w.png"</img></a> <a href=""><img src="https://flarenote.com/media/youtube-48-48-w.png"</img>
August 14, 2016 at 6:39 am in reply to: Heads up – Invalid HTML in Aspire, Showcase and Digital Pro front page #191266Genesis Developer
MemberAlso I am very surprised about one thing. When they are closing the any markup by genesis_markup function, they are not passing the context . It is blank. See the example:
genesis_markup( array( 'html5' => '</main>', //* end .content 'xhtml' => '</div>', //* end #content ) );We need a context there ? Am I correct?
Genesis Developer
MemberYou do not need add any extra transparent image there. You will increase the padding. Just add this in your style.css file
.front-page-1.image-section .flexible-widgets .wrap { padding: 260px 0; }You can change the value 260 with your requirement
Genesis Developer
MemberAre you wanting the more space for hero image?
Genesis Developer
MemberHere is the premium tutorials
August 10, 2016 at 9:05 pm in reply to: Wellness Pro – removing front page 1 white text widget #191087Genesis Developer
MemberRemove this CSS from your style.css file
.image-section .widget-wrap::before, .image-section .widget-wrap::after { border-color: transparent; border-style: solid; border-width: 20px; box-sizing: border-box; content: ""; display: block; left: 0; position: absolute; width: 100%; }
Genesis Developer
MemberYou will reduce the height by CSS.
August 9, 2016 at 9:20 pm in reply to: Need to hire someone to help with media query to make image responsive. #191016Genesis Developer
MemberGenesis Developer
MemberAdd this in your style.css file
.header-image .site-title > a { background-size: contain; width: 100%!important; }
August 9, 2016 at 9:29 am in reply to: Installing that search bar from AgentPress Pro Theme onto my Executive theme. #190965Genesis Developer
MemberAdd this in your CSS file
form#searchform select, form#searchform .searchsubmit { margin: 0 0.5%; width: 24%; }You will adjust the CSS for mobile device
Genesis Developer
MemberAdd this in your functions.php file
genesis_register_sidebar( array( 'id' => 'home-bottom-1', 'name' => __( 'Home Bottom 1', 'minimum' ), 'description' => __( 'This is the home bottom 1 section.', 'minimum' ), ) ); genesis_register_sidebar( array( 'id' => 'home-bottom-2', 'name' => __( 'Home Bottom 2', 'minimum' ), 'description' => __( 'This is the home bottom 2 section.', 'minimum' ), ) ); genesis_register_sidebar( array( 'id' => 'home-bottom-3', 'name' => __( 'Home Bottom 3', 'minimum' ), 'description' => __( 'This is the home bottom 3 section.', 'minimum' ), ) ); genesis_register_sidebar( array( 'id' => 'home-bottom-4', 'name' => __( 'Home Bottom 4', 'minimum' ), 'description' => __( 'This is the home bottom 4 section.', 'minimum' ), ) );Copy the code from here http://pastebin.com/4t2JRxcP and replace the full code of front-page.php file with this new one.
Note: Before editing the files you will keep a backup of your theme.
Genesis Developer
MemberYou do not need this three lines
add_action ('genesis_before_content', 'widgets1'); add_action ('genesis_before_content', 'widgets2'); add_action ('genesis_before_content', 'widgets3');Three widget areas are taking care by one function 'my_widgets'
Genesis Developer
MemberTry Flexbox - http://www.w3schools.com/css/css3_flexbox.asp
Otherwise you can use genesis predefined columns CSS like
<div class="one-third first">CONTENT</div> <div class="one-third">CONTENT</div> <div class="one-third">CONTENT</div>
-
AuthorPosts