Zen Cart Logo
Forums / Addon Templates / Westminster New

Westminster New

Views: 494,229

Results 881 to 900 of 1,865
9 Apr 2015, 10:06 PM
#881
pompidompie avatar

pompidompie

Zen Follower

Join Date:
Mar 2015
Posts:
105
Plugin Contributions:
0

Westminster New

I need a little help again :blush:

For the westminster new template I had to install this file:
includes/modules/pages/specials/header.php
I know have to change is for the dynamic filter to work.
But because the code is so very different, i don't know how to do that.

This is the westminster specials header

<?php
/** Single Listing template mod v1.8
 * Specials header_php.php
 *
 * @package page
 * @copyright Copyright 2003-2006 Zen Cart Development Team
 * @copyright Portions Copyright 2003 osCommerce
 * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
 * @version $Id: header_php.php 3000 2006-02-09 21:11:37Z wilt $
 */

require(DIR_WS_MODULES . zen_get_module_directory('require_languages.php'));
$breadcrumb->add(NAVBAR_TITLE);
//lines25-71 moved to main_template_vars
//bof Single Listing Template
if (MAX_DISPLAY_SPECIAL_PRODUCTS > 0 ) {
	$disp_order_default = PRODUCT_ALL_LIST_SORT_DEFAULT;
	require(DIR_WS_MODULES . zen_get_module_directory(FILENAME_LISTING_DISPLAY_ORDER));
	$order_by = isset($order_by) ? $order_by : 'ORDER BY s.specials_date_added DESC';
	if (MAX_DISPLAY_SPECIAL_PRODUCTS > 0 ) {
			$listing_sql = "SELECT p.products_id, p.products_image, pd.products_name,
                          p.master_categories_id, m.manufacturers_name, p.products_model, p.products_quantity, p.products_weight
                         FROM (" . TABLE_PRODUCTS . " p
                         LEFT JOIN " . TABLE_SPECIALS . " s on p.products_id = s.products_id
                         LEFT JOIN " . TABLE_PRODUCTS_DESCRIPTION . " pd on p.products_id = pd.products_id
						 LEFT JOIN " . TABLE_MANUFACTURERS . " m ON (p.manufacturers_id = m.manufacturers_id))
                         WHERE p.products_id = s.products_id and p.products_id = pd.products_id and p.products_status = '1'
                         AND s.status = 1
                         AND pd.language_id = :languagesID
                         ORDER BY s.specials_date_added DESC";

		$listing_sql = $db->bindVars($listing_sql, ':languagesID', $_SESSION['languages_id'], 'integer');
		//check to see if we are in normal mode ... not showcase, not maintenance, etc
		$show_submit = zen_run_normal();

		$define_list = array('PRODUCT_LIST_MODEL' => PRODUCT_LIST_MODEL,
		'PRODUCT_LIST_NAME' => PRODUCT_LIST_NAME,
		'PRODUCT_LIST_MANUFACTURER' => PRODUCT_LIST_MANUFACTURER,
		'PRODUCT_LIST_PRICE' => PRODUCT_LIST_PRICE,
		'PRODUCT_LIST_QUANTITY' => PRODUCT_LIST_QUANTITY,
		'PRODUCT_LIST_WEIGHT' => PRODUCT_LIST_WEIGHT,
		'PRODUCT_LIST_IMAGE' => PRODUCT_LIST_IMAGE);

		/*                         ,
		'PRODUCT_LIST_BUY_NOW' => PRODUCT_LIST_BUY_NOW);
		*/
		asort($define_list);
		reset($define_list);
		$column_list = array();
		foreach ($define_list as $key => $value)
		{
			if ($value > 0) $column_list[] = $key;
		}
	}
}//eof Single Listing Template
?>

And this is the specials file with a BOF I have to put in the westminster specials header file

<?php
/**
 * Specials
 *
 * @package page
 * @copyright Copyright 2003-2006 Zen Cart Development Team
 * @copyright Portions Copyright 2003 osCommerce
 * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
 * @version $Id: header_php.php 3000 2006-02-09 21:11:37Z wilt $
 */

