So.... I still haven't gotten this figured out yet.
I've been trying to edit the stylesheet in the CPanel to make sure I'm editing the same one - and literally nothing shows for the #headerright.
PHP Code:
<?php if(get_theme_mod('header_layout') == 'Full') { ?>
<div id="header-blank">
<?php if(get_theme_mod('header_blog_title') == 'Image') { ?>
<div class="headerleft" id="imageheader">
<?php
if (is_home()) {
echo '<h1><a href="'.get_option('home').'/">'.get_bloginfo('name').'</a></h1>';
} else {
echo '<h4><a href="'.get_option('home').'/">'.get_bloginfo('name').'</a></h4>';
}
?>
<p><?php bloginfo('description'); ?></p>
</div>
<?php } else { ?>
<div class="headerleft">
<div class="headertext">
<?php if (is_home()) { ?>
<h1><a href="<?php echo get_settings('home'); ?>/"><?php bloginfo('name'); ?></a></h1>
<?php } else { ?>
<h4><a href="<?php echo get_settings('home'); ?>/"><?php bloginfo('name'); ?></a></h4>
<?php } ?>
<p><?php bloginfo('description'); ?></p>
</div>
</div>
<?php } ?>
</div>
<?php } else { ?>
<div id="header">
<?php if(get_theme_mod('header_blog_title') == 'Image') { ?>
<div class="headerleft" id="imageheader">
<?php
if (is_home()) {
echo '<h1><a href="'.get_option('home').'/">'.get_bloginfo('name').'</a></h1>';
} else {
echo '<h4><a href="'.get_option('home').'/">'.get_bloginfo('name').'</a></h4>';
}
?>
<p><?php bloginfo('description'); ?></p>
</div>
<?php } else { ?>
<div class="headerleft">
<div class="headertext">
<?php if (is_home()) { ?>
<h1><a href="<?php echo get_settings('home'); ?>/"><?php bloginfo('name'); ?></a></h1>
<?php } else { ?>
<h4><a href="<?php echo get_settings('home'); ?>/"><?php bloginfo('name'); ?></a></h4>
<?php } ?>
<p><?php bloginfo('description'); ?></p>
</div>
</div>
<?php } ?>
<div class="headerright">
<p><a class="rsslink" rel="nofollow" href="<?php bloginfo('rss_url'); ?>"><?php _e("Subscribe to Posts", 'studiopress'); ?></a><a class="rsslink" rel="nofollow" href="<?php bloginfo('comments_rss2_url'); ?>"><?php _e("Subscribe to Comments", 'studiopress'); ?></a></p>
<?php echo stripslashes (get_theme_mod('468_header_code')); ?>
</div>
</div>
</div>
<?php } ?>
I also had an issue with updating the theme options within WP since the last update and seem to have that fixed, so I'm wondering if something is again stopping the changes from going through....?
You mentioned turning caching off - how might I figure out if it's 'turned on'?