Forum Replies Created
-
AuthorPosts
-
sebgates
MemberThanks Brad. I will take a look. I appreciate you looking into the issue.
July 7, 2014 at 3:17 am in reply to: How can I hook an image above the content on the blog page template #113190sebgates
MemberThanks Brad, your a star. I will give your code a go.
July 6, 2014 at 12:51 pm in reply to: How can I hook an image above the content on the blog page template #113141sebgates
MemberThanks Brad. I had already read your blog post when I Googled the problem. I was trying to hook an image above the main content area. It seems the blog page template is hard to use Conditional Hooks on unlike the other templates in Genesis. I solved the problem using the Views plugin in the end by creating a short code for the blog page and adding it to a normal page template. Thanks for answering my question.
sebgates
MemberI figured it out.
sebgates
MemberIt seems you need to use a png image with opacity and report it as the background. I could not get anything else to work.
sebgates
MemberThanks Peter, that sorted it. Top man. I did do this myself a year ago but I have forgotten what I did to achieve it. I will add your code to my snippets file.
December 27, 2013 at 4:20 pm in reply to: Blue select area around contact forms and query ui elements #81469sebgates
MemberIt's not Genesis, it's jQuery UI. If anyone else has this problem, add this to your style sheet:
#accordion .ui-state-focus{
outline: none;
}December 17, 2013 at 7:03 am in reply to: What to use the Scripts box for found at the bottom of admin pages? #79745sebgates
MemberOk, thanks.
December 6, 2013 at 12:31 pm in reply to: How can I remove the 'Scripts' box at the bottom of the page/post in edit view? #77397sebgates
MemberThanks for your time on this. You have been really helpful. I like your website by the way, nice mouse over effects on the 3 columns under the call to action.
Seb
December 6, 2013 at 4:08 am in reply to: How can I remove the 'Scripts' box at the bottom of the page/post in edit view? #77331sebgates
MemberAndrea, I did try adding the code into my functions php file and I got a fatal error message. Would you know what I would add to my functions file to get rid of the scripts box in the admin area/page view? Have you tested the code yourself? Perhaps I did not understand Tom's instructions.
Thanks for your time, Seb
sebgates
MemberOK, I will give it a go.
Thanks
sebgates
MemberThanks Brad, that was quick.
I am not self hosting. I just want to use the fonts the best was I can. So if I wanted to enqueue the fonts from fonts.com on a project, would it look like this?
add_action( 'wp_enqueue_scripts', 'your_enqueue_scripts' );
function your_enqueue_scripts() {wp_enqueue_style( 'web-fonts', '//fast.fonts.net/cssapi/77b667e4-995f-4792-ac5b-3711808c3891.css', array(), CHILD_THEME_VERSION );
}
October 19, 2013 at 8:28 am in reply to: How can I split the footer creds in half – left and right? #67649sebgates
MemberThanks Sridhar. That solved my problem.
sebgates
MemberTry copying this in your functions php file:
//* Add support for structural wraps
add_theme_support( 'genesis-structural-wraps', array(
'header',
'nav',
'subnav',
'inner',
'footer-widgets',
'footer'
) );And then add relevant css for the elements in your style sheet:
For example:
#nav .wrap {
margin:0 auto;
max-width: 1152px;
}#header .wrap {
margin:0 auto;
max-width: 1152px;
}It depends what theme you are using. I only use the Sample theme and develop sites from that. The new sample theme has support for these wraps by default.
Hope that helps - Seb
August 13, 2013 at 12:54 pm in reply to: Padding or margin issues using The new Sample child theme #56131sebgates
MemberI figured it out. Sidebar and content now have fixed pixel widths.
sebgates
MemberIt's OK, I figured it out.
Thanks - Seb
sebgates
MemberI have fond this on a blog for creating wraps to other elements. Would I just add the name of my new div to the list?:
//* Add support for structural wraps
add_theme_support( 'genesis-structural-wraps', array(
'header',
'nav',
'subnav',
'inner',
'footer-widgets',
'footer'
) );July 15, 2013 at 12:24 am in reply to: Need help adding new structure to the Sample Child theme #50741sebgates
MemberThanks Brad. Ironic that a tutorial was on the website I was looking to reference 🙂
I think I understand what I need to learn. Action hooks and filters will give me a few more options with designing layouts.
Thanks again - Seb
sebgates
MemberAs it happens the scale to viewport did not do the job. The correct code was the one I found on CSS Tricks:
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0;">
I think the way to do it is to find a way to make the whole framework unresponsive and then add the code in your head section. The code makes iPhone. ipad devices scale the web site properly.
The way to get round the header issue in Genesis is to use this plug in. http://designsbynickthegeek.com/plugins/genesis-responsive-header
I have only been using Genesis for about 6 months so I am no expert.
Hope that helps - Seb
sebgates
MemberI figured it out: <meta name="viewport" content="width=device-width; initial-scale=0; maximum-scale=1.0;">
Make the initial scale =0
-
AuthorPosts