Forum Replies Created
-
AuthorPosts
-
January 7, 2014 at 6:18 pm in reply to: Problem with Genesis Responsive Slider after upgrading to WP 3.8 #83916MakeYourselfVisibleParticipant
Aaah sorry, I reverted it to WP 3.7 while I figure out what's going on since I didn't want to leave it broken. I suppose I can't get help on it if you can't see it eh π Thanks for looking into it all the same! I'll post an update if I can figure out what happens once I attempt it again.
MakeYourselfVisibleParticipantIf you don't want to use a plugin, here's a nice tutorial on how to change the code (from http://my.studiopress.com/snippets/footer/)
//* Customize the credits add_filter( 'genesis_footer_creds_text', 'custom_footer_creds_text' ); function custom_footer_creds_text() { echo '<div class="creds"><p>'; echo 'Copyright © '; echo date('Y'); echo ' · <a href="http://mydomain.com">My Custom Link</a> · Built on the <a href="http://www.studiopress.com/themes/genesis" title="Genesis Framework">Genesis Framework</a>'; echo '</p></div>'; }
Cheers,
(Another) David πJuly 17, 2013 at 2:32 pm in reply to: Creating new widget area below home featured boxes in Outreach #51208MakeYourselfVisibleParticipantYep, in funcitons.php. I definitely need to do some Genesis tutorials on hooks, but that worked in solving the current problem at hand π Thanks Brad!
July 16, 2013 at 4:57 pm in reply to: Creating new widget area below home featured boxes in Outreach #51017MakeYourselfVisibleParticipantThat worked π Thanks so much Brad. I had to place your function above the sub-footer function which was also using the genesis_before_footer hook but once I did that it worked like a charm!
Also added in the styles from Brian Gardner's tutorial and changed .welcome-text to .home-widget and now it's styling as well π
.home-widget { border-bottom: double #ddd; border-top: double #ddd; font-family: 'Lora', serif; font-size: 30px; line-height: 1.0; overflow: hidden; padding: 25px 0; text-align: center; } .home-widget p { font-size: inherit; line-height: 1.0; margin: 0; }
Appreciate your help!
DavidJuly 16, 2013 at 4:32 pm in reply to: Creating new widget area below home featured boxes in Outreach #51013MakeYourselfVisibleParticipantHi Brad, thanks for the help! That put the widget area after the home page slider and before the home page widgets (which could work) but ideally I'd want to place it after the home page widgets.
Do I have to change the 'genesis_after_content_sidebar_wrap' to something else? I'm kind of n00b but it looks like it's after the whole wrap and before div #home-sections.
Thanks,
DavidMakeYourselfVisibleParticipantBrandon, could you post your solution? I'm looking to do the same thing...glad you got it figured out π
Thanks!
DavidMakeYourselfVisibleParticipantIt looked like it was working before but now it's showing the extra space on the right still for whatever reason. I cleared the cache on my phone too so that's not the issues either.
Hmmm now I'm super confused.
MakeYourselfVisibleParticipantI ended up keeping the 291px image and reducing the logo area size to match because I didn't want the header to get much taller...basically changed the width in this code:
#title-area {
background: url(images/logo.png) no-repeat;
float: left;
overflow: hidden;
width: 291px; /* to match image, originally 430px */Cheers,
David
MakeYourselfVisibleParticipantAha! It was because my title area (now logo area) was 430 px and my image was only 290px floated to the left. Everything works fine once I put in a 430px wide image π
MakeYourselfVisibleParticipantDamangmeda, thank you for that solution; worked like a charm for me! As someone with limited coding experience, I found the Outreach Header hard to work with out of the box but this was simple enough.
Thanks again, let me know if I canΒ PaypalΒ you a beer π
MakeYourselfVisibleParticipantAwesome; that did the trick for me too!
Adding in all the lines of code messed up a few customizations that I had done but adding the one line of code (below) centered the image perfectly.
background-position: center top !important;
Thanks John!
February 11, 2013 at 6:37 pm in reply to: Change Portfolio Page URL/permalinks – Executive Theme #19737MakeYourselfVisibleParticipantI used the solution found in this thread here:Β http://www.studiopress.community/topic/executive-theme-how-to-maintain-current-marker-on-portfolio-items/
Will check out the custom post types plugin and your functions.php fix for next time. Thank you both!
February 7, 2013 at 6:12 pm in reply to: Executive Theme – How to maintain current marker on portfolio items #18795MakeYourselfVisibleParticipantalso renamed single-portfolio.php and archive-portfolio.php and changing the image name pertaining to the portfolio. I'm not a developer expert but I suppose you could create many different portfolios by repeating the same process with different new titles, no?
February 6, 2013 at 6:43 pm in reply to: Executive Theme – How to maintain current marker on portfolio items #18558MakeYourselfVisibleParticipantI had the same question and was able to accomplish this using Dan's advice and going through all the CSS/PHP files and changing all instances of "portfolio" to "projects" (in your case "Our_Fleet") and refreshing permalinks.
I also removed all styling relating to the portfolio and used the styling from this article (again replacing "portfolio" with "projects":
Dan, thanks for the fix!
MakeYourselfVisibleParticipantYes that is it! Thank you Sozo! They need a beer-pal website so I can send you a cold one. Much appreciated.
The only issue now is how it looks in IE9. I will look through the forums to see if anyone's run into any styling problems with IE9.
Thanks again!
David
MakeYourselfVisibleParticipantI changed all instances of #content to #wrap but it's still not formatting. Anything else I need to move over to functions.php? There's a couple other things calling home-slider in home.php.
MakeYourselfVisibleParticipantThat worked for getting the slider on all pages! Unfortunately it didn't take the styling with it. Will I have to copy over the other functions that pertain to home_slider from home.php to functions.php as well?
MakeYourselfVisibleParticipantThis reply has been marked as private.MakeYourselfVisibleParticipantThanks SoZo. I'm kind of a programming n00b but do you mean like this?
<?php genesis_after_header(); ?>
(copied function from home.php)
January 23, 2013 at 4:47 pm in reply to: Change Content Area Background Color-Executive Child Theme #14175MakeYourselfVisibleParticipantHi Jon, thanks for the reply.
Do you mean I should add color: #XYZ to that so it looks like:
#content {
float: left;
padding: 30px 60px 10px;
width: 680 px;
color: #XYZ;
}
-
AuthorPosts