require(DIR_WS_MODULES . zen_get_module_directory('require_languages.php'));
$breadcrumb->add(NAVBAR_TITLE);

// bof dynamic filter 1 of 1
if (MAX_DISPLAY_SPECIAL_PRODUCTS > 0 ) {
  include(DIR_WS_MODULES . zen_get_module_directory(FILENAME_DYNAMIC_FILTER));

  $listing_sql = "SELECT DISTINCT p.products_id, p.products_image, pd.products_name, p.master_categories_id, p.manufacturers_id";

  $listing_sql .= " FROM " . TABLE_PRODUCTS . " p LEFT JOIN " . TABLE_SPECIALS . " s on p.products_id = s.products_id" .
	" LEFT JOIN " . TABLE_PRODUCTS_DESCRIPTION . " pd on p.products_id = pd.products_id" .
	" LEFT JOIN " . TABLE_MANUFACTURERS . " m on p.manufacturers_id = m.manufacturers_id" .
	" LEFT JOIN " . TABLE_PRODUCTS_TO_CATEGORIES . " p2c on p.products_id = p2c.products_id" .
    ($filter_attr == true ? " JOIN " . TABLE_PRODUCTS_ATTRIBUTES . " p2a on p.products_id = p2a.products_id" .
    " JOIN " . TABLE_PRODUCTS_OPTIONS . " po on p2a.options_id = po.products_options_id" .	 
	" JOIN " . TABLE_PRODUCTS_OPTIONS_VALUES . " pov on p2a.options_values_id = pov.products_options_values_id" .
	(defined('TABLE_PRODUCTS_WITH_ATTRIBUTES_STOCK') ? " JOIN " . TABLE_PRODUCTS_WITH_ATTRIBUTES_STOCK . " p2as on p.products_id = p2as.products_id " : "") : '');

  $listing_sql .= " WHERE p.products_status = '1'".
	" AND s.status = 1" .
    " AND pd.language_id = :languagesID" . $filter . " GROUP BY p.products_id " . $having . 'ORDER BY s.specials_date_added DESC';

  $listing_sql = $db->bindVars($listing_sql, ':languagesID', $_SESSION['languages_id'], 'integer');
  $specials_split = new splitPageResults($listing_sql, MAX_DISPLAY_SPECIAL_PRODUCTS);
}
// eof dynamic filter 1 of 1 
?>

Can someone help me with this? I have everything working fine, except for this file so now I get a blanc page on the specials.

9 Apr 2015, 11:00 PM
#882
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Location:
picaflor-azul.com
Posts:
6,940
Plugin Contributions:
28

Re: Westminster New

Pompidompie:

I need a little help again :blush:

For the westminster new template I had to install this file:
includes/modules/pages/specials/header.php
I know have to change is for the dynamic filter to work.
But because the code is so very different, i don't know how to do that.

This is the westminster specials header

