diff --git a/src/wp-content/themes/originalhouse/custom.css b/src/wp-content/themes/originalhouse/custom.css index ab89952..0beab80 100644 --- a/src/wp-content/themes/originalhouse/custom.css +++ b/src/wp-content/themes/originalhouse/custom.css @@ -3,13 +3,11 @@ .tcp_product_container { float: left; width: 100%; - border-top: 30px solid #7F7875; } .tcp_products_thumbs { float: left; width: 100%; - height: 590px; } .tcp_product_thumb { @@ -17,6 +15,8 @@ overflow: hidden; display: table-cell; background: #fff; + height: 196px; + width: 240px; } .tcp_product_thumb a { @@ -39,3 +39,38 @@ display: none; } + + +.wp-pagenavi { + background: #7F7875; + height: 30px; + padding: 4px 15px 0px 15px; + font-size: 20px; + letter-spacing: 1px; + text-align:center; + clear: both; +} + +.wp-pagenavi a, .wp-pagenavi a:link, .wp-pagenavi a:visited, .wp-pagenavi span { + text-decoration: none; + color: #AFA8A5 !important; + cursor: pointer; + margin: 0 5px; + padding: 0 !important; + background-color: #7F7875 !important; + border: none; +} + +.wp-pagenavi a:hover, .wp-pagenavi span.current, +.wp-pagenavi .current, .wp-pagenavi .on { + background-color: #7F7875 !important; + color: #fff !important; + padding-top: 0 !important; + padding-bottom: 0 !important; +} + +.wp-pagenavi span.extend, .wp-pagenavi span.pages { + background:none !important; + border:none !important; + color: #AFA8A5 !important; +} diff --git a/src/wp-content/themes/originalhouse/functions/admin-functions.php b/src/wp-content/themes/originalhouse/functions/admin-functions.php index 16a0ff3..3738726 100644 --- a/src/wp-content/themes/originalhouse/functions/admin-functions.php +++ b/src/wp-content/themes/originalhouse/functions/admin-functions.php @@ -2518,11 +2518,11 @@ function woo_breadcrumbs( $args = array() ) { /* Set up the default arguments for the breadcrumb. */ $defaults = array( - 'separator' => '»', - 'before' => '' . __( 'You are here:', $textdomain ) . '', + 'separator' => '>', //»', + 'before' => '', //' . __( 'You are here:', $textdomain ) . '', 'after' => false, - 'front_page' => true, - 'show_home' => __( 'Home', $textdomain ), + 'front_page' => false, + 'show_home' => '', //__( 'Home', $textdomain ), 'echo' => true ); diff --git a/src/wp-content/themes/originalhouse/loop-tcp-grid.php b/src/wp-content/themes/originalhouse/loop-tcp-grid.php index 683021c..f00a4db 100644 --- a/src/wp-content/themes/originalhouse/loop-tcp-grid.php +++ b/src/wp-content/themes/originalhouse/loop-tcp-grid.php @@ -24,13 +24,6 @@ * @since Twenty Ten Ecommerce 1.0 */ ?> - -max_num_pages > 1 ) : ?> - - @@ -66,21 +59,12 @@ $see_first_custom_area = isset( $instance['see_first_custom_area'] ) ? $instance $see_second_custom_area = isset( $instance['see_second_custom_area'] ) ? $instance['see_second_custom_area'] : false; $see_third_custom_area = isset( $instance['see_third_custom_area'] ) ? $instance['see_third_custom_area'] : false; -$column = 0; $thumb_size = array(210,210); -while ( have_posts() ) : the_post(); -?> -
- - 0; $column-- ) - echo ' ';*/ -?>
-max_num_pages > 1 ) : ?> - - + + + \ No newline at end of file diff --git a/src/wp-content/themes/originalhouse/screenshot.png b/src/wp-content/themes/originalhouse/screenshot.png deleted file mode 100644 index 1b4eb6e..0000000 Binary files a/src/wp-content/themes/originalhouse/screenshot.png and /dev/null differ diff --git a/src/wp-content/themes/originalhouse/style.css b/src/wp-content/themes/originalhouse/style.css index c1ab7a1..ddb5110 100644 --- a/src/wp-content/themes/originalhouse/style.css +++ b/src/wp-content/themes/originalhouse/style.css @@ -416,14 +416,36 @@ h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {text-de /* 2.7 Breadcrumbs */ #breadcrumbs { - margin-bottom: 1.5em; + margin: 0; + background-color: #7F7875; + color: #181818; + font-size: 20px; + letter-spacing: 1px; + margin: 0; + padding: 2px 15px; + position: relative; + text-transform: uppercase; } +#breadcrumbs a { + color: #AFA8A5; + text-decoration: none; +} + +#breadcrumbs a:hover { + color: #fff; +} + + /*-------------------------------------------------------------------------------------------*/ /* 3. POSTS */ /*-------------------------------------------------------------------------------------------*/ -#breadcrumb, .post .video { margin-bottom:1.5em;} +#breadcrumb { + margin: 0; +} + +.post .video { margin-bottom:1.5em;} .archive_header { display: block; float: left; width: 100%; margin:0 0 30px; padding:0 0 10px; font-size: 18px; font-weight: bold; border-bottom:#3D3836 1px solid; } .archive_header .catrss a { font-size: 14px; text-decoration: none; line-height: 28px; } @@ -438,7 +460,7 @@ h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {text-de .post { margin: 0 0 2em; padding: 0 0 2em; border-bottom: 1px solid #3D3836; position: relative; } -.post .title, .page .title { font-family: sans-serif; position:relative; margin:0; padding: 2px 15px; font-size: 20px; letter-spacing: 1px; color:#fff; text-transform: uppercase; background-color: #121212;} +.post .title, .page .title { font-family: sans-serif; position:relative; margin:0; padding: 2px 15px; font-size: 20px; letter-spacing: 1px; color:#181818; text-transform: uppercase; background-color: #7F7875;} .post .title a:link, .post .title a:visited { color:#fff; } .post .title a:hover { text-shadow: 0 0 10px #F6F7A0; text-decoration: none; } diff --git a/src/wp-content/themes/originalhouse/taxonomy-tcp_product_category.php b/src/wp-content/themes/originalhouse/taxonomy-tcp_product_category.php index fd9b651..9aaaf1a 100644 --- a/src/wp-content/themes/originalhouse/taxonomy-tcp_product_category.php +++ b/src/wp-content/themes/originalhouse/taxonomy-tcp_product_category.php @@ -14,9 +14,8 @@
> -

queried_object->name; ?>

- - +

queried_object->name; ?>

+