Forum Replies Created
-
AuthorPosts
-
Hello,
I’d rather add 3 brand new footer widgets on home page and comment in functions.php the
add_theme_support( 'genesis-footer-widgets', 3 );You could also hide/show them via .css.
May 1, 2013 at 2:18 am in reply to: Changing height on Property Search widget (in AgentPress) #38707The Property Search Widget of dsIDXPress is a PITA.
Look at: http://lagunaagent.com/, to make it look like that I:
1) reworked the plugin widget code cause it has several in it.
2) reworked the .css as you could see in the style.cssFeel free to take some inspiration.
Marco
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.
You’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 #38704Hello,
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? #38703Smaller 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 #38701You 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 #38698Hello,
you’ve just to revert to the old code and then below it add:
.home #content { border: none; }
Here’s my solution without using plugins http://neatandplain.com/responsive-youtube-or-vimeo-videos-in-genesis/
hello,
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.
Yes, but only on the code you have found on Brian Gardner’s post! You could amend the lines that you don’t need.
Have you added them as primary menu items???
Make sure you change on the .css (for ex.)
#header ul li.social-facebookinto.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.
my 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.
Go 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 #16447 -
AuthorPosts