January 8, 201115 yr I'm trying to position this flash galery in to my website but I can't seem to get it to fit properly. Can anyone take a look and point me in the right direction? My site The PHP code for the 'top' section is below. This is the section im trying to put it in to. Below are 3 column sections so it cant go in any of them. <body <?php body_class(); ?>> <?php if(get_option("theme_rss_url") != "") { $rss_url = get_option("theme_rss_url"); } else {$rss_url = get_bloginfo('rss2_url');} ?> <?php if(get_option("show_rss_follower")) { ?><a href="<?php echo $rss_url;?>" style="position: fixed; top: 40%; z-index: 4;"><img src="<?php bloginfo('template_directory'); ?>/img/rss_subscribe_41x167.png" alt="Subscribe to RSS" /></a><?php } ?> <div class="container"> <div class="hd_w"> <div class="hd"> <div class="logo"> <?php if(get_option("theme_logo_url") != "") { $logo_url = get_option("theme_logo_url"); } else {$logo_url = get_bloginfo('template_directory')."/img/logo-gadgetine-1.png";} ?> <a href="<?php echo get_option('siteurl'); ?>"><img src="<?php echo $logo_url;?>" alt="<?php bloginfo("description");?>" /></a> </div> <div class="ad_728x90"><?php echo html_entity_decode(stripslashes(get_option("top_728_banner")));?></div> </div> </div> <div class="menu_w"> <div class="menu"> <div class="menu-dropdown"> <?php if ( function_exists( 'register_nav_menus' ) ) { $args = array( 'theme_location' => 'top_menu', "container" => "", 'menu_class' => '', 'container_class' => "", "link_before" => "", "link_after" => "", "fallback_cb" => '', 'depth' => 2, "echo" => false ); echo add_menu_arrows(wp_nav_menu($args)); } else { ?> <ul> <li <?php if ( is_home() ) { ?> class="act" <?php } ?>><a href="<?php bloginfo('url');?>"><span>Homepage</span></a></li> <li><a href="#"><span>Category 1</span></a></li> <li><a href="#"><span>Category 2</span></a></li> <li><a href="#"><span>Category 3</span></a></li> <li><a href="#"><span>Category 4</span></a></li> <li><a href="#"><span>Category 5</span></a></li> </ul> <?php } ?> </div> <?php include (TEMPLATEPATH . '/searchform.php'); ?> </div> </div> <div class="ad_text_w"> <div class="ad_text"> <div class="social"> <?php if(get_option("theme_rss_url") != "") { $rss_url = get_option("theme_rss_url"); } else {$rss_url = get_bloginfo('rss2_url');} ?> <?php if(get_option("show_rss_icon")) { ?><a href="<?php echo $rss_url;?>"><img src="<?php bloginfo('template_directory');?>/img/ico_rss_1.png" alt="RSS" /></a><?php } ?> <?php if(get_option("theme_twitter_url")) { ?> <a href="<?php echo get_option("theme_twitter_url");?>"><img src="<?php bloginfo('template_directory');?>/img/ico_twitter_1.png" alt="Follow us on Twitter" /></a> <?php } ?> <?php if(get_option("theme_facebook_url")) { ?> <a href="<?php echo get_option("theme_facebook_url");?>"><img src="<?php bloginfo('template_directory');?>/img/ico_facebook_1.png" alt="Become our friend on Facebook" /></a> <?php } ?> <?php if(get_option("theme_linkedin_url")) { ?> <a href="<?php echo get_option("theme_linkedin_url");?>"><img src="<?php bloginfo('template_directory');?>/img/ico_linkedin_1.png" alt="Check us out on Linked In" /></a> <?php } ?> </div> <div class="ad"><?php echo html_entity_decode(stripslashes(get_option("top_text_row")));?></div> </div> </div> <div> <?php include (ABSPATH . '/wp-content/plugins/wp-content-slideshow/content-slideshow.php'); ?> </div> I tried it without the div tags but then it goes in the very top left, covering the logo etc. Just to be clear, I want it shifting over to the right so it's in line with the left column. A big thanks to anyone who can help. Edited January 8, 201115 yr by shaneo85
Create an account or sign in to comment