• Resolved HopefulGJL

    (@hopefulgjl)


    Hello,

    I am trying to see how I can move a picture on my right sidebar over to the left a little.

    I am using the FlexSqueeze theme and the Custom Sidebars plugin.

    I may not use the picture that I have there now in the final design, but I am using it as a “placeholder” just to get the alignment correct for whatever I do decide to use.

    I believe the way to accomplish this will be to update my Sidebars css sheet, but I really don’t know code.

    Does anyone know what it is that I can adjust that will move the picture over to the left a little based on the below css sheet?

    If you want to see how it displays now, the website is positiving.com.

    Thanks Much in advance for any help you can provide.

    <?php
    
    global $options;
    
    foreach ($options as $value) {
    
            if (get_option( $value['id'] ) === FALSE) { $$value['id'] = $value['std']; } else { $$value['id'] = get_option( $value['id'] ); } }
    
    ?>
    
    <div id="sidebar">
      <?php if ($flex_sidebar_visibility == "no") { ?>
      <?php if ($flex_adsense_loc2 == "yes") { ?>
      <div style="display:block; text-align:center; margin:10px 0 15px 0;">
        <?php 
    
    	$adsize = $flex_adsense_loc2size;
    
    	$adtype = $flex_adsense_loc2type;
    
    	$adchannel = $flex_adsense_loc2channel;
    
    	include('adsense.php'); ?>
      </div>
      <?php } else { ?>
      <?php } ?>
      <?php } else { ?>
      <div id="sidebar-top">
        <?php if ($flex_adsense_loc2 == "yes") { ?>
        <div style="display:block; text-align:center; margin:10px auto 15px auto;">
          <?php 
    
    	$adsize = $flex_adsense_loc2size;
    
    	$adtype = $flex_adsense_loc2type;
    
    	$adchannel = $flex_adsense_loc2channel;
    
    	include('adsense.php'); ?>
        </div>
        <?php } else { ?>
        <?php } ?>
        <?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar('Sidebar_top') ) : else : ?>
        <div class="toptitle">
          <h2 style="border:1px solid #<?php echo $flex_sidebar_boxborder; ?>;"><?php echo $flex_sidebar_toptitle; ?></h2>
        </div>
        <div class="sidebar-top-box">
          <p><?php echo stripslashes($flex_sidebar_boxtext); ?></p>
          <div style="clear:both;"></div>
        </div>
        <div class="toptitle">
          <h2 style="border:1px solid #<?php echo $flex_sidebar_boxborder; ?>;">Recent Posts</h2>
        </div>
        <ul class="widget">
          <?php wp_get_archives('type=postbypost&limit=7'); ?>
        </ul>
    
        <div class="toptitle">
          <h2 style="border:1px solid #<?php echo $flex_sidebar_boxborder; ?>;">Recent Comments</h2>
        </div>
        <?php include (TEMPLATEPATH . '/simple_recent_comments.php'); ?>
        <?php src_simple_recent_comments(); ?>
        <?php endif; ?>
      </div>
      <div style="clear:both;"></div>
      <?php } ?>
      <div id="sidebar-center">
        <?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar('Sidebar_center') ) : else : ?>
    
        <?php endif; ?>
        <?php if ($flex_adsense_loc3 == "yes") { ?>
        <div style="display:block; text-align:center; margin:15px 0 15px 0;">
          <?php 
    
    	$adsize = $flex_adsense_loc3size;
    
    	$adtype = $flex_adsense_loc3type;
    
    	$adchannel = $flex_adsense_loc3channel;
    
    	include('adsense.php'); ?>
        </div>
        <?php } else { ?>
        <?php } ?>
        <br/>
      </div>
      <div id="sidebar-right">
        <?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar('Sidebar_right') ) : else : ?>
    
        <?php endif; ?>
      </div>
    </div>
Viewing 1 replies (of 1 total)
  • Thread Starter HopefulGJL

    (@hopefulgjl)

    I have resolved this issue.

    I took:

    <div id="sidebar-right">
        <?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar('Sidebar_right') ) : else : ?>

    and changed it to:

    <div id="sidebar-left">
        <?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar('Sidebar_right') ) : else : ?>
Viewing 1 replies (of 1 total)
  • The topic ‘How to align a picture on my right sidebar?’ is closed to new replies.