Page 16 of 70 FirstFirst ... 614151617182666 ... LastLast
Results 151 to 160 of 691
  1. #151
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Cold Steel Template Support Thread

    What is it exactly you are trying to accomplish?

    Quote Originally Posted by thevagr1 View Post
    Tried that... still not working, checked the cache for debug info but nothing there either?

    I have made the following code the same also so there is no crossover.

    a:link, #navEZPagesTOC ul li a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
    }

    a:visited {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
    }

    a:hover, #navEZPagesTOC ul li a:hover {
    color: #76950b;
    /*background: #fff;*/
    font-weight: bold;
    }

    a:active {
    color: #76950b;
    font-weight: bold;
    }

    not sure what to try next....
    any other suggestions
    thanks so much
    Ren

  2. #152
    Join Date
    Sep 2008
    Posts
    219
    Plugin Contributions
    0

    Default Re: Cold Steel Template Support Thread

    This is about the cold steel template, so i figured this was a good place to post this. I've installed it and looks great. Before i proceed on fully utilizing the awesome template, Just wondering on how or if it's possible to have the categories like this website http://www.cooltechcentral.com/. There is a lot of code so it's a little intimidating. Not sure if i am making myself clear, but see the website, view the categories and you'll see what i mean.

    There are categories across the top, and also within a sidebox. when you click the category name at the top it also expands the corresponding sidebox category name.

    Is this possible with this template and any direction you can suggest?

    regards and many thanks for you contributions.

  3. #153
    Join Date
    Sep 2008
    Posts
    219
    Plugin Contributions
    0

    Default Re: Cold Steel Template Support Thread

    Quote Originally Posted by hardwiredtemplates View Post
    This is about the cold steel template, so i figured this was a good place to post this. I've installed it and looks great. Before i proceed on fully utilizing the awesome template, Just wondering on how or if it's possible to have the categories like this website http://www.cooltechcentral.com/. There is a lot of code so it's a little intimidating. Not sure if i am making myself clear, but see the website, view the categories and you'll see what i mean.

    There are categories across the top, and also within a sidebox. when you click the category name at the top it also expands the corresponding sidebox category name.

    Is this possible with this template and any direction you can suggest?

    regards and many thanks for you contributions.

    Sorry the link to the test site is beautycarediscountsDOTcom
    Last edited by hardwiredtemplates; 21 May 2009 at 07:26 PM. Reason: provideing wite link

  4. #154
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Cold Steel Template Support Thread

    Quote Originally Posted by hardwiredtemplates View Post
    This is about the cold steel template, so i figured this was a good place to post this. I've installed it and looks great. Before i proceed on fully utilizing the awesome template, Just wondering on how or if it's possible to have the categories like this website http://www.cooltechcentral.com/. There is a lot of code so it's a little intimidating. Not sure if i am making myself clear, but see the website, view the categories and you'll see what i mean.

    There are categories across the top, and also within a sidebox. when you click the category name at the top it also expands the corresponding sidebox category name.

    Is this possible with this template and any direction you can suggest?

    regards and many thanks for you contributions.
    By default, the top categories menu is set to display none in the stylesheet.css

    To get the look you want - open includes/templates/cold_steel/css/stylesheet.css

    find the following section of code:
    Code:
    	/*BOF top horizontal Category navigation and EZpages navigation*/		
    #navCatTabsWrapper, #siteinfoIP {
    	display:none;
    	}
    /*#siteinfoIP {
    	font-size: 0.9em;
    	}		
    #navCatTabsWrapper {
    	margin: 0 auto;
    	padding: 0;
    	background: url(../images/cat_nav_tab.gif) repeat-x;
    	font-size: 0.95em;
    	font-weight: bold;
    	color: #8A6241;
    	height: 24px;
       width:845px;
    	}		*/
    And replace it with following:
    Code:
    	/*BOF top horizontal Category navigation and EZpages navigation*/		
    /*#navCatTabsWrapper {
    	display:none;
    	}*/
    #siteinfoIP {
    	display:none;
    	font-size: 0.9em;
    	}		
    #navCatTabsWrapper {
    	margin: 0 auto;
    	padding: 0;
    	background: url(../images/cat_nav_tab.gif) repeat-x;
    	font-size: 0.95em;
    	font-weight: bold;
    	color: #8A6241;
    	height: 24px;
       width:845px;
    	}
    Save the file and upload to your server

    Now make sure you have the Categories-Tabs Menu turned on.
    go to
    admin -> configuration -> layout settings -> Categories-Tabs Menu ON/OFF (set to 1)

  5. #155
    Join Date
    Sep 2008
    Posts
    219
    Plugin Contributions
    0

    Default Re: Cold Steel Template Support Thread

    Ok I guess that means it can be done. Two quick questions. I've added the fix to show the category tabs (ie. home, login, my account,,etc) and when you hover over the hover color does not fill the link as it does on your demo site(love the look of yours and i am attempting to replicate it.), any fix for that.

    If I want to increase the width of the header wrapper say 980px, do I need a new background image as the current one is only 917px. I tried increasing the header to 980px but it leaves white space on the right as you can see now.

    beautycarediscountsDotcom

    many thanks

  6. #156
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Cold Steel Template Support Thread

    Quote Originally Posted by hardwiredtemplates View Post
    Ok I guess that means it can be done. Two quick questions. I've added the fix to show the category tabs (ie. home, login, my account,,etc) and when you hover over the hover color does not fill the link as it does on your demo site(love the look of yours and i am attempting to replicate it.), any fix for that.

    If I want to increase the width of the header wrapper say 980px, do I need a new background image as the current one is only 917px. I tried increasing the header to 980px but it leaves white space on the right as you can see now.

    beautycarediscountsDotcom

    many thanks

    open includes/templates/cold_steel/css/stylesheet.css
    find the follwoing section of code and make the highlighted change
    #navCatTabs ul li a:hover {
    color: #854401;
    background: #EEAA3B;
    }

    Yes if you increase the width you'll also need to new images of the same width.

  7. #157
    Join Date
    Sep 2008
    Posts
    219
    Plugin Contributions
    0

    Default Re: Cold Steel Template Support Thread

    Quote Originally Posted by clydejones View Post
    open includes/templates/cold_steel/css/stylesheet.css
    find the follwoing section of code and make the highlighted change
    #navCatTabs ul li a:hover {
    color: #854401;
    background: #EEAA3B;
    }

    Yes if you increase the width you'll also need to new images of the same width.
    I've made the suggested changes, and it did not change anything. I really love your header including the navEZPagesTop(yes i've got devtools). I tried making changes to my stylesheet in accordance with your demosite's stylesheet in attempt to replicate yours but only seems to make things worse. Am I missing some admin setting, php fiels, or is it all in the stylesheet? Any guidance,

    many thanks for your hasty and helpful assistance.

  8. #158
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Cold Steel Template Support Thread

    Quote Originally Posted by hardwiredtemplates View Post
    I've made the suggested changes, and it did not change anything. I really love your header including the navEZPagesTop(yes i've got devtools). I tried making changes to my stylesheet in accordance with your demosite's stylesheet in attempt to replicate yours but only seems to make things worse. Am I missing some admin setting, php fiels, or is it all in the stylesheet? Any guidance,

    many thanks for your hasty and helpful assistance.
    open includes/templates/cold_steel/css/stylesheet_betterCategoriesEzInfo.css
    find the following section and make the highlighted change.

    .betterCategories a:hover, .betterCategories a:active,
    .betterDocuments a:hover, .betterDocuments a:active,
    .betterEzpages a:hover, .betterEzpages a:active,
    .betterInformation a:hover, .betterInformation a:active,
    .betterMoreinformation a:hover, .betterMoreinformation a:active,
    .betterBestsellers a:hover, .betterBestsellers a:active {
    background-color: #EDA93A;
    }

  9. #159
    Join Date
    Sep 2008
    Posts
    219
    Plugin Contributions
    0

    Default Re: Cold Steel Template Support Thread

    Quote Originally Posted by clydejones View Post
    open includes/templates/cold_steel/css/stylesheet_betterCategoriesEzInfo.css
    find the following section and make the highlighted change.

    .betterCategories a:hover, .betterCategories a:active,
    .betterDocuments a:hover, .betterDocuments a:active,
    .betterEzpages a:hover, .betterEzpages a:active,
    .betterInformation a:hover, .betterInformation a:active,
    .betterMoreinformation a:hover, .betterMoreinformation a:active,
    .betterBestsellers a:hover, .betterBestsellers a:active {
    background-color: #EDA93A;
    }
    Clyde I've made the above changes( background-color: #EDA93A;) and it makes no difference. Should I just start the template over although I've made no significant changes, am i missing an important setting in admin? I am looking for the same exact header(minus the logo) as you have here http://mysticmountainnaturals.com/demotest/ take a look at how mine looks beautycarediscountsDOTcom. You'll notice the difference.

  10. #160
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Cold Steel Template Support Thread

    Quote Originally Posted by hardwiredtemplates View Post
    Clyde I've made the above changes( background-color: #EDA93A;) and it makes no difference. Should I just start the template over although I've made no significant changes, am i missing an important setting in admin? I am looking for the same exact header(minus the logo) as you have here http://mysticmountainnaturals.com/demotest/ take a look at how mine looks beautycarediscountsDOTcom. You'll notice the difference.
    make sure you've made the changes to the correct stylesheet.

    open includes/templates/cold_steel/css/stylesheet_betterCategoriesEzInfo.css

 

 
Page 16 of 70 FirstFirst ... 614151617182666 ... LastLast

Similar Threads

  1. Responsive Cold Steel Template for v1.5.x
    By rbarbour in forum Addon Templates
    Replies: 38
    Last Post: 29 May 2017, 03:12 AM
  2. v150 Cold Steel Template
    By Sniper in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 11 Aug 2012, 06:25 PM
  3. v150 Ice Cold Template Support Thread
    By brandonturpin in forum Addon Templates
    Replies: 5
    Last Post: 23 Jun 2012, 08:02 PM
  4. Cold Steel Template - fatal error
    By itseemedsosimple in forum Addon Templates
    Replies: 2
    Last Post: 1 Mar 2011, 12:46 AM
  5. Attribute Alignment Problem Cold Steel Template
    By CascianoLtd in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 25 Sep 2009, 05:54 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR