Markd23
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Customizr] How to make the slider images link to other pagesOk. Thank you.
I am reading through the thread and it looks like I need to add something like this:
.home .carousel-inner .carousel-caption { background: transparent; min-width: 100%; height: 100%; padding: 0; margin: 0; position: absolute; top: 0; bottom: 0; } .home .carousel-caption h1, .home .carousel-caption .lead { display: none; } .home #customizr-slider .btn-primary { background: transparent; color: transparent; box-shadow: none; margin: 0; padding: 0; width: 100%; height: 100%; text-shadow: none; }Now, where do I add it? I have a child theme running, do I add to style.css in child theme directory, or to the Custom CSS section in Custmoizr?
I have worked with other WordPress Themes but am new to Customizr.
Forum: Themes and Templates
In reply to: [Customizr] Removing Page 2 and ArchivesIt actually seems like the plugin – Conditional Widgets – creates the second “Archives” page once I activate certain widgets in the right sidebar. Weird.
Forum: Themes and Templates
In reply to: [Customizr] Removing Page Titles From Top of PagesGreat. And thanks again.
I also just realized that you can uncheck the breadcrumbs checkbox in the customize it menu…
resolved!
Forum: Themes and Templates
In reply to: [Customizr] Removing Page Titles From Top of PagesAwesome! Thank you.
So that got rid of the page title, but it seems like there is still some kind of menu -> page title thing at the top of the page. Any idea on how to remove that?
Forum: Fixing WordPress
In reply to: Child Theme 2011 issues with responsive sizing on mobile devicesRight. So I am working with a child theme of 2011, which is responsive. And the promotion slider plugin is responsive as well…
So, I either need to remove my header image, or figure out if there is a way to make it responsive, perhaps by adding some CSS to it, as you mentioned.
It seems like those are my two options. I’d be ok with doing away with the header image, so long as I could at least get the logo up there.
Any help or suggestions is appreciated.
Forum: Plugins
In reply to: [Promotion Slider] Edit Default SizeScratch that: it is response… Thanks for the reply, Micah.
-MForum: Fixing WordPress
In reply to: Child Theme 2011 issues with responsive sizing on mobile devicesOk. Thanks Alchymyth.
I have checked in with the promotion-slider developer to see if it is compatible with responsive themes.
So by removing the header image, the sizing issue would be resolved?
@pioneer Valley
Would adding responsive CSS to the child theme style sheet resolve the issue? Care to elaborate more?
Forum: Fixing WordPress
In reply to: how to add slider in header with permalinks 2011 child themePromotion slider has been working for me. All good.
Forum: Plugins
In reply to: [Promotion Slider] Edit Default SizeThanks Micah,
So the slider works fine in my normal browser. Is there anyway to make it responsive for mobile devices and tablets?
Here is my site: http://www.cozumelsurfing.com
Forum: Plugins
In reply to: [Promotion Slider] White Space?Mine is doing the same thing but it is under the slider. Did you ever resolve the issue?
Forum: Themes and Templates
In reply to: How to duplicate page template twenty eleven childScratch that. I have managed to get it working! I really appreciate the help!!!
Forum: Themes and Templates
In reply to: How to duplicate page template twenty eleven childThanks again for your help.
‘Conditional widgets’ is working somewhat, but I am still having difficulties getting any sidebar to appear on my newly created page.
Do I need to do anything to functions or the new page.php files?
Forum: Themes and Templates
In reply to: How to duplicate page template twenty eleven childThat appears to be working! Thank you, although the new page is still showing the widgets from the main sidebar.
will either of the ‘conditional widgets’ or ‘widget logic’ plugins allow me to change which widgets now appear in this new page?
Forum: Themes and Templates
In reply to: How to duplicate page template twenty eleven childThanks for your help alchymyth. So I added this code to the end of the functions.php file:
add_filter('body_class', 'adjust_body_class', 20, 2); function adjust_body_class($wp_classes, $extra_classes) { if( is_page_template('new-sidebar-page-template-file-name.php') ) : // Filter the body classes foreach($wp_classes as $key => $value) { if ($value == 'singular') unset($wp_classes[$key]); } endif; // Add the extra classes back untouched return array_merge($wp_classes, (array) $extra_classes ); }[Moderator Note: Please post code & markup between backticks or use the code button. Your posted code may now have been permanently damaged by the forum’s parser.]
And my page is not coming up at all anymore. I hadn’t had a functions.php file yet in my child theme directory. Do I need to copy ALL files over from the 2011 theme?
Forum: Themes and Templates
In reply to: How to duplicate page template twenty eleven childIt does not. I am still trying to learn some of the coding required for WordPress.
Would you be able to point me in the direction where I might be able to figure out how to tell the page to call a new custom sidebar please?