Scott
Forum Replies Created
-
I am having the same issue. Jetpack Publicize won’t work. If you know a solution, could you post it here please?
There is no option to allow accessibility to XML-RPC built into Wordfence.
Scott
that line is only to show that the original line is to be commented out of the code. So, if the original is still uncommented, then it would cause an error.
@cautioustrain – glad it helped.
Forum: Themes and Templates
In reply to: [Customizr] Icon next to the page titleThank you. It did help very much. Appreciate it rdellconsulting.
You are welcome.
This works. Change it in parts/class-header-slider.php around line 204:
//attachment image // $slide_to_display = wp_get_attachment_image( $id, $img_size, array( 'class' => 'slide' , 'alt' => $alt ) ); // custom changes for clickable image $button_perm = get_permalink($button_link); $slide_img = wp_get_attachment_image( $id, $img_size, array('class' => 'slide', 'alt' => $alt ) ); $slide_to_display = '<a href="'.$button_perm.'">'.$slide_img.'</a>';
maybe the author could consider adding this with and “if” statement that activates it if the option is selected in the settings page.
hope this helps you guys.
Forum: Themes and Templates
In reply to: [Customizr] Slider links to external url′sIt is possible but it is a workaround – I’m doing it:
1. Install a plugin that enables you to redirect a page or post (lots of them out there)
2. Create a page and utilize this plugin to redirect the page to an external site permanently (vs temporarily)
3. When you add the slider image, choose the page you createdForum: Themes and Templates
In reply to: Twenty twelve centred menuIn order to center the main menu and left justify the submenus, add the following to your child theme’s style.css:
.main-navigation ul.nav-menu { text-align: center; } .main-navigation li ul li a { text-align: left; }
Forum: Themes and Templates
In reply to: Twenty Eleven Background GradientOK, I figured out how to fix this issue:
html {
height: 100%;
}
body {
height: 100%;
margin: 0;
background-repeat: no-repeat;
background-attachment: fixed;
background: #a81043;
background: -moz-linear-gradient(top, #a81043 0%, #ffffff 100%) fixed;
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#a81043), color-stop(100%,#ffffff)) fixed;
background: -webkit-linear-gradient(top, #a81043 0%,#ffffff 100%) fixed;
background: -o-linear-gradient(top, #a81043 0%,#ffffff 100%) fixed;
background: -ms-linear-gradient(top, #a81043 0%,#ffffff 100%) fixed;
background: linear-gradient(to bottom, #a81043 0%,#ffffff 100%) fixed;
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=’#a81043′, endColorstr=’#ffffff’,GradientType=0 );
}Forum: Themes and Templates
In reply to: Twenty Eleven Background GradientOK, now I have another issue. When the page is too long, a solid color appears at the bottom of the screen after the gradient. Any ideas. On the website, hover over “About” and click “Contact” and you will see what I mean. That page was made using the WordPress JetPack plugin. Thanks for any input you may have!
Scott
Forum: Themes and Templates
In reply to: Twenty Eleven Background GradientThank you Aditya, that was the piece I was missing. Just for other’s sake, here is the complete code to add to your child theme’s style.css for a gradient background in the Twenty Eleven Theme (change the color black #000000 to whatever color you want to be at the top and change the color white #ffffff to whatever color you want the be at the bottom).
/* =Gradient Background
———————————————————*/
html {
height: 100%;
}
body {
height: 100%;
margin: 0;
background-repeat: no-repeat;
background-attachment: fixed;
background: #000000;
background: -moz-linear-gradient(top, #000000 0%, #ffffff 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#000000), color-stop(100%,#ffffff));
background: -webkit-linear-gradient(top, #000000 0%,#ffffff 100%);
background: -o-linear-gradient(top, #000000 0%,#ffffff 100%);
background: -ms-linear-gradient(top, #000000 0%,#ffffff 100%);
background: linear-gradient(to bottom, #000000 0%,#ffffff 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=’#000000′, endColorstr=’#ffffff’,GradientType=0 );
}Forum: Themes and Templates
In reply to: Twenty Eleven Background GradientForum: Plugins
In reply to: [JSL3 Facebook Wall Feed] Feed not showing – not ID relatedthank you for all your help!
Forum: Plugins
In reply to: [JSL3 Facebook Wall Feed] Feed not showing – not ID relatedI just figured it out too. shows in firefox and ie. not in chrome – but i have 26.0.1410.64 m too. must be a quirk… I’m sorry for all this. it is confusing.
Forum: Plugins
In reply to: [JSL3 Facebook Wall Feed] Feed not showing – not ID relatedi tried clicking that box, still not showing up either way. thanks!
Scott