Jump to content

ausdigitalmedia

Members
  • Posts

    17
  • Joined

  • Last visited

ausdigitalmedia's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Hi all. Can anyone help me with the css code to style the product tabs on this page. http://www.thewattletree.com/product/emmelle-candles/ See where it says "Supplier details, product description" I'd like the tabs to have some seperation like on this page http://downthatlittlelane.com.au/my-sweet-prints/product/1841-name-meaning-silhouette Can anyone help?
  2. Hi cyber_alchemistI'm not sure what you mean there? What link do you need?
  3. Id prefer to keep looking for an answer on this forum. Maybe other people actually want to help instead of offering negativity.
  4. I searched all pages with the html comment. Nothing there. I searched for the source code. Nothing there. I searched for "Shipping Class:" Nothing.
  5. Thanks for your help. But none of the search items are returning a result showing the code.
  6. Hi all. See this page http://www.thewattletree.com/product/test-product-3/ Down the bottom you'll see I have a line of code outputting the text "Shipping Class: free-shipping-australia-wide" I want to remove that but for the life of me I cannot find the file that I placed that code on. Dreamweavers code search is not helping at all. Can anyone help?
  7. Hi all. See this page http://www.thewattletree.com/vendor/test-vendor-1/ I want to add a space between the last line in the description "family, three family members live and work on the grove full time." and the next line "Showing all 2 results" I cant find the code to alter. Can anyone help?
  8. Ok so I am trying to get my head around the process for customizing a wordpress php site. I've been doing this for a while and generally just use firebug on Mozilla to find the css code a tweak it. But now I need to go to the next step. Lets take this page as an example. http://www.thewattletree.com/contact/ I want to change the css code for the text boxes from this input, textarea { padding: 5px; border-color: #CCCCCC #EFEFEF #EFEFEF #CCCCCC; border-width:1px; border-style:solid; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius:3px; color: #777;background:url("/inputbg.jpg") ; font: 300 0.9em/0.9em 'Cardo',arial,sans-serif; } to this .input, textarea2 { padding: 5px; border-color: #CCCCCC #EFEFEF #EFEFEF #CCCCCC; border-width:1px; border-style:solid; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius:3px; color: #777;background-color: #DDDDDD; font: 300 1em/1em 'Cardo',arial,sans-serif;} But I only want to do it for this page and not the rest of the site. So what is the process that I should use for finding the code and then changing the style? Thank you.
  9. Hi all. With this site www.thewattletree.com I'd like to add this image http://www.thewattletree.com/Search_Glass.jpg on top of the existing search box background and to the right and have it function as a "enter" button when pressed. The same as this site. http://downthatlittlelane.com.au/ Can anyone help?
  10. Never mind. I found the solution. Thanks guys.
  11. Hi all. I am using the firebug method to change the coding for this site but nothing I have tried is working with this issue. All I want to do is center the nav bar and the background image behind it. Can anyone help please? http://www.thewattletree.com/
  12. Hi all. So here is my site. http://www.thewattletree.com I want to add a different background behind the search box. Here's the back ground http://www.thewattletree.com/Searchbg.jpg I just cant get the coding right. I have created a new style on my custom css sheet. .input, searchbg { padding: 5px; border-color: #CCCCCC #EFEFEF #EFEFEF #CCCCCC; border-width:1px; border-style:solid; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius:3px; color: #777;background:url("/Searchbg.jpg") ; font: 300 1em/1em 'Cardo',arial,sans-serif;} Here's my header.php that contains the search box code. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html <?php language_attributes(); ?>> <head profile="http://gmpg.org/xfn/11"> <title><?php woo_title(); ?></title> <?php woo_meta(); ?> <?php global $woo_options; ?> <link rel="stylesheet" type="text/css" href="<?php bloginfo( 'stylesheet_url' ); ?>" media="screen" /> <link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="<?php if ( $woo_options[ 'woo_feed_url' ] ) { echo $woo_options['woo_feed_url']; } else { echo get_bloginfo_rss( 'rss2_url' ); } ?>" /> <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" /> <?php wp_head(); ?> <?php woo_head(); ?> </head> </div> <body <?php body_class(); ?>> <?php global $woocommerce; ?> <?php woo_top(); ?> <div id="wrapper"> <?php if ( function_exists( 'has_nav_menu') && has_nav_menu( 'top-menu' ) ) { ?> <h1> </h1> <div id="top"> <div class="col-full"> <?php wp_nav_menu( array( 'depth' => 6, 'sort_column' => 'menu_order', 'container' => 'ul', 'menu_id' => 'top-nav', 'menu_class' => 'nav fl', 'theme_location' => 'top-menu' ) ); ?> </div> </div><!-- /#top --> <?php } ?> <div id="custom"> <?php global $woocommerce; ?> <a class="cart-contents" href="<?php echo $woocommerce->cart->get_cart_url(); ?>" title="<?php _e('View your shopping cart', 'woothemes'); ?>"><?php echo sprintf(_n('%d item', '%d items', $woocommerce->cart->cart_contents_count, 'woothemes'), $woocommerce->cart->cart_contents_count);?> - <?php echo $woocommerce->cart->get_cart_total(); ?></a><form role="search" method="get" id="searchform" action="http://www.thewattletree.com/"> <div style="text-align:right"><label class="screen-reader-text" for="s"></label> <input type="text" value="search here..." name="s" id="s"> </div> </form> <div> <div id="header-container"> <div id="header" class="col-full"> <div id="logo"> <?php if ($woo_options[ 'woo_texttitle' ] <> "true") : $logo = $woo_options['woo_logo']; ?> <a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'description' ) ); ?>"> <img src="<?php if ( $logo ) echo esc_url( $logo ); else { echo esc_url( get_template_directory_uri() . '/images/logo.png' ); } ?>" alt="<?php echo esc_attr( get_bloginfo( 'name' ) ); ?>" /> </a> <?php endif; ?> <?php if( is_singular() && !is_front_page() ) : ?> <span class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>"><?php bloginfo( 'name' ); ?></a></span> <?php else : ?> <h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>"><?php bloginfo('name' ); ?></a></h1> <?php endif; ?> <span class="site-description"><?php bloginfo( 'description' ); ?></span> </div><!-- /#logo --> <div id="navigation" class="fr"> <div class="nav"> <?php if ( function_exists( 'has_nav_menu' ) && has_nav_menu( 'primary-menu' ) ) { wp_nav_menu( array( 'depth' => 6, 'sort_column' => 'menu_order', 'container' => 'ul', 'theme_location' => 'primary-menu' ) ); } else { ?> <ul> <?php if ( isset( $woo_options['woo_custom_nav_menu'] ) AND $woo_options['woo_custom_nav_menu'] == 'true' ) { if ( function_exists( 'woo_custom_navigation_output' ) ) woo_custom_navigation_output(); } else { ?> <?php if ( is_page() ) $highlight = 'page_item'; else $highlight = 'page_item current_page_item'; ?> <li class="<?php echo esc_attr( $highlight ); ?>"><a href="<?php echo esc_url( home_url( '/' ) ); ?>"><?php _e( 'Home', 'woothemes' ); ?></a></li> <?php wp_list_pages('sort_column=menu_order&depth=6&title_li=&exclude='); } ?> </ul> <?php } ?> </div><!-- /.nav --> </div><!-- /#navigation --> <div class="fix"></div> <div class="breadcrumbs"> <?php if(function_exists('bcn_display')) { bcn_display(); }?> </div> </div><!-- /#header --> </div><!-- /#header-container --> I've tried reasigning the new style to the form but it's not overiding what seems to be the current style of "input, textarea". Can anyone tell me what I am doing wrong?
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.