hlbuckner2
Forum Replies Created
-
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] older post link not workingAlso Ipad does not work.
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] older post link not workingI tried removing the widget in the footer. The Infinite Scroll is enabled now. I am able to Infinite Scroll and use the older post link in FireFox 27 but IE 11 still does not work with either the Infinite Scroll or the older post
I put the widget back and Firefox still works but IE does not.
I have the following plugins.
Contact US 1.6
Easy WP SMTP 1.0.7
Jet Pack 2.9.1
Meta Slider 2.6.3
Participants database 1.5.4.7
Table Press 1.3
WP Photo Album Plus 5.2.18Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] older post link not workingThanks for the suggestion. The scroll shows it is already deactivated because I have text in the footer or at least that what the option is showing.
Forum: Themes and Templates
In reply to: [Twenty Eleven] older post link not workingI found when I disabled the Jet pack I have links that work. So it must have something to do with the jetpack plugin. I posted issue over there.
Thanks.Forum: Themes and Templates
In reply to: [Twenty Eleven] older post link not workingNo, just what was in the template. Infinite scroll was part of the jet pack but it is disabled.
[Moderator Note: No bumping, thank you.]
Forum: Themes and Templates
In reply to: Help with header images…PleaseHey esmi,
I changed your code to use the is_front_page() function and it works. Any issues with that in the future or should is_home() work on my home page?
Forum: Themes and Templates
In reply to: Help with header images…PleaseI tried doing your code but the <?php if(is_home()) $hstyle=’welcomeheading’;
is testing as false and the home page is picking up the #welcomeheading2 style.Any ideas why is_home() = false
Thanks
Forum: Themes and Templates
In reply to: Help with header images…PleaseI tried this but I get no image on any page
#welcomeheading {
text-align: center;
<?php if(is_home()) :?>
background: url(img/BucknerCoatofArmsHeader_edited-1.jpg) top left no-repeat;
background-repeat: no-repeat;
<?php endif;?>
height: 250px;
width: 940px;
text-align: center
position: relative;
}Forum: Themes and Templates
In reply to: Help with header images…PleaseThanks esmi.
I was sitting the background here in css
#welcomeheading {
text-align: center;
background: url(img/BucknerCoatofArmsHeader_edited-1.jpg) top left no-repeat;
background-repeat: no-repeat;
height: 250px;
width: 940px;
text-align: center
position: relative;
}but I think I could use your code in the header
<div id=”welcomeheading”>
<h1>/”><!– comment out and added image to css style sheet.
<img src=”http://www.mistyriverphoto.com/wp-content/themes/sliding-door/img/BucknerCoatofArmsHeader_edited-1.jpg” BORDER=0 > –>
<?php $replacethese = array(‘[‘,’]’);
$replacewith = array(‘<span id=”middleword”>’,'</span>’);
echo str_replace($replacethese, $replacewith, get_bloginfo(‘title’)); ?>
</h1>
</div>Can this code be added to the css style sheet or does it hae to be in the header?
My site is http://www.haroldbucknerphotography.com with is still in development.
Thanks
Thanks