Forum Replies Created
-
AuthorPosts
-
MarcoMember
Is the home.php file still in the theme folder?
Have you done some modifications to it?
If not, try to rename ( via FTP) home.php like old_home.php and reload the homepage and see what happens.
MarcoMemberYou've all set in pixels, for ex:
`.content-sidebar #content, .sidebar-content #content {
width: 810px;
}`try to use width in ems or % to make it work .
May 1, 2013 at 1:46 am in reply to: Streamline Child Theme: Increasing font size in Primary Nav Menu #38704MarcoMemberHello,
after
`.menu-primary,
.menu-secondary,
#header .menu {
clear: both;
color: #aaa49f;
font-size: 12px;
margin: 0 auto;
overflow: hidden;
text-shadow: 1px 1px #000;
text-transform: uppercase;
width: 100%;
}`
add:
`.menu-primary {
font-size: 14px;
}`save and refresh your home page.
May 1, 2013 at 1:41 am in reply to: Metro Mystery – How to prevent banner overlapping logo in smaller screens? #38703MarcoMemberSmaller devices (iPhones etc) cannot display smoothly a 728px wide banner ( they are 320, 480, 568, 600px wide ).
There are plenty of articles on the web that deals the responsive ads issues.Anyway you could try to add in the
`/* iPads (portrait) ----------- */
@media only screen and (max-width: 768px) {`section, something like this:
`#header .widget-area {margin-top: 3rem;} `
setting the top margin accordingly to your logo height.
May 1, 2013 at 1:29 am in reply to: How to add pagination on Metro theme homepage that uses widgets #38701MarcoMemberYou cannot do it without an heavy modification on how the theme's home page works.
You've got to remove the home-bottom widget-area and place there a custom loop instance.
May 1, 2013 at 1:22 am in reply to: Remove border on homepage but keep on blog posts and pages #38698MarcoMemberHello,
you've just to revert to the old code and then below it add:
`
.home #content
{
border: none;
}
`
MarcoMemberHere's my solution without using plugins http://neatandplain.com/responsive-youtube-or-vimeo-videos-in-genesis/
MarcoMemberhello,
did you made any changes to the themes files? The markup is wrong on the home page, the title is a <p> and the description is an <h1>; it'd be the exact opposite.
MarcoMemberYes, but only on the code you have found on Brian Gardner's post! You could amend the lines that you don't need.
MarcoMemberHave you added them as primary menu items???
Make sure you change on the .css (for ex.)
#header ul li.social-facebook
into.menu-primary ul li.social-facebook
. Then I think you must set them to float right.don't forget to set the menu .css class like in http://www.briangardner.com/wp-content/uploads/social-twitter.jpg
let me know.
M.
MarcoMembermy 2 cents.
The 960 px grid is old nowadays as the average monitor resolution grows.
Like the 960 grid system, 1152 is still divisible by both 12 and 16.
Next step 1584 px and then 1920 px. 😉
MarcoMemberGo to your Genesis theme settings in the dashboard and look at the very end of the settings page; there are two fields in the Header and Footer script section. Just paste the Typekit code into the first one ( Enter scripts or code you would like output to wp_head(): )
January 30, 2013 at 1:03 pm in reply to: Balance Theme: display featured left & right widgets sitewide #16447MarcoMemberMarcoMemberMarcoMemberMinimum .css has:
#content-sidebar-wrap {
float: left;
width: 100%;
}while your style .css has:
#content-sidebar-wrap {
float: left;
width: 740px
}maybe if you set the width back to 100% will fix the issue.
MarcoMemberAmend in functions.php lines 47/48
// Remove the site description
remove_action( 'genesis_site_description', 'genesis_seo_site_description' );then you gotta style the description in the .css.
Cheers
MarcoMemberAlternatively you could add to the required posts the tag "slider" and then make the slider to use the posts with that tag
MarcoMemberWhat if upgrade Genesis to the latest version, you're still on 1.8.2.
MarcoMemberThis reply has been marked as private.MarcoMembercreate an home-static.php file in your theme folder.
Add here your html code.Then, in home.php use:
get_template_part( 'home', 'static' );
see: http://codex.wordpress.org/Function_Reference/get_template_part
-
AuthorPosts