Jump to content

Rustyhands

Member
  • Posts

    69
  • Joined

  • Last visited

Everything posted by Rustyhands

  1. hers tcode /* Content ----------------------------------------------- */ body { font: $(body.font); color: $(body.text.color); background: $(body.background); } html body .region-inner { min-width: 0; max-width: 100%; width: auto; } .content-outer { font-size: 90%; } a:link { text-decoration:none; color: $(link.color); } a:visited { text-decoration:none; color: $(link.visited.color); } a:hover { text-decoration:underline; color: $(link.hover.color); } .content-outer { background: $(content.background); -moz-border-radius: $(content.border.radius); -webkit-border-radius: $(content.border.radius); -goog-ms-border-radius: $(content.border.radius); border-radius: $(content.border.radius); -moz-box-shadow: 0 0 $(content.shadow.spread) rgba(0, 0, 0, .15); -webkit-box-shadow: 0 0 $(content.shadow.spread) rgba(0, 0, 0, .15); -goog-ms-box-shadow: 0 0 $(content.shadow.spread) rgba(0, 0, 0, .15); box-shadow: 0 0 $(content.shadow.spread) rgba(0, 0, 0, .15); margin: $(content.margin) auto; } .content-inner { padding: $(content.padding); }
  2. hi everyone im trying to change the width on my blog without any success. I cant seem to access the css file to change the appearance of the blogger blog. here is my blog address if anyone is interested in helping. http://dobelldesigns.blogspot.com.au/ thanks for chatting rusty
  3. heres the whole header php :S <?php //session_start(); ?> <?php $cryptinstall=TEMPLATEPATH."/scripts/crypt/cryptographp.fct.php"; include $cryptinstall; $_SESSION['cryptdir'] = get_template_directory_uri().'/scripts/crypt'; ?> <!DOCTYPE HTML> <!-- Delight is a Pixedelic work, by Consorzio Creativo on Wordpress platform | Manuel Masia (designer and developer) --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=<?php bloginfo( 'charset' ); ?>" > <title><?php global $page, $paged; global $custom_seo; $meta_seo = get_post_meta(get_the_ID(), $custom_seo->get_the_id(), TRUE); if (is_tax()) { $the_term = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) ); $the_term = $the_term->term_id; } if (is_category()){ $the_category = get_query_var('cat'); } if((is_single()||is_page()) && $meta_seo && array_key_exists('title',$meta_seo)){ echo $meta_seo['title']; } elseif(is_home()&&get_pix_option('pix_front_page_seo_title')!='') { echo get_pix_option('pix_front_page_seo_title'); } elseif(is_tax() && get_pix_option('pix_array_term_seotitle_'. $the_term)!='') { echo get_pix_option('pix_array_term_seotitle_'. $the_term); } elseif(is_category() && get_pix_option('pix_array_term_seotitle_'. $the_category)!='') { echo get_pix_option('pix_array_term_seotitle_'. $the_category); } else { wp_title( '|', true, 'right' ); bloginfo( 'name' ); $site_description = get_bloginfo( 'description', 'display' ); if ( $site_description && ( is_home() || is_front_page() ) ) echo " | $site_description"; if ( $paged >= 2 || $page >= 2 ) echo ' | ' . sprintf( __( '%s' ), max( $paged, $page ) ); }?></title> <?php if((is_single()||is_page()) && $meta_seo && array_key_exists('description',$meta_seo)){ ?> <meta name="description" content="<?php echo $meta_seo['description']; ?>"> <?php } elseif (get_pix_option('pix_front_page_seo_title')!=''&&is_home()) { ?> <meta name="description" content="<?php echo get_pix_option('pix_front_page_seo_description'); ?>"> <?php } elseif(is_tax() && get_pix_option('pix_array_term_seodescription_'. $the_term)!='') { echo '<meta name="description" content="'.get_pix_option('pix_array_term_seodescription_'. $the_term).'">'; } elseif(is_category() && get_pix_option('pix_array_term_seodescription_'. $the_category)!='') { echo '<meta name="description" content="'.get_pix_option('pix_array_term_seodescription_'. $the_category).'">'; } if((is_single()||is_page()) && $meta_seo && array_key_exists('keywords',$meta_seo)){ ?> <meta name="keywords" content="<?php echo $meta_seo['keywords']; ?>"> <?php } elseif (get_pix_option('pix_front_page_seo_title')!=''&&is_home()) { ?> <meta name="keywords" content="<?php echo get_pix_option('pix_front_page_seo_keywords'); ?>"> <?php } elseif(is_tax() && get_pix_option('pix_array_term_seokeywords_'. $the_term)!='') { echo '<meta name="keywords" content="'.get_pix_option('pix_array_term_seokeywords_'. $the_term).'">'; } elseif(is_category() && get_pix_option('pix_array_term_seokeywords_'. $the_category)!='') { echo '<meta name="keywords" content="'.get_pix_option('pix_array_term_seokeywords_'. $the_category).'">'; } ?> <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" > <link rel="icon" href="<?php echo get_pix_option('pix_favicon_ico'); ?>" type="image/x-icon"> <link rel="shortcut icon" href="<?php echo get_pix_option('pix_favicon_ico'); ?>" type="image/x-icon"> <meta name="viewport" content="width=1200" > <!--/////////////////////////////////////////////////////////////////////////////////////////////////// // // Scripts // ///////////////////////////////////////////////////////////////////////////////////////////////////--> <?php if(get_pix_option('pix_google_prevent') != '0') { wp_enqueue_script("google-font", "https://www.google.com/jsapi"); ?> <script type="text/javascript" src="https://apis.google.com/js/plusone.js"></script> <?php } wp_enqueue_script("jquery"); wp_enqueue_script("modernizr", get_template_directory_uri()."/scripts/modernizr-1.7.min.js"); wp_enqueue_script("colorBox", get_template_directory_uri()."/scripts/jquery.colorbox-min.js", array('jquery')); wp_enqueue_script("qtip", get_template_directory_uri()."/scripts/jquery.qtip.min.js", array('jquery')); wp_enqueue_script("jquery-hoverIntent", get_template_directory_uri()."/scripts/jquery.hoverIntent.minified.js", array('jquery')); wp_enqueue_script("jquery-easing", get_template_directory_uri()."/scripts/jquery.easing.1.3.js", array('jquery')); wp_enqueue_script("jquery-thumbnailScroller", get_template_directory_uri()."/scripts/jquery.thumbnailScroller.js", array('jquery')); wp_enqueue_script("swfobject"); wp_enqueue_script("flowplayer", get_template_directory_uri()."/scripts/flowplayer-3.2.6.min.js", array('jquery')); wp_enqueue_script("projekktor", get_template_directory_uri()."/scripts/projekktor.min.js", array('jquery')); wp_enqueue_script("pixwall_delight", get_template_directory_uri()."/scripts/pixwall_delight.js", array('jquery')); wp_enqueue_script("custom", get_template_directory_uri()."/scripts/custom.php", array('jquery')); wp_enqueue_script("cufon", get_template_directory_uri()."/scripts/cufon-yui.js", array('jquery')); wp_enqueue_script("icons", get_template_directory_uri()."/fonts/icons.js", array('cufon')); ?> <!--/////////////////////////////////////////////////////////////////////////////////////////////////// // // Styles // ///////////////////////////////////////////////////////////////////////////////////////////////////--> <link rel="stylesheet" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>" > <!-- default stylesheet --> <link rel="stylesheet" media="all" href="<?php echo get_template_directory_uri(); ?>/style.php" > <!-- general stylesheet --> <!--[if lt IE 9]> <script src="<?php echo get_template_directory_uri(); ?>/scripts/html5.js"></script> <![endif]--> <?php if ( is_singular() && get_pix_option( 'thread_comments' ) ) wp_enqueue_script( 'comment-reply' ); wp_head(); ?> <script type="text/javascript"> /****************************************************** * * Cufon init * ******************************************************/ Cufon.replace('.icons, .icon a , .submenu, label.error, #pix_controls span, #scrollCommands', { fontFamily: 'icons' }); </script> </head> <body <?php body_class(); ?>> <div id="topto"></div> <div id="wide_flash" data-position="fixed" data-top="0" data-bottom="not"></div> <?php function default_bg(){ if(get_pix_option('pix_general_background')=='slideshow'){ ?> <div class="pix_slide" data-position="fixed" data-top="0" data-bottom="not"> <?php $slide_general = get_pix_option('pix_array_slide_general_'); foreach ($slide_general as $slide) { echo '<div data-src="'. $slide .'" data-thumb="'. get_pix_thumb($slide, 'exTh') .'" data-content="'. get_pix_content($slide) .'"></div>'; } ?> </div> <div id="pixwall_delight_target" data-position="fixed" data-top="0" data-bottom="not"></div><!-- #pixwall_delight_target --> <div id="pixwall_delight_bar" style="display:none"></div><!-- #pixwall_delight_bar --> <div class="pix_overlay_pattern" data-position="fixed" data-top="0" data-bottom="not"></div> <?php } elseif (get_pix_option('pix_general_background')=='single_wide') { ?> <div class="pix_slide" data-position="fixed" data-top="0" data-bottom="not"> <div data-src="<?php echo get_pix_option('pix_wide_image_general'); ?>"></div> </div> <div id="pixwall_delight_target" data-position="fixed" data-top="0" data-bottom="not"></div><!-- #pixwall_delight_target --> <div class="pix_overlay_pattern" data-position="fixed" data-top="0" data-bottom="not"></div> <?php } elseif (get_pix_option('pix_general_background')=='video') { echo getTheWideVideo(get_pix_option('pix_wide_video_general'),get_pix_option('pix_wide_video_general_start'),get_pix_option('pix_wide_video_general_loop') ); echo '<div id="hide_credits_pictures"><div id="pix_credits_pictures">'.get_pix_content(get_pix_option('pix_wide_video_general')).'</div></div>'; } elseif (get_pix_option('pix_general_background')=='googlemap') { ?> <script type='text/javascript' src='http://maps.google.com/maps/api/js?sensor=true'></script> <div id="outer_canvas" style="width: 100%; height: 100%; left:0; overflow:hidden; position:fixed; z-index:0" data-position="fixed" data-top="0" data-bottom="not" data-height="100"> <div id="pix_map_canvas" data-coord1="<?php $coords = findCoords(get_pix_option('pix_wide_googlemap_general')); echo $coords[0]; ?>" data-coord2="<?php echo $coords[1]; ?>" data-zoom="<?php echo get_pix_option('pix_wide_googlemap_general_zoom'); ?>" data-indications="<?php echo htmlspecialchars(get_pix_option('pix_wide_googlemap_general_indications')); ?>" data-type="<?php echo get_pix_option('pix_wide_googlemap_general_type'); ?>" style="width: 100%; height: 100%; position: absolute; left:0; z-index:0" data-height="100"> </div> </div> <?php } } global $custom_options; $meta_image = get_post_meta(get_the_ID(), $custom_options->get_the_id(), TRUE); if (is_home() && get_pix_option('pix_home_background') == 'slideshow') { ?> <div class="pix_slide" data-position="fixed" data-top="0" data-bottom="not"> <?php if(get_pix_option('pix_array_slide_home_')!=''){ $slide_home = get_pix_option('pix_array_slide_home_'); foreach ($slide_home as $slide) { echo '<div data-src="'. $slide .'" data-thumb="'. get_pix_thumb($slide, 'exTh') .'" data-content="'. get_pix_content($slide) .'"></div>'; } } ?> </div> <div id="pixwall_delight_target" data-position="fixed" data-top="0" data-bottom="not"></div><!-- #pixwall_delight_target --> <div id="pixwall_delight_bar" style="display:none"></div><!-- #pixwall_delight_bar --> <div class="pix_overlay_pattern" data-position="fixed" data-top="0" data-bottom="not"></div> <?php } elseif (is_home() && get_pix_option('pix_home_background') == 'single') { ?> <div class="pix_slide" data-position="fixed" data-top="0" data-bottom="not"> <div data-src="<?php echo get_pix_option('pix_wide_image_home'); ?>"></div> </div> <div id="pixwall_delight_target" data-position="fixed" data-top="0" data-bottom="not"></div><!-- #pixwall_delight_target --> <div class="pix_overlay_pattern" data-position="fixed" data-top="0" data-bottom="not"></div> <?php } elseif (is_home() && get_pix_option('pix_home_background') == 'video') { echo getTheWideVideo(get_pix_option('pix_wide_video_home'),get_pix_option('pix_wide_video_home_start'),get_pix_option('pix_wide_video_home_loop') ); echo '<div id="hide_credits_pictures"><div id="pix_credits_pictures">'.get_pix_content(get_pix_option('pix_wide_video_home')).'</div></div>'; } elseif (is_home() && get_pix_option('pix_home_background') == 'googlemap') { ?> <script type='text/javascript' src='http://maps.google.com/maps/api/js?sensor=true'></script><div id="outer_canvas" style="width: 100%; height: 100%; left:0; overflow:hidden; position:fixed; z-index:0" data-position="fixed" data-top="0" data-bottom="not" data-height="100"> <div id="pix_map_canvas" data-coord1="<?php $coords = findCoords(get_pix_option('pix_wide_googlemap_home')); echo $coords[0]; ?>" data-coord2="<?php echo $coords[1]; ?>" data-zoom="<?php echo get_pix_option('pix_wide_googlemap_home_zoom'); ?>" data-indications="<?php echo htmlspecialchars(get_pix_option('pix_wide_googlemap_indications_home')); ?>" data-type="<?php echo get_pix_option('pix_wide_googlemap_type_home'); ?>" style="width: 100%; height: 100%; position: absolute; left:0; z-index:0" data-height="100"> </div> </div> <?php } elseif ((is_single() || is_page()) && $meta_image['background']== 'singleimage') { ?> <div class="pix_slide" data-position="fixed" data-top="0" data-bottom="not"> <div data-src="<?php echo $meta_image['single_image']; ?>"></div> </div> <div id="pixwall_delight_target" data-position="fixed" data-top="0" data-bottom="not"></div><!-- #pixwall_delight_target --> <div class="pix_overlay_pattern" data-position="fixed" data-top="0" data-bottom="not"></div> <?php } elseif ((is_single() || is_page()) && $meta_image['background']=='slideshow') { ?> <div class="pix_slide pixwall_delight" data-position="fixed" data-top="0" data-bottom="not"> <?php foreach ($meta_image['slideshow'] as $key=>$value) { echo '<div id="slide_'.$key.'" data-src="'.$meta_image['slideshow'][$key]['link'].'" data-thumb="'.get_pix_thumb($meta_image['slideshow'][$key]['link'], 'exTh').'" data-content="'. get_pix_content($meta_image['slideshow'][$key]['link']) .'"></div>'; } ?> </div> <div id="pixwall_delight_target" data-position="fixed" data-top="0" data-bottom="not"></div><!-- #pixwall_delight_target --> <div id="pixwall_delight_bar" style="display:none"></div><!-- #pixwall_delight_bar --> <div class="pix_overlay_pattern" data-position="fixed" data-top="0" data-bottom="not"></div> <?php } elseif ((is_single() || is_page()) && $meta_image['background']=='googlemap') { ?> <script type='text/javascript' src='http://maps.google.com/maps/api/js?sensor=true'></script> <div id="outer_canvas" style="width: 100%; height: 100%; left:0; overflow:hidden; position:fixed; z-index:0" data-position="fixed" data-top="0" data-bottom="not" data-height="100"> <div id="pix_map_canvas" data-coord1="<?php $coords = findCoords($meta_image['googlemap']); echo $coords[0]; ?>" data-coord2="<?php echo $coords[1]; ?>" data-zoom="<?php echo $meta_image['zoom']; ?>" data-indications="<?php echo htmlspecialchars($meta_image['indications']); ?>" data-type="<?php echo $meta_image['type']; ?>" style="width: 100%; height: 100%; position: absolute; left:0; z-index:0" data-height="100"> </div> </div> <?php } elseif ((is_single() || is_page()) && $meta_image['background']=='video') { echo getTheWideVideo($meta_image['video'],$meta_image['video_start'],$meta_image['video_loop'] ); echo '<div id="hide_credits_pictures"><div id="pix_credits_pictures">'.get_pix_content($meta_image['video']).'</div></div>'; } elseif ((is_single() || is_page()) && $meta_image['background']=='none') { ?> <?php } elseif (is_category()){ $the_category = get_query_var('cat'); $pix_array_category = get_pix_option('pix_array_category_slide_'. $the_category.'_'); if(get_pix_option('pix_array_category_slide_'.$the_category)=='slideshow'){ ?> <div class="pix_slide" data-position="fixed" data-top="0" data-bottom="not"> <?php foreach ($pix_array_category as $slide) { echo '<div data-src="'. $slide .'" data-thumb="'. get_pix_thumb($slide, 'exTh') .'" data-content="'. get_pix_content($slide) .'"></div>'; }?> </div> <div id="pixwall_delight_target" data-position="fixed" data-top="0" data-bottom="not"></div><!-- #pixwall_delight_target --> <div id="pixwall_delight_bar" style="display:none"></div><!-- #pixwall_delight_bar --> <div class="pix_overlay_pattern" data-position="fixed" data-top="0" data-bottom="not"></div> <?php } elseif(get_pix_option('pix_array_category_slide_'.$the_category)=='single'){ ?> <div class="pix_slide" data-position="fixed" data-top="0" data-bottom="not"> <div data-src="<?php echo get_pix_option('pix_array_category_single_'. $the_category); ?>"></div> </div> <div id="pixwall_delight_target" data-position="fixed" data-top="0" data-bottom="not"></div><!-- #pixwall_delight_target --> <div class="pix_overlay_pattern" data-position="fixed" data-top="0" data-bottom="not"></div> <?php } elseif(get_pix_option('pix_array_category_slide_'.$the_category)=='video'){ echo getTheWideVideo(get_pix_option('pix_array_category_video_'. $the_category),get_pix_option('pix_array_category_video_start_'. $the_category),get_pix_option('pix_array_category_video_loop_'. $the_category) ); echo '<div id="hide_credits_pictures"><div id="pix_credits_pictures">'.get_pix_content(get_pix_option('pix_array_category_video_'. $the_category)).'</div></div>'; } elseif(get_pix_option('pix_array_category_slide_'.$the_category)=='googlemap'){ ?> <script type='text/javascript' src='http://maps.google.com/maps/api/js?sensor=true'></script> <div id="outer_canvas" style="width: 100%; height: 100%; left:0; overflow:hidden; position:fixed; z-index:0" data-position="fixed" data-top="0" data-bottom="not" data-height="100"> <div id="pix_map_canvas" data-coord1="<?php $coords = findCoords(get_pix_option('pix_array_category_googlemap_'. $the_category)); echo $coords[0]; ?>" data-coord2="<?php echo $coords[1]; ?>" data-zoom="<?php echo get_pix_option('pix_array_category_googlemap_zoom_'. $the_category); ?>" data-indications="<?php echo htmlspecialchars(get_pix_option('pix_array_category_googlemap_indications_'. $the_category)); ?>" data-type="<?php echo get_pix_option('pix_array_category_googlemap_type_'. $the_category); ?>" style="width: 100%; height: 100%; position: absolute; left:0; z-index:0" data-height="100"> </div> </div> <?php } else { default_bg(); } } elseif (is_tax()){ $the_term = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) ); $the_term = $the_term->term_id; $pix_array_term = get_pix_option('pix_array_term_slide_'. $the_term.'_'); if(get_pix_option('pix_array_term_slide_'.$the_term)=='slideshow'){ ?> <div class="pix_slide" data-position="fixed" data-top="0" data-bottom="not"> <?php foreach ($pix_array_term as $slide) { echo '<div data-src="'. $slide .'" data-thumb="'. get_pix_thumb($slide, 'exTh') .'" data-content="'. get_pix_content($slide) .'"></div>'; }?> </div> <div id="pixwall_delight_target" data-position="fixed" data-top="0" data-bottom="not"></div><!-- #pixwall_delight_target --> <div id="pixwall_delight_bar" style="display:none"></div><!-- #pixwall_delight_bar --> <div class="pix_overlay_pattern" data-position="fixed" data-top="0" data-bottom="not"></div> <?php } elseif(get_pix_option('pix_array_term_slide_'.$the_term)=='single'){ ?> <div class="pix_slide" data-position="fixed" data-top="0" data-bottom="not"> <div data-src="<?php echo get_pix_option('pix_array_term_single_'. $the_term); ?>"></div> </div> <div id="pixwall_delight_target" data-position="fixed" data-top="0" data-bottom="not"></div><!-- #pixwall_delight_target --> <div class="pix_overlay_pattern" data-position="fixed" data-top="0" data-bottom="not"></div> <?php } elseif(get_pix_option('pix_array_term_slide_'.$the_term)=='video'){ echo getTheWideVideo(get_pix_option('pix_array_term_video_'. $the_term),get_pix_option('pix_array_term_video_start_'. $the_term),get_pix_option('pix_array_term_video_loop_'. $the_term) ); echo '<div id="hide_credits_pictures"><div id="pix_credits_pictures">'.get_pix_content(get_pix_option('pix_array_term_video_'. $the_term)).'</div></div>'; } elseif(get_pix_option('pix_array_term_slide_'.$the_term)=='googlemap'){ ?> <script type='text/javascript' src='http://maps.google.com/maps/api/js?sensor=true'></script> <div id="outer_canvas" style="width: 100%; height: 100%; left:0; overflow:hidden; position:fixed; z-index:0" data-position="fixed" data-top="0" data-bottom="not" data-height="100"> <div id="pix_map_canvas" data-coord1="<?php $coords = findCoords(get_pix_option('pix_array_term_googlemap_'. $the_term)); echo $coords[0]; ?>" data-coord2="<?php echo $coords[1]; ?>" data-zoom="<?php echo get_pix_option('pix_array_term_googlemap_zoom_'. $the_term); ?>" data-indications="<?php echo htmlspecialchars(get_pix_option('pix_array_term_googlemap_indications_'. $the_term)); ?>" data-type="<?php echo get_pix_option('pix_array_term_googlemap_type_'. $the_term); ?>" style="width: 100%; height: 100%; position: absolute; left:0; z-index:0" data-height="100"> </div> </div> <?php } elseif(get_pix_option('pix_array_term_slide_'.$the_term)=='default'){ default_bg(); } } elseif (is_archive()){ $pix_archive_slide = get_pix_option('pix_array_archive_slide_'); if(get_pix_option('pix_archive_slide')=='slideshow'){ ?> <div class="pix_slide" data-position="fixed" data-top="0" data-bottom="not"> <?php foreach ($pix_archive_slide as $slide) { echo '<div data-src="'. $slide .'" data-thumb="'. get_pix_thumb($slide, 'exTh') .'" data-content="'. get_pix_content($slide) .'"></div>'; }?> </div> <div id="pixwall_delight_target" data-position="fixed" data-top="0" data-bottom="not"></div><!-- #pixwall_delight_target --> <div id="pixwall_delight_bar" style="display:none"></div><!-- #pixwall_delight_bar --> <div class="pix_overlay_pattern" data-position="fixed" data-top="0" data-bottom="not"></div> <?php } elseif(get_pix_option('pix_archive_slide')=='single') { ?> <div class="pix_slide" data-position="fixed" data-top="0" data-bottom="not"> <div data-src="<?php echo get_pix_option('pix_archive_single'); ?>"></div> </div> <div id="pixwall_delight_target" data-position="fixed" data-top="0" data-bottom="not"></div><!-- #pixwall_delight_target --> <div class="pix_overlay_pattern" data-position="fixed" data-top="0" data-bottom="not"></div> <?php } elseif(get_pix_option('pix_archive_slide')=='video') { echo getTheWideVideo(get_pix_option('pix_archive_video'),get_pix_option('pix_archive_video_start'),get_pix_option('pix_archive_video_loop') ); echo '<div id="hide_credits_pictures"><div id="pix_credits_pictures">'.get_pix_content(get_pix_option('pix_archive_video')).'</div></div>'; } elseif(get_pix_option('pix_archive_slide')=='googlemap') { ?> <script type='text/javascript' src='http://maps.google.com/maps/api/js?sensor=true'></script> <div id="outer_canvas" style="width: 100%; height: 100%; left:0; overflow:hidden; position:fixed; z-index:0" data-position="fixed" data-top="0" data-bottom="not" data-height="100"> <div id="pix_map_canvas" data-coord1="<?php $coords = findCoords(get_pix_option('pix_archive_googlemap')); echo $coords[0]; ?>" data-coord2="<?php echo $coords[1]; ?>" data-zoom="<?php echo get_pix_option('pix_archive_googlemap_zoom'); ?>" data-indications="<?php echo htmlspecialchars(get_pix_option('pix_archive_googlemap_indications')); ?>" data-type="<?php echo get_pix_option('pix_archive_googlemap_type'); ?>" style="width: 100%; height: 100%; position: absolute; left:0; z-index:0" data-height="100"> </div> </div> <?php } elseif(get_pix_option('pix_archive_slide')=='default') { default_bg(); } } elseif (is_search()){ $pix_searchpage_slide = get_pix_option('pix_array_searchpage_slide_'); if(get_pix_option('pix_searchpage_slide')=='slideshow'){ ?> <div class="pix_slide" data-position="fixed" data-top="0" data-bottom="not"> <?php foreach ($pix_searchpage_slide as $slide) { echo '<div data-src="'. $slide .'" data-thumb="'. get_pix_thumb($slide, 'exTh') .'" data-content="'. get_pix_content($slide) .'"></div>'; } ?> </div> <div id="pixwall_delight_target" data-position="fixed" data-top="0" data-bottom="not"></div><!-- #pixwall_delight_target --> <div id="pixwall_delight_bar" style="display:none"></div><!-- #pixwall_delight_bar --> <div class="pix_overlay_pattern" data-position="fixed" data-top="0" data-bottom="not"></div> <?php } elseif (get_pix_option('pix_searchpage_slide')=='single') { ?> <div class="pix_slide" data-position="fixed" data-top="0" data-bottom="not"> <div data-src="<?php echo get_pix_option('pix_searchpage_single'); ?>"></div> </div> <div id="pixwall_delight_target" data-position="fixed" data-top="0" data-bottom="not"></div><!-- #pixwall_delight_target --> <div class="pix_overlay_pattern" data-position="fixed" data-top="0" data-bottom="not"></div> <?php } elseif (get_pix_option('pix_searchpage_slide')=='video') { echo getTheWideVideo(get_pix_option('pix_searchpage_video'),get_pix_option('pix_searchpage_video_start'),get_pix_option('pix_searchpage_video_loop') ); echo '<div id="hide_credits_pictures"><div id="pix_credits_pictures">'.get_pix_content(get_pix_option('pix_searchpage_video')).'</div></div>'; } elseif (get_pix_option('pix_searchpage_slide')=='googlemap') { ?> <script type='text/javascript' src='http://maps.google.com/maps/api/js?sensor=true'></script> <div id="outer_canvas" style="width: 100%; height: 100%; left:0; overflow:hidden; position:fixed; z-index:0" data-position="fixed" data-top="0" data-bottom="not" data-height="100"> <div id="pix_map_canvas" data-coord1="<?php $coords = findCoords(get_pix_option('pix_searchpage_googlemap')); echo $coords[0]; ?>" data-coord2="<?php echo $coords[1]; ?>" data-zoom="<?php echo get_pix_option('pix_searchpage_googlemap_zoom'); ?>" data-indications="<?php echo htmlspecialchars(get_pix_option('pix_searchpage_googlemap_indications')); ?>" data-type="<?php echo get_pix_option('pix_searchpage_googlemap_type'); ?>" style="width: 100%; height: 100%; position: absolute; left:0; z-index:0" data-height="100"> </div> </div> <?php } else { default_bg(); } } elseif (is_404()){ $pix_404_slide = get_pix_option('pix_array_404_slide_'); if(get_pix_option('pix_404_slide')=='slideshow'){ ?> <div class="pix_slide" data-position="fixed" data-top="0" data-bottom="not"> <?php foreach ($pix_404_slide as $slide) { echo '<div data-src="'. $slide .'" data-thumb="'. get_pix_thumb($slide, 'exTh') .'" data-content="'. get_pix_content($slide) .'"></div>'; } ?> </div> <div id="pixwall_delight_target" data-position="fixed" data-top="0" data-bottom="not"></div><!-- #pixwall_delight_target --> <div id="pixwall_delight_bar" style="display:none"></div><!-- #pixwall_delight_bar --> <div class="pix_overlay_pattern" data-position="fixed" data-top="0" data-bottom="not"></div> <?php } elseif (get_pix_option('pix_404_slide')=='single') { ?> <div class="pix_slide" data-position="fixed" data-top="0" data-bottom="not"> <div data-src="<?php echo get_pix_option('pix_404_single'); ?>"></div> </div> <div id="pixwall_delight_target" data-position="fixed" data-top="0" data-bottom="not"></div><!-- #pixwall_delight_target --> <div class="pix_overlay_pattern" data-position="fixed" data-top="0" data-bottom="not"></div> <?php } elseif (get_pix_option('pix_404_slide')=='video') { echo getTheWideVideo(get_pix_option('pix_404_video'),get_pix_option('pix_404_video_start'),get_pix_option('pix_404_video_loop') ); echo '<div id="hide_credits_pictures"><div id="pix_credits_pictures">'.get_pix_content(get_pix_option('pix_404_video')).'</div></div>'; } elseif (get_pix_option('pix_404_slide')=='googlemap') { ?> <script type='text/javascript' src='http://maps.google.com/maps/api/js?sensor=true'></script> <div id="outer_canvas" style="width: 100%; height: 100%; left:0; overflow:hidden; position:fixed; z-index:0" data-position="fixed" data-top="0" data-bottom="not" data-height="100"> <div id="pix_map_canvas" data-coord1="<?php $coords = findCoords(get_pix_option('pix_404_googlemap')); echo $coords[0]; ?>" data-coord2="<?php echo $coords[1]; ?>" data-zoom="<?php echo get_pix_option('pix_404_googlemap_zoom'); ?>" data-indications="<?php echo htmlspecialchars(get_pix_option('pix_404_googlemap_indications')); ?>" data-type="<?php echo get_pix_option('pix_404_googlemap_type'); ?>" style="width: 100%; height: 100%; position: absolute; left:0; z-index:0" data-height="100"> </div> </div> <?php } else { default_bg(); } } elseif (is_attachment()){ $image = get_children( array('post_parent' => get_the_ID(), 'post_type' => 'attachment', 'post_mime_type' => 'image') ); $video = get_children( array('post_parent' => get_the_ID(), 'post_type' => 'attachment', 'post_mime_type' => 'video') ); $audio = get_children( array('post_parent' => get_the_ID(), 'post_type' => 'attachment', 'post_mime_type' => 'audio') ); if ( $image ) { ?> <div class="pix_slide" data-position="fixed" data-top="0" data-bottom="not"> <div data-src="<?php $image_bg = wp_get_attachment_image_src( get_the_id(), 'full' ); echo $image_bg[0]; ?>"></div> </div> <div id="pixwall_delight_target" data-position="fixed" data-top="0" data-bottom="not"></div><!-- #pixwall_delight_target --> <div class="pix_overlay_pattern" data-position="fixed" data-top="0" data-bottom="not"></div> <?php } else { default_bg(); } ?> <?php } else { default_bg(); }?> <header <?php if(get_pix_option('pix_header_position')!='scrollable') { ?>data-position="fixed" data-top="0" data-bottom="not"<?php } ?>> <div id="logo"> <?php $heading_tag = ( is_home() || is_front_page() ) ? 'h1' : 'div'; ?> <<?php echo $heading_tag; ?>> <a href="<?php echo home_url( '/' ); ?>" title="<?php echo stripslashes(get_pix_option( 'pix_site_title' )); ?>"><?php echo stripslashes(get_pix_option( 'pix_site_title' )); ?> <small><?php echo stripslashes(get_pix_option( 'pix_site_description' )); ?></small></a> </<?php echo $heading_tag; ?>> </div><!-- #logo --> </header> <nav<?php if(get_pix_option('pix_nav_position')!='scrollable') { ?> data-position="fixed" data-top="100" data-bottom="not"<?php } ?>> <?php if (menuCount('primary_menu')!=0) { wp_nav_menu( array( 'container' => 'ul','theme_location' => 'primary_menu' ) ); } ?> <?php if (menuCount('secondary_menu')!=0) { wp_nav_menu( array( 'container' => 'ul','theme_location' => 'secondary_menu','menu_id'=>'secondary' ) ); } ?> </nav> <?php if(get_pix_option('pix_social_bar')!='hidden'){ ?> <div id="social_bar"<?php if(get_pix_option('pix_social_bar') == 'open' && get_pix_option('pix_header_position')!='scrollable'){ ?> data-position="fixed" data-top="-50" data-bottom="not" <?php } elseif(get_pix_option('pix_social_bar') != 'open' && get_pix_option('pix_header_position')!='scrollable') { ?> data-position="fixed" data-top="-50" data-bottom="not"<?php } ?><?php if(get_pix_option('pix_social_bar') == 'open'){ ?> class="open"<?php } ?>> <div class="wrapIn"> <?php if(get_pix_option('pix_seach_show')=='show') { get_search_form(); } ?> <?php if (get_pix_option('pix_twitter_icon')=='show' || get_pix_option('pix_google_icon')=='show' || get_pix_option('pix_facebook_icon')=='show' || get_pix_option('pix_tumblr_icon')=='show' || get_pix_option('pix_linkedin_icon')=='show' || get_pix_option('pix_myspace_icon')=='show' || get_pix_option('pix_flickr_icon')=='show' || get_pix_option('pix_youtube_icon')=='show' || get_pix_option('pix_vimeo_icon')=='show' || get_pix_option('pix_behance_icon')=='show' || get_pix_option('pix_500px_icon')=='show' || get_pix_option('pix_soundcloud_icon')=='show' || get_pix_option('pix_skype_icon')=='show' || get_pix_option('pix_rss_icon')=='show'){ ?> <div class="icon"> <?php if (get_pix_option('pix_twitter_icon')=='show'){ ?><a id="pix_twitter_icon" class="pix_tips_TR" title="<?php echo stripslashes(get_pix_option('pix_twitter_text')); ?>" href="<?php echo get_pix_option('pix_twitter_url'); ?>" target="_blank">t</a><?php } ?> <?php if (get_pix_option('pix_google_icon')=='show'){ ?><a id="pix_google_icon" class="pix_tips_TR" title="<?php echo stripslashes(get_pix_option('pix_google_text')); ?>" href="<?php echo get_pix_option('pix_google_url'); ?>" rel="author" target="_blank">g</a><?php } ?> <?php if (get_pix_option('pix_facebook_icon')=='show'){ ?><a id="pix_facebook_icon" class="pix_tips_TR" title="<?php echo stripslashes(get_pix_option('pix_facebook_text')); ?>" href="<?php echo get_pix_option('pix_facebook_url'); ?>" target="_blank">f</a><?php } ?> <?php if (get_pix_option('pix_tumblr_icon')=='show'){ ?><a id="pix_tumblr_icon" class="pix_tips_TR" title="<?php echo stripslashes(get_pix_option('pix_tumblr_text')); ?>" href="<?php echo get_pix_option('pix_tumblr_url'); ?>" target="_blank">u</a><?php } ?> <?php if (get_pix_option('pix_linkedin_icon')=='show'){ ?><a id="pix_linkedin_icon" class="pix_tips_TR" title="<?php echo stripslashes(get_pix_option('pix_linkedin_text')); ?>" href="<?php echo get_pix_option('pix_linkedin_url'); ?>" target="_blank">l</a><?php } ?> <?php if (get_pix_option('pix_myspace_icon')=='show'){ ?><a id="pix_myspace_icon" class="pix_tips_TR" title="<?php echo stripslashes(get_pix_option('pix_myspace_text')); ?>" href="<?php echo get_pix_option('pix_myspace_url'); ?>" target="_blank">m</a><?php } ?> <?php if (get_pix_option('pix_flickr_icon')=='show'){ ?><a id="pix_flickr_icon" class="pix_tips_TR" title="<?php echo stripslashes(get_pix_option('pix_flickr_text')); ?>" href="<?php echo get_pix_option('pix_flickr_url'); ?>" target="_blank">R</a><?php } ?> <?php if (get_pix_option('pix_youtube_icon')=='show'){ ?><a id="pix_youtube_icon" class="pix_tips_TR" title="<?php echo stripslashes(get_pix_option('pix_youtube_text')); ?>" href="<?php echo get_pix_option('pix_youtube_url'); ?>" target="_blank">y</a><?php } ?> <?php if (get_pix_option('pix_vimeo_icon')=='show'){ ?><a id="pix_vimeo_icon" class="pix_tips_TR" title="<?php echo stripslashes(get_pix_option('pix_vimeo_text')); ?>" href="<?php echo get_pix_option('pix_vimeo_url'); ?>" target="_blank">v</a><?php } ?> <?php if (get_pix_option('pix_behance_icon')=='show'){ ?><a id="pix_behance_icon" class="pix_tips_TR" title="<?php echo stripslashes(get_pix_option('pix_behance_text')); ?>" href="<?php echo get_pix_option('pix_behance_url'); ?>" target="_blank">b</a><?php } ?> <?php if (get_pix_option('pix_500px_icon')=='show'){ ?><a id="pix_500px_icon" class="pix_tips_TR" title="<?php echo stripslashes(get_pix_option('pix_500px_text')); ?>" href="<?php echo get_pix_option('pix_500px_url'); ?>" target="_blank">5</a><?php } ?> <?php if (get_pix_option('pix_soundcloud_icon')=='show'){ ?><a id="pix_soundcloud_icon" class="pix_tips_TR" title="<?php echo stripslashes(get_pix_option('pix_soundcloud_text')); ?>" href="<?php echo get_pix_option('pix_soundcloud_url'); ?>" target="_blank">C</a><?php } ?> <?php if (get_pix_option('pix_skype_icon')=='show'){ ?><a id="pix_skype_icon" class="pix_tips_TR" title="<?php echo stripslashes(get_pix_option('pix_skype_text')); ?>" href="skype:<?php echo get_pix_option('pix_skype_id'); ?>?<?php echo get_pix_option('pix_skype_action'); ?>">s</a><?php } ?> <?php if (get_pix_option('pix_rss_icon')=='show'){ ?><a id="pix_rss_icon" class="pix_tips_TR" title="<?php echo stripslashes(get_pix_option('pix_rss_text')); ?>" href="<?php echo get_pix_option('pix_rss_url'); ?>" target="_blank">r</a><?php } ?> </div> <?php } ?> </div><!-- .wrapIn --> </div><!-- #social_bar --> <?php if(get_pix_option('pix_social_bar') == 'closed') { ?> <span class="click icons"<?php if(get_pix_option('pix_header_position')!='scrollable') { ?> data-position="fixed" data-top="0" data-bottom="not"<?php } ?>>_</span> <?php } else { ?> <span class="click icons"<?php if(get_pix_option('pix_header_position')!='scrollable') { ?> data-position="fixed" data-top="0" data-bottom="not"<?php } ?>>^</span> <?php } ?> <?php } ?> <div id="body">
  4. hi, yeah well this header php is massive!!! BIG BIG BIG. as far as the splash page thing..... its just a portfolio. info central not needed i spose. i cant find the tags in the header and i dont wanna mess around with such a large script :S
  5. hi everyone , i am having trouble at removing the link in the header of my page. not to sure which part of this to touch to do it ..... :S bit hesitant to do it on the fly. here is the code for the header.. heres the link. my site <?php //session_start(); ?> <?php $cryptinstall=TEMPLATEPATH."/scripts/crypt/cryptographp.fct.php"; include $cryptinstall; $_SESSION['cryptdir'] = get_template_directory_uri().'/scripts/crypt'; ?> <!DOCTYPE HTML> <!-- Delight is a Pixedelic work, by Consorzio Creativo on Wordpress platform | Manuel Masia (designer and developer) --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=<?php bloginfo( 'charset' ); ?>" > <title><?php global $page, $paged; global $custom_seo; $meta_seo = get_post_meta(get_the_ID(), $custom_seo->get_the_id(), TRUE); if (is_tax()) { $the_term = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) ); $the_term = $the_term->term_id; } if (is_category()){ $the_category = get_query_var('cat'); } if((is_single()||is_page()) && $meta_seo && array_key_exists('title',$meta_seo)){ echo $meta_seo['title']; } elseif(is_home()&&get_pix_option('pix_front_page_seo_title')!='') { echo get_pix_option('pix_front_page_seo_title'); } elseif(is_tax() && get_pix_option('pix_array_term_seotitle_'. $the_term)!='') { echo get_pix_option('pix_array_term_seotitle_'. $the_term); } elseif(is_category() && get_pix_option('pix_array_term_seotitle_'. $the_category)!='') { echo get_pix_option('pix_array_term_seotitle_'. $the_category); } else { wp_title( '|', true, 'right' ); bloginfo( 'name' ); $site_description = get_bloginfo( 'description', 'display' ); if ( $site_description && ( is_home() || is_front_page() ) ) echo " | $site_description"; if ( $paged >= 2 || $page >= 2 ) echo ' | ' . sprintf( __( '%s' ), max( $paged, $page ) ); }?></title> <?php if((is_single()||is_page()) && $meta_seo && array_key_exists('description',$meta_seo)){ ?> <meta name="description" content="<?php echo $meta_seo['description']; ?>"> <?php } elseif (get_pix_option('pix_front_page_seo_title')!=''&&is_home()) { ?> <meta name="description" content="<?php echo get_pix_option('pix_front_page_seo_description'); ?>"> <?php } elseif(is_tax() && get_pix_option('pix_array_term_seodescription_'. $the_term)!='') { echo '<meta name="description" content="'.get_pix_option('pix_array_term_seodescription_'. $the_term).'">'; } elseif(is_category() && get_pix_option('pix_array_term_seodescription_'. $the_category)!='') { echo '<meta name="description" content="'.get_pix_option('pix_array_term_seodescription_'. $the_category).'">'; } if((is_single()||is_page()) && $meta_seo && array_key_exists('keywords',$meta_seo)){ ?> <meta name="keywords" content="<?php echo $meta_seo['keywords']; ?>"> <?php } elseif (get_pix_option('pix_front_page_seo_title')!=''&&is_home()) { ?> <meta name="keywords" content="<?php echo get_pix_option('pix_front_page_seo_keywords'); ?>"> <?php } elseif(is_tax() && get_pix_option('pix_array_term_seokeywords_'. $the_term)!='') { echo '<meta name="keywords" content="'.get_pix_option('pix_array_term_seokeywords_'. $the_term).'">'; } elseif(is_category() && get_pix_option('pix_array_term_seokeywords_'. $the_category)!='') { echo '<meta name="keywords" content="'.get_pix_option('pix_array_term_seokeywords_'. $the_category).'">'; } ?> <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" > <link rel="icon" href="<?php echo get_pix_option('pix_favicon_ico'); ?>" type="image/x-icon"> <link rel="shortcut icon" href="<?php echo get_pix_option('pix_favicon_ico'); ?>" type="image/x-icon"> <meta name="viewport" content="width=1200" >
  6. hi everyoe , i ve just found in my single blog posts that the website url is coming up on th etop. not to mention the post being totally messed up!!!! i think what is going on with the link is the problem but i dont know how to find it and i have checked all the php files and dont know what is wrong with the wordpress theme. it has only just started oin this . very annoying as i am trying to lauch it for my business. heres the link any help would most appreciated as i m not sure what is going on :S cheers rusty
  7. hi everyone got this new website nearly ready and want to stop the lightbox from activating when i click the facebook link and the twitter link. i was given a clue when someone said to qoute........Just delete these CSS classes from those images: > > <pre>alignnone size-full wp-image-1353</pre> > > These trigger the lightbox and other things you don't need now. but i m not that advanced to know where these bad boys are hiding :S heres the link........... http://www.aaronrussellphotography.com any help would be most bodacious thanks rusty
  8. yes i can get in to it through using an ftp program. im not sure what to look for ..............
  9. hi everyone, i have just got a virus on my Wp webpage and i dont know how to get rid of it!?!?!?!?!?! it wont even let me access the page to look at it. Does anyone koe of how to get rid of this???? i have no idea cheers rusty
  10. ok, yeah i have been having trouble figutring out what this guy has put in there. thanks for your reply ben
  11. hi everyone im trying to change the alignment of the info below my post in my blogs section of my webpage. im not sure where to edit this code?? any help would be great My link heres the code /* ----------------------- BLOG PAGE -----------------------*/ .postbox h3 { margin-bottom: 10px; } /* Blog List */ ul#listlatestnews { } ul#listlatestnews li { margin-bottom: 20px; } .boximg-blog { margin-top: 5px; background: url(images/bgboximg.png) center no-repeat; width: 97px; height: 99px; float: left; margin-right: 10px; } .postbox { width:510px; float:left; margin-left:10px; } .postbox p { margin-bottom: 5px; } /* Blog Metapost */ .metapost { border-top: 1px dotted #eee; border-bottom: 1px dotted #eee; margin: 10px 0; font-size: 11px; padding: 8px 5px; color: #707070; background: #fafafa; } .metapost span { margin: 0 10px; } .metapost span.first { margin-left: 0; } /* Author Box */ #authorbox { background: #fafafa; border: 1px dotted #eee; padding: 10px 20px; margin-top: 20px; margin-bottom: 20px; } #authorbox h4{ vertical-align: top; margin-bottom: 5px; } #authorbox .blockavatar { width: 60px; float: left; margin-top: 8px; margin-right: 10px; } #authorbox img { margin-top: 0; margin-bottom: 0; border: none; } #authorbox .detail { float: left; width: 500px; } #authorbox .detail p { margin-bottom: 0; } .navigation { margin: 20px 0; } .navigation a { font-size: 12px; } .bypostauthor {} /* Comment List */ #listcomment { padding: 0; margin: 0 0 20px 0; } #listcomment li { display: block; padding: 11px 0; margin: 0; background: none; border-bottom: 1px solid #eee; } .titlecomment { width: 673px; } .titlecomment img { float: left; padding: 3px; border: 1px solid #d9d9d9; margin: 0 10px 0 0; } .titlecomment h4 { color: #333; padding: 7px 0 0 0; margin: 0; } .datecomment { font-size: 11px; color: #858585; } #listcomment li p { font-size: 12px; padding: 10px 0 0 0; margin-bottom: 0; } /* Comment Form */ #commentform label { font-size: 12px; display: block; text-align: left; color: #666666; margin-bottom: 10px; } .leftcomment { width: 285px; float: left; } .rightcomment { float: left; } .comment-input { color: #666666; padding: 7px; display: block; text-align: left; height: 19px; width: 250px; border: 1px solid #eaeaea; margin-bottom: 12px; } .comment-textarea { color: #666666; padding: 7px; display: block; text-align: left; height: 160px; width: 307px; border: 1px solid #eaeaea; margin-bottom: 10px; } .comment-submit { display: block; position: relative; top: 0; left: 220px; background: url(images/comment-submit.png) no-repeat; color: #d4d4d4; border: none; width: 106px; height: 32px; padding: 3px 5px; text-align: center; cursor: pointer; text-transform: uppercase; } .comment-heading { border-bottom: 1px solid #eaeaea; padding-bottom: 10px; }
  12. hey everyone im looking to get rif of the contact form in my theme and replace it with my own contact for 7 plugin. heres is the code below but im not too sure what to edit in this instance :S cheers rusty <?php /* Template Name: Contact Form */ ?> <?php get_header();?> <?php $info_address = get_option('ecobiz_info_address'); $info_phone = get_option('ecobiz_info_phone'); $info_email= get_option('ecobiz_info_email'); $info_website = get_option('ecobiz_info_website'); $info_latitude = get_option('ecobiz_info_latitude') ? get_option('ecobiz_info_latitude') : "-6.229555086277892"; $info_longitude = get_option('ecobiz_info_longitude') ? get_option('ecobiz_info_longitude') : "106.82551860809326"; ?> <script type="text/javascript"> jQuery(document).ready(function($) { $("#map").gMap({ markers: [{ latitude: <?php echo $info_latitude ? $info_latitude : "-6.229555086277892";?>, longitude: <?php echo $info_longitude ? $info_longitude : "106.82551860809326";?>, html:"<?php echo $info_address ? $info_address : "Jakarta,Indonesia";?>", popup: true }], zoom: 9 }); }); </script> <?php global $post; $heading_image = get_post_meta($post->ID,"_heading_image",true); $bgtext_heading_position = get_post_meta($post->ID,"_bgtext_heading_position",true); $page_short_desc = get_post_meta($post->ID,"_page_short_desc",true); ?> <!-- Page Heading --> <div id="page-heading"> <img src="<?php echo $heading_image ? $heading_image : get_template_directory_uri().'/images/page-heading5.jpg';?>" alt="" /> <div class="heading-text<?php if ($bgtext_heading_position =="right") echo '-right';?>"> <h3><?php the_title();?></h3> <p><?php echo $page_short_desc;?></p> </div> </div> <!-- Page Heading End --> <div class="clear"></div> <div class="center"> <!-- Full Width Wrapper --> <div class="maincontent-full"> <!-- Contact Form --> <div id="conctactleft"> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post();?> <?php the_content();?> <?php endwhile;?> <?php endif;?> <?php $success_msg = get_option('ecobiz_success_msg');?> <div class="success-message"><?php echo ($success_msg) ? stripslashes($success_msg) : __("Your message has been sent successfully. Thank you!",'ecobiz');?></div> <div id="maincontactform"> <form action="#" id="contactform"> <div> <label for="contactname"><?php echo __('Name ','ecobiz');?></label> <input type="text" name="contactname" class="textfield" id="contactname" value="" /><span class="require"> *</span> <label for="contactsubject"><?php echo __('Subject ','ecobiz');?></label> <input type="text" name="contactsubject" class="textfield" id="contactsubject" value=""/><span class="require"> *</span> <label for="contactemail"><?php echo __('E-mail ','ecobiz');?></label> <input type="text" name="contactemail" class="textfield" id="contactemail" value="" /><span class="require"> *</span> <label for="contactmessage"><?php echo __('Message ','ecobiz');?></label> <textarea name="contactmessage" id="contactmessage" class="textarea" cols="8" rows="12"></textarea><span class="require"> *</span> <div class="clear"></div> <input type="hidden" name="siteurl" id="siteurl" value="<?php echo get_template_directory_uri();?>" /> <input type="hidden" name="sendto" id="sendto" value="<?php echo (get_option('ecobiz_info_email')) ? get_option('ecobiz_info_email') : get_option('admin_email');?>" /> <a href="#" class="button" id="buttonsend"><span><?php echo __('SEND','ecobiz');?></span></a> <span class="loading" style="display: none;"><?php echo __('Please wait..','ecobiz');?></span> </div> </form> </div> </div> <!-- Contact Form End --> <!-- Contact Address --> <div id="contactright"> <div id="map" class="imgbox"></div> <ul class="contactinfo"> <li> <?php echo $info_address ? stripslashes($info_address) : " Jln. Damai menuju Syurga No. 14,<br /> Jakarta 20035,<br /> Indonesia";?></li> <li><strong><?php echo __('Phone','ecobiz');?></strong> : <?php echo $info_phone ? $info_phone : "+62 525625";?></li> <li><strong><?php echo __('Email','ecobiz');?></strong> : <a href="mailto:<?php echo $info_email ? $info_email : "#";?>"><?php echo $info_email ? $info_email : "info@mydomain.com";?></a><br /> <strong><?php echo __('Website','ecobiz');?></strong> : <a href="<?php echo $info_website ? $info_website : "#";?>"><?php echo $info_website ? $info_website : "http://www.mydomain.com";?></a></li> </ul> <div class="clear"></div> </div> <!-- Contact Address End --> </div> <!-- Full Width Wrapper End --> <?php get_footer();?>
  13. hi everyone im tryig to fix another one of my blogs and have no idea how to do it..... if anyone can help that would be fantastico. Here is the following code: #footer { width:900px; float:center; border-top:1px dotted #ffffff; text-align:justify; padding:0px 0 0px 0; } footer php code is below: <div id="footer"> Melbourne, Southbank, Docklands, Carlton, Collingwood, Fitzroy, South Melbourne, Elwood, St Kilda, Mentone, Toorak, Brighton, Dandenong, Clayton, Caulfield, Narre Warren, Berwick, Cranbourne, Keysbrough, Croydon, Montrose, Ringwood, Lilydale, Pakenham, Parkville, Knox, City, Ferntree Gully, North Melbourne, East Melbourne, Port Melbourne, Richmond, Ivanhoe, Northcote, Brunswick, East Brunswick, Camberwell, Canterbury, Hawthorn, Hawthorn East, Lysterfield, Healesville, Narre Warren East, Narre Warren North, Narre Warren South, Chadstone, Glen Waverley, Clifton Hill, Lydhurst, South Yarra Melbourne Metro Electricians Data Techinicians Solar Renewable Power Grid Connection Solar Rebate Electricians Electrical Contractors Domestic Commercial Industrial Three Phases Power Single Phase Power Electric Motors Generators Sensor Lighting Downlight Inspection 240V 415V Telephone Cabling Power Cable Cat5 Cat6e Victoria Australia White Pages yellow pages electrical qoutes clipsal cbus automation local tradesman energysafe victoria neca proffesional apprentice training <p><?php wp_footer() ?></p> </div> </div> <!-- Can put web stats code here --> </body> </html>
  14. ummmm which part of the code would be needed? sorry im new to this stuff :S
  15. hi everyone i am building a site for myself to put some of my photos up to show friends and the like...... i have just installed the fancy zoom plugin for my webpage. It is a photography website and i have pictures in pages i want to pop up for me. my problem is i dont want the the image when clicked to goto the post. I just want the pic to be zoomed in on. can anyone help me possibly?? cheers rustyhands
  16. hey, thanks for the replies guys but i think i havnt explained myself correctly :S Im not talking about the h2 header BG im talking about scrapping the bg behind the orange text links on the sidebar. the light blue one not the dark one. any ideas??? i just dont know where to find the code cheers rusty
  17. hey, yeah i have already tried that one with replacing it with #FFFFFF. im not too sure what it is.......:S cheers rusty
  18. hey, na its the sidebar background to be precise i cant find the colour anywhere in the style sheet. bugger.... cheers for the reply andrea
  19. body{ background-color:#ffffff; } body, p, td, div, form, input, textarea, h1, h2, h3{ margin:0px; padding:0px; text-align:justify; vertical-align:top; color:#454646; font-size:12px; font-family:Verdana, tahoma, arial; } a img{ border:none; } ul, ol, li{ margin:0px; padding:0px; list-style:none; } #page{ width:842px; margin:0px auto; background:url(images/page_bg.gif) repeat-y left top; } #header{ height:331px; border-bottom:#14457B solid 2px; background:#FFFFFF url(images/header_bg.jpg) no-repeat 262px 117px; } .logo{ float:left; margin:27px 0px 0px 0px; } #top_menu{ float:right; padding:60px 7px 0px 0px; } #top_menu a{ color:#1B5288; font-size:12px; font-family:Arial, tahoma, verdana; font-weight:bold; text-decoration:none; padding:0px 0px 0px 8px; margin:0px 20px 0px 0px; background:url(images/marker1.gif) no-repeat left 4px; } #top_menu a:hover{ text-decoration:underline; } #menu{ width:261px; height:213px; margin:32px 0px 0px 0px; background:url(images/menu_bg.jpg) no-repeat; } #menu h2{ width:0px; overflow:hidden; } #menu li ul{ padding:6px 0px 0px 23px; } #menu a{ color:#043972; text-decoration:none; text-transform:uppercase; font-size:14px; font-family:Arial, tahoma, verdana; font-weight:bold; line-height:35px; } #menu a:hover{ text-decoration:underline; } #sidebar{ float:left; width:261px; } #sidebar h2, #content h2{ height: 120%; padding:5px 0px 0px 23px; background-color:#00407D; color:#FEFCFA; font-size:14px; font-family:Arial, tahoma, verdana; text-transform:uppercase; margin:0px 0px 10px 0px; } #sidebar li ul{ padding:0px 0px 20px 22px; line-height:30px; width: 200px; } #sidebar li ul li{ color:#E87500; font-weight:none; padding:0px 0px 0px 20px; background:url(images/marker2.gif) no-repeat left center; } #sidebar li ul li a{ color:#E87500; text-decoration:none; } #sidebar ul a:hover{ text-decoration:underline; } #sidebar p{ padding:0px 20px 12px 20px; } #sidebar p a{ color:#E87500; } #sidebar form{ padding:12px 20px 0px 20px; height:30px; } #s{ float:left; width:150px; height:16px; padding:2px 0px 0px 4px; border:##66a6d2 solid 1px; } #searchsubmit{ float:right; height:20px; text-align:center; border:#66A6D2 solid 1px; background:none; } #content{ float:right; width:580px; } #content {line-height:1.7em;} #content h2{ clear:both; background-color:#E97600; } #content h2 a{ color:#060606; text-decoration:none; } #content h2 a:hover{ color:#FFFFFF; } .entry{ padding:0px 22px; } .entry img{ float:left; margin:0px 18px 10px 0px; } .entry p{ margin:0px 0px 10px 0px; } .entry strong{ color:#00407D; } .entry ul{ float:left; margin:0px 0px 10px 0px; } .entry li{ color:#003771; line-height:18px; padding:0px 0px 0px 8px; background:url(images/marker3.gif) no-repeat left center; } .not_found{ padding:0px 24px; } .not_found form{ width:220px; padding:14px 0px 0px 0px; } .more-link{ color:#003771; margin:12px 0px; text-decoration:underline; } .more-link:hover{ text-decoration:none; } .postmetadata{ float:right; height:20px; padding:0px 22px; } .postmetadata a{ color:#00407D; font-weight:bold; text-decoration:none; padding:0px 0px 0px 8px; background:url(images/marker3.gif) no-repeat left 5px; } .postmetadata a:hover{ text-decoration:underline; } #submit{ float:right; clear:both; cursor:pointer; border:#ACACAC solid 1px; background:none; text-align:center; } .your-message textarea { height: 200px; width: 500px; } .commentlist{ clear:left; margin:0px 22px 20px 22px; } .commentmetadata{ height:24px; display:none; } .comment_author{ float:left; color:#00407D; font-size:12px; font-weight:bold; display:none; } .comment_date{ float:right; display:none; } #commentform{ margin:0px 22px 10px 22px; display:none; } #commentform label{ float:left; clear:left; width:60px; line-height:24px; display:none; } #author, #email, #url, #comment{ width:380px; height:16px; padding:2px 0px 0px 4px; border:#ACACAC solid 1px; margin:0px 0px 4px 0px; display:none; } #comment{ float:right; overflow:auto; width:440px; height:200px; margin:0px 0px 10px 0px; display:none; } #footer{ height:200px; padding:5px 0px 0px 0px; background-color:#ffffff; color:#8C6739; } .footerlinks ul {text-transform:uppercase; display: inline; list-style-type: none; list-style-image:none; margin:0; } .footerlinks li, .footerlinks li li, .footerlinks li li li { display: inline; padding: 0px 40px; } .footerlinks a {text-decoration:bold; padding: 0px 3px; border-right: 0px solid white;} #footer p{ color:#ffffff ; text-align:center; } #footer {line-height:1.7em;} #footer a{ color:#00407D; text-decoration:bold; } #footer a:hover{ text-decoration:underline; } .clearer{ height:0px; overflow:hidden; clear:both; }
  20. hey peoples i have been trying to find this piece of css for a while now and im not sure where to find it to get rid of the blue sidepanel line on the site. if anyone can see anything in the css that i am missing please let us know. cheers rusty :S My link
  21. hi everyone i have just put some links at the bottom of my page in the footer. i am happy with the first row of links but there is a link to melbourne electrical contractors that i realy really really want to get rid of. im not too sure of the code i have to use in the footer.php anyone else had this problem?? cheers rusty
  22. hi everyone as the title suggests......how can i add more areas and change the sizes of them??? anyones help would be fantastic cheers rusty
  23. hi everyone im looking to change the height of the text on my content text. im not sure of the code or where to put it??? cheers rusty
  24. ha ha ha spot on andrea!!! Well done i finally found that sucker
  25. hey , yeah i cant find anything in there that i thought would do it :S Have alook and see what it may be if you like <div id="footer"> <!-- If you'd like to support WordPress, having the "powered by" link somewhere on your blog is the best way; it's our only promotion or advertising. --> <p> Elecsmart Electrical Contractors Pty Ltd ACN 128 893 612 REC 19192 Ph: 0432 727 804 Melbourne, Southbank, Docklands, Carlton, Collingwood, Fitzroy, South Melbourne, Elwood, St Kilda, Mentone, Toorak, Brighton, Dandenong, Clayton, Caulfield, Narre Warren, Berwick, Cranbourne, Keysbrough, Croydon, Montrose, Ringwood, Lilydale, Pakenham, Parkville, Knox, City, Ferntree Gully, North Melbourne, East Melbourne, Port Melbourne, Richmond, Ivanhoe, Northcote, Brunswick, East Brunswick, Camberwell, Canterbury, Hawthorn, Hawthorn East, Lysterfield, Healesville, Narre Warren East, Narre Warren North, Narre Warren South, Chadstone, Glen Waverley, Clifton Hill, Lydhurst, South Yarra, <a id="link" href="http://www.websitetemplates.bz/">Website Templates</a> </p> </div> </div> <!-- Gorgeous design by Michael Heilemann - http://binarybonsai.com/kubrick/ --> <?php /* "Just what do you think you're doing Dave?" */ ?> <?php wp_footer(); ?> <script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-22988833-1']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); </script> </body> </html> cheers rusty
×
×
  • Create New...