Forum Replies Created
-
AuthorPosts
-
frobnMember
It can be done using css.
You can move the menu and the icon up by using a negative margin-top and changing the icon color and menu li a. The margin-top will need to be set for both the front-page and inner pages.
You will need to modify these selectors
For neg margin-top:
.genesis-nav-menu.responsive-menu .menu-item, .responsive-menu-icon.menu-primary (@media breakpoint)
For color:
ul#menu-main-menu a.responsive-menu-icon::before
frobnMemberTry:
<p style="text-align:center;">Laxholmstorget 3 · 602 21 Norrköping</p>
frobnMemberIt looks fixed. Do you want to share how you solved the problem?
frobnMemberThe white padding still appears on firefox but not on chrome, try using !important.
This is the code present code
.parallax
{
background-size: cover;
padding-top: 150px;
padding-bottom: 150px;
}When I removed passing-top and padding-bottom in inspector the image responded properly for left and right but then top and bottom parts of the image were cut off. I think you can solve the problem by serving smaller background images and decreasing the padding at media breakpoints.
frobnMemberTry adding background-size: cover to your sections
Example:
section#welcome { background-image: url("images/welcome-background.jpg"); background-size: cover; }
For the white spacing, site-inner has right and left padding at 5% in @media , try changing the padding to 0
Example
@media only screen and (max-width: 1023px) { .site-inner { padding-left: 0; padding-right: 0; }
}
frobnMemberYou can do it with a header left widget
frobnMemberIf you put the 2nd footer widget on the webpage we would be able to view the code you are using and likely be able to come up with a solution.
frobnMemberYour style.css is verison 3.0.1 which does not include the responsive menu, you need to update it to version 3.0.2. Once you do check your functions.php to make sure dashicons are enriqued.
frobnMemberYour site is not loading responsive-menu.js which came with News-Pro.
Check if you have the following code in your functions.php. If not put it in.
wp_enqueue_script( 'news-responsive-menu', get_bloginfo( 'stylesheet_directory' ) . '/js/responsive-menu.js', array( 'jquery' ), '1.0.0' );
If you don't have it in your js directory you can get it here: https://gist.github.com/RRWD/e248ca84ef680c5341f1
You also may want to update the footer on your site. Easiest way to do it is with Genesis Simple Edits plugin.
frobnMemberI don't know if Google would treat it the same as display:none but here is an alternative:
.entry-header h2{ text-indent: 100%; white-space: nowrap; overflow: hidden; }
frobnMemberAdd your secondary menu in home-top widget with custom-menu widget before the featured-page widget or register an additional widget for the custom-menu and include it in front-page.php above the home-top widget. Either way the secondary menu will appear only on the home page
August 13, 2015 at 1:23 pm in reply to: Remove Next and Previous Arrows from Whitespace Pro Home Page #162278frobnMemberAdd to your style.css:
.archive-pagination.pagination a {display:none;}
August 12, 2015 at 6:58 pm in reply to: Trouble with Genesis css coding, winscp and copyright text #162215frobnMemberYou can delete the code in functions.php or change it, without using simple edits, to what you want by replacing the line:
echo ‘ · Divine theme by Restored 316‘;
With: echo ‘ · Mediterranealicious · All Rights Reserved‘;
August 12, 2015 at 10:51 am in reply to: Use AgentPress Pro Search Listings Widget on Home page as Text Widget #162181frobnMemberThis is the css now:
.home-featured .wrap { padding-top: 200px; }
Remove the property search widget and adjust padding-top till your text sits at the bottom.
August 12, 2015 at 8:07 am in reply to: How to replace background image with slider images in Minimum Pro? #162132frobnMemberIt's not easy. Minimum Pro uses backstreatch in front-page.php to display the image, here an example of what you could do.
Register the widget in functions.php
Comment out the backstreatch code in front-page.php
Add a widget after the header for the sliderYou may need to prioritize the positioning of the widget so it appears after the site-tag and will probably need some styling for the slider.
Before you decide on using a slider you might want to read "Our themes don’t have sliders" at Yoast.com
frobnMemberCheck that your are using the correct functions.php. Your html is xhtml, it should be html5.
August 11, 2015 at 4:19 pm in reply to: Trouble with Genesis css coding, winscp and copyright text #162084frobnMemberDon't change anything in Genesis framework.
The easiest way to change the footer credits is to install and use Genesis Simple Edits plugin
August 10, 2015 at 9:59 am in reply to: Parallax Pro edit text color individualy on home section 2,3,4 #161943frobnMemberYou have to add the color for each section you want like this:
.home-section-2 .textwidget, .home-section-3 .textwidget, .home-section-4 .textwidget { color: #211b06; }
August 10, 2015 at 6:16 am in reply to: Altitude Pro Incorrect Flexible Widgets Layout-2 widgets stack, not side-by-side #161914frobnMemberThe layout you want: 2 halves in the top line is not supported. In the original code there are 3 widgets. The top widget is full and the bottom widgets are half. You are using only 2 widgets so they are stacked. To get 2 halves in the top widget use one text-widget with <div class="one-half">.
frobnMemberAdd this to your css
.pricing-table h4 { background-color: #ddddd;}
Change to the color you want.
-
AuthorPosts