Forum Replies Created
-
AuthorPosts
-
nubloggie
Memberwould love to get an answer to this as well 🙂
nubloggie
Membersorry - the password is welcome
nubloggie
Memberthe URL is: http://bit.ly/1sAHwaZ
your second snippet is not working either 🙁
thanks so much for your help. 🙂nubloggie
MemberThanks @genwrock, but unfourtunately that didn't work. I'm not sure if it's recognizing my "posts" page as the page_blog.php template or not. Either way, the page ID is
5
. I tried changingif( is_page_template('page_blog.php') )
to if( is_page (5
))`
but that still didn't work....
Any other ideas?
Many thanks again!nubloggie
Memberthanks @braddalton. I can't view the response you linked to however...seems to suggest that I need to become a member to view the content...?
nubloggie
Memberthanks. I actually found some code to make it work:
/** Modify Comments Title */ add_filter( 'genesis_title_comments', 'crunchify_title_comments'); function crunchify_title_comments() { return __(comments_number( '{ Be the first to comment Share your thoughts below }', '{ 1 comment....read it below or <a href="#respond" rel="nofollow">add one</a> }', '{ % comments....read it below or <a href="#respond" rel="nofollow">add one</a>} ' ), 'genesis' ); }
Any idea how to make just the comment number <h3> and leave the rest of the text normal?
thanks for your help!
nubloggie
MemberGot it! I switched to using the Aweber HTML code, instead of the javascript and saw they had "width=930px" instead of "max-width".
Thanks for responding anitac!
nubloggie
MemberThanks for the reply. Unfortunately,m I don't know what an iframe is, or how to tell if my form is using one...
I am using a javascript snippet to access the form, but I could also use their html code instead.
What do I need to do to get you the correct info? Appreciate your help. Thanks.
nubloggie
Memberthat worked!
Thanks a ton!!nubloggie
MemberThanks eamonmoriarty it did work...sort of (I just added it to the style.css btw)
One strange issue i am having though - if you go now to
http://livingaha.com/why-living-aha/
you can see that it also added a top border above the page title. When i remove the CSS code you gave me, both the top Border and the short one above the page title dissapper, and when i add the CSS code, both Borders show up...Any thoughts? could it have to do with the fact that i moved the nav menu above the wrap?
thanks for your help.
<?php /** Do not remove this line. Edit functions below. */ /** Move primary nav menu */ remove_action( 'genesis_before_header', 'genesis_do_nav' ); add_action( 'genesis_before', 'genesis_do_nav' );
nubloggie
MemberDev, thanks, but when I paste the above code in, i get a blue line at the top of my header image, but below my nav pane...
I'm looking for the same, full-length blue line that appears across the entire screen Here: http://www.livingaha.com
to appear also the same way here as well: http://livingaha.com/why-living-aha/Any thoughts?: I beleive the minify css is off now....
thanks again.nubloggie
MemberYou know what Marcy, I played with some %'s instead of pixels and i got the nav working too!
Thanks again for your help!nubloggie
MemberMarcy, you are amazing! That worked!! Down to %85 and it displays perfectly on my phone 🙂
May I ask you another one?
I moved my primary nav bar above the header and got it placed where i want it. Again though, i'm haveing a "responsive" problem and the nave bar does not display on small, mobile screens.... Any idea hwo to fix that?
The site is http://www.livingaha.com
Thanks so much again for your help Marcy!`CUSTOM CSS
/** reposition header above main wrap css */#nav {
position:relative;
left:370px;width: 150px;
-webkit-border-radius: 0px 0px 30px 5px;
border-radius: 0px 0px 30px 5px;}
body {
width: 100%;
} <code></code>CUSTOM FUNCTIONS
<?php
/** Do not remove this line. Edit functions below. *//** Move primary nav menu
remove_action( 'genesis_before_header', 'genesis_do_nav' );
add_action( 'genesis_before', 'genesis_do_nav' );
*/`nubloggie
MemberOops, forgot to post an image:
https://www.dropbox.com/s/mbi4atjt2p2l0tc/Clip8.jpg
Need to figure out how to move it in line with the right-margin of my text, and flush with the top border.
Thanks!
nubloggie
MemberI still come up with the same thing..... strange.
my origional #body CSS looks the way i want it - i just need it to display on PAGES, and not just posts. Is there a POSTS stylsheet i could add the same code to?
Anyhow, i turned minify off, thanks for the tip.
Appreciate your help. Thanks.
nubloggie
Memberthanks for taking the time to reply dev.
Unfourtunately it didn't work.... as you can see at https://www.dropbox.com/sh/bj7cb0ggzvvg2mi/ZH2ef5NsWq , the border is now only as wide as the header, and there's a space of white at the top.
Looks like if i go this route, I'll have to move the #header above the body/wrap, but that's a whole other level of hooks and css to make it responsive, which both elude me...
any ideas?
thanks again! -
AuthorPosts