<?php /** Single Listing template mod v1.8 * Specials header_php.php * * @package page * @copyright Copyright 2003-2006 Zen Cart Development Team * @copyright Portions Copyright 2003 osCommerce * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0 * @version $Id: header_php.php 3000 2006-02-09 21:11:37Z wilt $ */ require(DIR_WS_MODULES . zen_get_module_directory('require_languages.php')); $breadcrumb->add(NAVBAR_TITLE); //lines25-71 moved to main_template_vars //bof Single Listing Template if (MAX_DISPLAY_SPECIAL_PRODUCTS > 0 ) { $disp_order_default = PRODUCT_ALL_LIST_SORT_DEFAULT; require(DIR_WS_MODULES . zen_get_module_directory(FILENAME_LISTING_DISPLAY_ORDER)); $order_by = isset($order_by) ? $order_by : 'ORDER BY s.specials_date_added DESC'; if (MAX_DISPLAY_SPECIAL_PRODUCTS > 0 ) { $listing_sql = "SELECT p.products_id, p.products_image, pd.products_name, p.master_categories_id, m.manufacturers_name, p.products_model, p.products_quantity, p.products_weight FROM (" . TABLE_PRODUCTS . " p LEFT JOIN " . TABLE_SPECIALS . " s on p.products_id = s.products_id LEFT JOIN " . TABLE_PRODUCTS_DESCRIPTION . " pd on p.products_id = pd.products_id LEFT JOIN " . TABLE_MANUFACTURERS . " m ON (p.manufacturers_id = m.manufacturers_id)) WHERE p.products_id = s.products_id and p.products_id = pd.products_id and p.products_status = '1' AND s.status = 1 AND pd.language_id = :languagesID ORDER BY s.specials_date_added DESC"; $listing_sql = $db->bindVars($listing_sql, ':languagesID', $_SESSION['languages_id'], 'integer'); //check to see if we are in normal mode ... not showcase, not maintenance, etc $show_submit = zen_run_normal(); $define_list = array('PRODUCT_LIST_MODEL' => PRODUCT_LIST_MODEL, 'PRODUCT_LIST_NAME' => PRODUCT_LIST_NAME, 'PRODUCT_LIST_MANUFACTURER' => PRODUCT_LIST_MANUFACTURER, 'PRODUCT_LIST_PRICE' => PRODUCT_LIST_PRICE, 'PRODUCT_LIST_QUANTITY' => PRODUCT_LIST_QUANTITY, 'PRODUCT_LIST_WEIGHT' => PRODUCT_LIST_WEIGHT, 'PRODUCT_LIST_IMAGE' => PRODUCT_LIST_IMAGE); /* , 'PRODUCT_LIST_BUY_NOW' => PRODUCT_LIST_BUY_NOW); */ asort($define_list); reset($define_list); $column_list = array(); foreach ($define_list as $key => $value) { if ($value > 0) $column_list[] = $key; } } }//eof Single Listing Template ?>
> 
> And this is the specials file with a BOF I have to put in the westminster specials header file
> ```php
<?php
/**
 * Specials
 *
 * @package page
 * @copyright Copyright 2003-2006 Zen Cart Development Team
 * @copyright Portions Copyright 2003 osCommerce
 * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
 * @version $Id: header_php.php 3000 2006-02-09 21:11:37Z wilt $
 */

require(DIR_WS_MODULES . zen_get_module_directory('require_languages.php'));
$breadcrumb->add(NAVBAR_TITLE);

// bof dynamic filter 1 of 1
if (MAX_DISPLAY_SPECIAL_PRODUCTS > 0 ) {
  include(DIR_WS_MODULES . zen_get_module_directory(FILENAME_DYNAMIC_FILTER));

  $listing_sql = "SELECT DISTINCT p.products_id, p.products_image, pd.products_name, p.master_categories_id, p.manufacturers_id";

  $listing_sql .= " FROM " . TABLE_PRODUCTS . " p LEFT JOIN " . TABLE_SPECIALS . " s on p.products_id = s.products_id" .
	" LEFT JOIN " . TABLE_PRODUCTS_DESCRIPTION . " pd on p.products_id = pd.products_id" .
	" LEFT JOIN " . TABLE_MANUFACTURERS . " m on p.manufacturers_id = m.manufacturers_id" .
	" LEFT JOIN " . TABLE_PRODUCTS_TO_CATEGORIES . " p2c on p.products_id = p2c.products_id" .
    ($filter_attr == true ? " JOIN " . TABLE_PRODUCTS_ATTRIBUTES . " p2a on p.products_id = p2a.products_id" .
    " JOIN " . TABLE_PRODUCTS_OPTIONS . " po on p2a.options_id = po.products_options_id" .	 
	" JOIN " . TABLE_PRODUCTS_OPTIONS_VALUES . " pov on p2a.options_values_id = pov.products_options_values_id" .
	(defined('TABLE_PRODUCTS_WITH_ATTRIBUTES_STOCK') ? " JOIN " . TABLE_PRODUCTS_WITH_ATTRIBUTES_STOCK . " p2as on p.products_id = p2as.products_id " : "") : '');

  $listing_sql .= " WHERE p.products_status = '1'".
	" AND s.status = 1" .
    " AND pd.language_id = :languagesID" . $filter . " GROUP BY p.products_id " . $having . 'ORDER BY s.specials_date_added DESC';

  $listing_sql = $db->bindVars($listing_sql, ':languagesID', $_SESSION['languages_id'], 'integer');
  $specials_split = new splitPageResults($listing_sql, MAX_DISPLAY_SPECIAL_PRODUCTS);
}
// eof dynamic filter 1 of 1 
?>

Can someone help me with this? I have everything working fine, except for this file so now I get a blanc page on the specials.

It would be better to ask this question on the dynamic filter support thread.

Thanks,

Anne

10 Apr 2015, 9:44 AM
#883
pompidompie avatar

pompidompie

Zen Follower

Join Date:
Mar 2015
Posts:
105
Plugin Contributions:
0

Re: Westminster New

I am having the same problem as Thannaree and Kalastaja.
The empty featured products page is showing TEXT_NO_PRODUCTS in stead of sorry no featured products or something.
I also can not find where to fix this.

If i add a define TEXT_NO_PRODUCTS lint to the language file, it will show sorry no products, but it will also break my website. SO that is not the answer to the problem.

10 Apr 2015, 5:00 PM
#884
divavocals avatar

divavocals

Totally Zenned

Join Date:
Jan 2007
Location:
Los Angeles, California, United States
Posts:
10,011
Plugin Contributions:
3

Re: Westminster New

Pompidompie:

If i add a define TEXT_NO_PRODUCTS lint to the language file, it will show sorry no products, but it will also break my website. SO that is not the answer to the problem.It is the answer.. perhpas you need to explain what you mean by "it will also break my website".. What does that mean?? Do you get dancing hampsters on the screen?? Do you get a blank page.. Or is there something else going on when you say "it will also break my website".

Details.. helps the community help you..:smile:

11 Apr 2015, 9:18 AM
#885
pompidompie avatar

pompidompie

Zen Follower

Join Date:
Mar 2015
Posts:
105
Plugin Contributions:
0

Re: Westminster New

I would like the dancing hampsters, but unfortunately is just a blanc page :P
If I check the logs for problems, it will point to this line.

11 Apr 2015, 2:53 PM
#886
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Location:
picaflor-azul.com
Posts:
6,940
Plugin Contributions:
28

Re: Westminster New

Pompidompie:

I would like the dancing hampsters, but unfortunately is just a blanc page :P
If I check the logs for problems, it will point to this line.

what line? Can you post the error message?

Thanks,

Anne

11 Apr 2015, 4:53 PM
#887
divavocals avatar

divavocals

Totally Zenned

Join Date:
Jan 2007
Location:
Los Angeles, California, United States
Posts:
10,011
Plugin Contributions:
3

Re: Westminster New

Pompidompie:

I would like the dancing hampsters, but unfortunately is just a blanc page :P
If I check the logs for problems, it will point to this line.

don't make folks guess.. no one can help you until you post the error message..

13 Apr 2015, 2:30 PM
#888
kitten091182 avatar

kitten091182

Zen Follower

Join Date:
May 2007
Posts:
110
Plugin Contributions:
0

Re: Westminster New

Hi,
We are having a problem with the dropdown menu and not sure what has happened.
The website was working fine until just, and now the dropdown menu is not working. It has the hamburger icon even though it is viewed on a desktop.
https://www.drgreens.co.uk

No file changes have been made for at least 5 days, and I have checked logs and files and nobody has hacked the site. The only thing that has happened is I believe that the hosting company have been having server problems for the last hour or so.

Thanks

13 Apr 2015, 2:39 PM
#889
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Location:
picaflor-azul.com
Posts:
6,940
Plugin Contributions:
28

Re: Westminster New

kitten091182:

Hi,
We are having a problem with the dropdown menu and not sure what has happened.
The website was working fine until just, and now the dropdown menu is not working. It has the hamburger icon even though it is viewed on a desktop.
https://www.drgreens.co.uk

No file changes have been made for at least 5 days, and I have checked logs and files and nobody has hacked the site. The only thing that has happened is I believe that the hosting company have been having server problems for the last hour or so.

Thanks

The menu would not just break on its own. Some change must have been made ;) I would recommend restoring your backup from before the problem started, or back tracking through your changes to find where the problem started.

It does look like a problem/conflict with either the jquery library or the slimmenu js file.

Thanks,

Anne

13 Apr 2015, 2:49 PM
#890
kitten091182 avatar

kitten091182

Zen Follower

Join Date:
May 2007
Posts:
110
Plugin Contributions:
0

Re: Westminster New

Thanks for replying Anne. I am the only person who works on the site, and I know it was working this morning because I used it. It really is strange because I know 100% that I haven't made any changes.

I will go through the files and compare them to make sure they are still the same.

Do you know of any files that call an outside website's code/javascript for the slim menu that may be causing it?

Thanks

13 Apr 2015, 3:05 PM
#891
kitten091182 avatar

kitten091182

Zen Follower

Join Date:
May 2007
Posts:
110
Plugin Contributions:
0

Re: Westminster New

You were right, it was the slim menu js file. I did make changes to it last week, and it worked fine since then, but for some reason it just decided to break now?! Crazy stuff but at least it is sorted now.

Thanks for the input.

13 Apr 2015, 4:27 PM
#892
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Location:
picaflor-azul.com
Posts:
6,940
Plugin Contributions:
28

Re: Westminster New

kitten091182:

You were right, it was the slim menu js file. I did make changes to it last week, and it worked fine since then, but for some reason it just decided to break now?! Crazy stuff but at least it is sorted now.

Thanks for the input.

It was probably related to a caching problem, or maybe you didn't refresh the page after you made your changes. Web sites never break on their own ;)

Thanks,

Anne

14 Apr 2015, 7:29 AM
#893
pompidompie avatar

pompidompie

Zen Follower

Join Date:
Mar 2015
Posts:
105
Plugin Contributions:
0

Re: Westminster New

I have been told that the problem I have/had could be a template thing.
I use westminster new.
I have a few addons, but the last ones i installed are the dynamic filter and stock by attribute.
Before adding stock by attribute to my website, everything looked normal.
But then after installing stock by attribute, the place where my products need to show up was somewhere else.
Categories with no products showed up on the right, where everything normaly is,
but categories with products in it, showed up under the left sidebox (dynamic filter, categories on or of)
Like this
Attachment #15164

After a while I stopped looking for what could cause this and started to learn myself how to add a product with this new addon.
And then I noticed that adding a new product to a categorie, "fixed" the problem.

There is no logs message.

14 Apr 2015, 11:03 AM
#894
missesbeehaven avatar

missesbeehaven

New Zenner

Join Date:
Apr 2009
Posts:
57
Plugin Contributions:
0

Re: Westminster New

Hi Anne,

I'm pulling my hair out trying to figure out a change to the css for the bettercategories style for the categories menu. I would like the selected category menu item to remain highlighted when being viewed, to make it more clear to visitors

here is an example of my site: http://www.beehavendesignz.com/shop/index.php?main_page=index&cPath=2

I have tried changing a:active and a:hover of the bettercategories css with no luck.

/*bof better categories*/
.betterCategories, .betterDocuments, .betterEzpages, .betterInformation, .betterMoreinformation, .betterBestsellers {border-right:1px solid #dbdbce;border-left:1px solid #dbdbce;}
.betterCategories a, .betterCategories a:visited, .betterDocuments a, .betterDocuments a:visited, .betterEzpages a, .betterEzpages a:visited, .betterInformation a, .betterInformation a:visited, .betterMoreinformation a, .betterMoreinformation a:visited, .betterBestsellers a, .betterBestsellers a:visited {display: block;background-color: #fffffe;border-top: 0px solid #ffffff;border-bottom:1px solid #dbdbce;padding: 15px 4px 15px 20px;transition:background 2s ease;-webkit-transition:background 2s ease;-moz-transition:background 2s ease;-o-transition:background 2s ease;color:#333;}
.betterCategories a:hover, .betterDocuments a:hover, .betterEzpages a:hover, .betterInformation a:hover, .betterMoreinformation a:hover, .betterBestsellers a:hover {background-color: #f9c358;color:#fff;}
.betterCategories a:active, .betterDocuments a:active, .betterEzpages a:active, .betterInformation a:active, .betterMoreinformation a:active, .betterBestsellers a:active {background-color: #60b8af;color:#fff;}
.betterEzpages a:before, .betterMoreinformation a:before, .betterDocuments a:before, .betterInformation a:before, .betterCategories a:before{position:absolute;font-family: FontAwesome;content: "\f0da";}
.betterEzpages img, .betterMoreinformation img, .betterDocuments img, .betterInformation img, .betterCategories img{padding-left:20px;}
.cat-count{float:right;margin-right:20px;padding-left:20px;color:#b8b8b8;}
#moreinformation .sideBoxContent, #information .sideBoxContent{padding-top:0;padding-bottom:0;}

I would really appreciate your help in what css i need to amend to achieve this change. I was able to figure it out for the slim menu at the top but not for the better categories menu css :mellow:

14 Apr 2015, 11:05 AM
#895
kitten091182 avatar

kitten091182

Zen Follower

Join Date:
May 2007
Posts:
110
Plugin Contributions:
0

Re: Westminster New

Pompidompie:

I have been told that the problem I have/had could be a template thing.
I use westminster new.
I have a few addons, but the last ones i installed are the dynamic filter and stock by attribute.
Before adding stock by attribute to my website, everything looked normal.
But then after installing stock by attribute, the place where my products need to show up was somewhere else.
Categories with no products showed up on the right, where everything normaly is,
but categories with products in it, showed up under the left sidebox (dynamic filter, categories on or of)
Like this
Attachment #15164

After a while I stopped looking for what could cause this and started to learn myself how to add a product with this new addon.
And then I noticed that adding a new product to a categorie, "fixed" the problem.

There is no logs message.

I had a weird problem like that happening on my site. I found out the cause - when I was in a category which didn't have options in the dynamic filter it was causing the layout to break. I never found out how to rectify what was wrong with the code, so I just made sure every category had at least one option available (excluding brand) in dynamic filter.

14 Apr 2015, 1:42 PM
#896
rongin avatar

rongin

Zen Follower

Join Date:
Feb 2009
Posts:
112
Plugin Contributions:
0

Re: Westminster New

Hello,
I have an in my last product I put into the Westminster cart, The product picture is only showing no details on the product at all. I have no idea why may be you can take a look and see what is doing this or is it me. the Url the product is [ http://www.stuffwholesale.com/index.php?main_page=product_info&cPath=22_11&products_id=1191 ]
thank you,
RonGin

14 Apr 2015, 4:27 PM
#897
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Location:
picaflor-azul.com
Posts:
6,940
Plugin Contributions:
28

Re: Westminster New

Pompidompie:

I have been told that the problem I have/had could be a template thing.
I use westminster new.
I have a few addons, but the last ones i installed are the dynamic filter and stock by attribute.
Before adding stock by attribute to my website, everything looked normal.
But then after installing stock by attribute, the place where my products need to show up was somewhere else.
Categories with no products showed up on the right, where everything normaly is,
but categories with products in it, showed up under the left sidebox (dynamic filter, categories on or of)
Like this
Attachment #15164

After a while I stopped looking for what could cause this and started to learn myself how to add a product with this new addon.
And then I noticed that adding a new product to a categorie, "fixed" the problem.

There is no logs message.

If you post a link to the page with the problem I can take a look,

It looks like you have broken the responsive design

Thanks,

Anne

14 Apr 2015, 4:30 PM
#898
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Location:
picaflor-azul.com
Posts:
6,940
Plugin Contributions:
28

Re: Westminster New

missesbeehaven:

Hi Anne,

I'm pulling my hair out trying to figure out a change to the css for the bettercategories style for the categories menu. I would like the selected category menu item to remain highlighted when being viewed, to make it more clear to visitors

here is an example of my site: http://www.beehavendesignz.com/shop/index.php?main_page=index&cPath=2

I have tried changing a:active and a:hover of the bettercategories css with no luck.

/bof better categories/
.betterCategories, .betterDocuments, .betterEzpages, .betterInformation, .betterMoreinformation, .betterBestsellers {border-right:1px solid #dbdbce;border-left:1px solid #dbdbce;}
.betterCategories a, .betterCategories a:visited, .betterDocuments a, .betterDocuments a:visited, .betterEzpages a, .betterEzpages a:visited, .betterInformation a, .betterInformation a:visited, .betterMoreinformation a, .betterMoreinformation a:visited, .betterBestsellers a, .betterBestsellers a:visited {display: block;background-color: #fffffe;border-top: 0px solid #ffffff;border-bottom:1px solid #dbdbce;padding: 15px 4px 15px 20px;transition:background 2s ease;-webkit-transition:background 2s ease;-moz-transition:background 2s ease;-o-transition:background 2s ease;color:#333;}
.betterCategories a:hover, .betterDocuments a:hover, .betterEzpages a:hover, .betterInformation a:hover, .betterMoreinformation a:hover, .betterBestsellers a:hover {background-color: #f9c358;color:#fff;}
.betterCategories a:active, .betterDocuments a:active, .betterEzpages a:active, .betterInformation a:active, .betterMoreinformation a:active, .betterBestsellers a:active {background-color: #60b8af;color:#fff;}
.betterEzpages a:before, .betterMoreinformation a:before, .betterDocuments a:before, .betterInformation a:before, .betterCategories a:before{position:absolute;font-family: FontAwesome;content: "\f0da";}
.betterEzpages img, .betterMoreinformation img, .betterDocuments img, .betterInformation img, .betterCategories img{padding-left:20px;}
.cat-count{float:right;margin-right:20px;padding-left:20px;color:#b8b8b8;}
#moreinformation .sideBoxContent, #information .sideBoxContent{padding-top:0;padding-bottom:0;}

> 
> I would really appreciate your help in what css i need to amend to achieve this change. I was able to figure it out for the slim menu at the top but not for the better categories menu css :mellow:

Just add:

span.category-subs-parent{color:yorucolor;}

Thanks,

Anne
14 Apr 2015, 4:33 PM
#899
picaflor_azul avatar

picaflor_azul

Totally Zenned

Join Date:
Jul 2009
Location:
picaflor-azul.com
Posts:
6,940
Plugin Contributions:
28

Re: Westminster New

RonGin:

Hello,
I have an in my last product I put into the Westminster cart, The product picture is only showing no details on the product at all. I have no idea why may be you can take a look and see what is doing this or is it me. the Url the product is [ http://www.stuffwholesale.com/index.php?main_page=product_info&cPath=22_11&products_id=1191 ]
thank you,
RonGin

Check your logs folder for errors and correct them.

Thanks,

Anne

14 Apr 2015, 6:09 PM
#900
pompidompie avatar

pompidompie

Zen Follower

Join Date:
Mar 2015
Posts:
105
Plugin Contributions:
0

Re: Westminster New

Thank you Anne.
I compared the responcive.css to the one from the template addon and it is still the same.

My webshop is build local/on my computer. Will it help to post the pagesource? (right mouse click, look at page code)