Page 4 of 4 FirstFirst ... 234
Results 31 to 37 of 37
  1. #31
    Join Date
    Jun 2011
    Location
    Sydney Australia
    Posts
    12
    Plugin Contributions
    0

    Default Re: Biki kini - Go Green

    Quote Originally Posted by anamika59 View Post
    In the css folder, open stylesheet.css file and search for .coin-slider and add some left margin : Something like : .coin-slider { overflow: hidden; zoom: 1; position: relative; margin-left:15px;}a
    If you go to the demo page of go-green template, you can see that the images are now 15px off from the menu bar.
    Play with the .css file until you get to the point you like the style.
    Good luck.
    Works Great, thank you so much! This seems to be a good template for building a store with some custom cosmetic changes which are requested by some customers. All the basic features plus the great options you have added. Thanks for the support.

  2. #32
    Join Date
    Jun 2011
    Location
    Sydney Australia
    Posts
    12
    Plugin Contributions
    0

    Default Re: Biki kini - Go Green

    I am trying to remove the Social content of the Biki-kini green template footer. I have tried commenting out parts of the footer_menu_defines.php but that has not done the job, is it in html??. Please help, Where do I make changes to remove the social list by commenting out that section of the code?
    Thank you

  3. #33
    Join Date
    Jun 2011
    Location
    Sydney Australia
    Posts
    12
    Plugin Contributions
    0

    Default Re: Biki kini - Go Green

    I will post the PARTIAL answer to my own question BUT I still need help please.

    I managed to comment out the Social items in the \includes\languages\english\extra_definitions\biki_kini_green\footer_menu_define s.php to remove all icons and reference to the socil media. I had put the /*comment out*/ incorrectly. BUT there is a problem in the code for the "Store" menu items, "Contact Us" is not displaying correctly here is the code...I can not get it to display the same as Site Map, My Account etc. which look fine. Please help with this php coding problem.

    /*BOF Menu Column 1 link Definitions*/
    Define('TITLE_ONE', '<li class="menuTitle"><img src="includes/templates/biki_kini_green/images/store.png" alt="store" class="footer-icon" /></li>');
    Define('CONTACT', '<li "><a href="' . zen_href_link(FILENAME_CONTACT_US) . '">Contact Us</a></li>');
    Define('SITEMAP', '<li><a href="' . zen_href_link(FILENAME_SITE_MAP) . '">' . BOX_INFORMATION_SITE_MAP . '</a></li>');
    Define('ACCOUNT', '<li><a href="' . zen_href_link(FILENAME_ACCOUNT, '', 'SSL') .'">' . HEADER_TITLE_MY_ACCOUNT . '</a></li>');
    Define('COUPON', '<li><a href="' . zen_href_link(FILENAME_DISCOUNT_COUPON) . '">' . BOX_INFORMATION_DISCOUNT_COUPONS . '</a></li>');
    Define('UNSUBSCRIBE', '<li><a href="' . zen_href_link(FILENAME_UNSUBSCRIBE) . '">' . BOX_INFORMATION_UNSUBSCRIBE . '</a></li>');
    /*EOF Menu Column 1 link Definitions*/

  4. #34
    Join Date
    Jan 2012
    Location
    USA
    Posts
    38
    Plugin Contributions
    3

    Default Re: Biki kini - Go Green

    Quote Originally Posted by JAWhite View Post
    I will post the PARTIAL answer to my own question BUT I still need help please.

    I managed to comment out the Social items in the \includes\languages\english\extra_definitions\biki_kini_green\footer_menu_define s.php to remove all icons and reference to the socil media. I had put the /*comment out*/ incorrectly. BUT there is a problem in the code for the "Store" menu items, "Contact Us" is not displaying correctly here is the code...I can not get it to display the same as Site Map, My Account etc. which look fine. Please help with this php coding problem.

    /*BOF Menu Column 1 link Definitions*/
    Define('TITLE_ONE', '<li class="menuTitle"><img src="includes/templates/biki_kini_green/images/store.png" alt="store" class="footer-icon" /></li>');
    Define('CONTACT', '<li "><a href="' . zen_href_link(FILENAME_CONTACT_US) . '">Contact Us</a></li>');
    Define('SITEMAP', '<li><a href="' . zen_href_link(FILENAME_SITE_MAP) . '">' . BOX_INFORMATION_SITE_MAP . '</a></li>');
    Define('ACCOUNT', '<li><a href="' . zen_href_link(FILENAME_ACCOUNT, '', 'SSL') .'">' . HEADER_TITLE_MY_ACCOUNT . '</a></li>');
    Define('COUPON', '<li><a href="' . zen_href_link(FILENAME_DISCOUNT_COUPON) . '">' . BOX_INFORMATION_DISCOUNT_COUPONS . '</a></li>');
    Define('UNSUBSCRIBE', '<li><a href="' . zen_href_link(FILENAME_UNSUBSCRIBE) . '">' . BOX_INFORMATION_UNSUBSCRIBE . '</a></li>');
    /*EOF Menu Column 1 link Definitions*/
    I am sorry. I was tied up with something else and could not reply earlier.
    You are on the right track. Note this is a mix of php and html code. I would save a copy and just delete it instead of trying to comment out.
    Also remember to remove the li item at the bottom of the page. For example :
    Define('CUSTOMER_SERVICE', '<dd class="third">
    <ul>' . TITLE_THREE . FACEBOOK . GOOGLEPLUS . TWITTER . PINTERUS . LINKEDIN . '</ul></dd>');
    Remove FACEBOOK etc with your menu items or just get rid of the 3rd column.

    Hope this helps.

  5. #35
    Join Date
    Jun 2011
    Location
    Sydney Australia
    Posts
    12
    Plugin Contributions
    0

    Default Re: Biki kini - Go Green

    Quote Originally Posted by anamika59 View Post
    I am sorry. I was tied up with something else and could not reply earlier.
    You are on the right track. Note this is a mix of php and html code. I would save a copy and just delete it instead of trying to comment out.
    Also remember to remove the li item at the bottom of the page. For example :
    Define('CUSTOMER_SERVICE', '<dd class="third">
    <ul>' . TITLE_THREE . FACEBOOK . GOOGLEPLUS . TWITTER . PINTERUS . LINKEDIN . '</ul></dd>');
    Remove FACEBOOK etc with your menu items or just get rid of the 3rd column.

    Hope this helps.
    Thanks Anamika59, I found the error in my quote code above, 3rd line down Define('Contact','<li "><a href= etc..Should not be a space and double quote after li... Caused the word "Contact" to be out of line and different color to the rest of the list. Strange what a few missplaced bits can do.

  6. #36
    Join Date
    Jun 2011
    Location
    Sydney Australia
    Posts
    12
    Plugin Contributions
    0

    Default Re: Biki kini - Go Green

    I need to remove all reference to "gift certificates, discount coupons, etc" in both pages and menus. References and links seem to be in a lot of places. Is there a way to remove these in the Admin manager? Will they need to be removed one by one in the code, if so where will I find them all?
    Thanks in anticipation!

  7. #37
    Join Date
    Jun 2012
    Posts
    11
    Plugin Contributions
    0

    Default Re: Biki kini - Go Green

    hello! it's been few days now that i've been trying to find an answer to my question...

    i really like this template but i want to remove the top categories? (photo below) i tried to do it in admin> layout settings> categories >> "tabs/on/off" = 0 but, it won't disappear...Name:  biki kini.jpg
Views: 120
Size:  6.8 KB

    i appreciate for the help...

 

 
Page 4 of 4 FirstFirst ... 234

Similar Threads

  1. v150 Biki-kini Template Support Thread
    By anamika59 in forum Addon Templates
    Replies: 44
    Last Post: 15 Jun 2013, 11:20 PM
  2. v151 top category on biki kini template
    By abundancy in forum Addon Templates
    Replies: 1
    Last Post: 15 Jun 2013, 07:17 AM
  3. Using Green Template, change to different green
    By Bronson Designs in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 3 Mar 2007, 05:36 PM
  4. It isn't green!
    By digidiva-kathy in forum Upgrading from 1.3.x to 1.3.9
    Replies: 11
    Last Post: 29 Nov 2006, 05:06 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