![]() |
Re: X-Cart - reBOOT - Responsive Template
You can tweak the product details columns widths to make a bit more room...
eg. if using product page style 1, edit skin/reboot/customer/main/product_style_1.tpl Replace <div class="span5"> with <div class="span4"> and... Replace <div class="span7"> with <div class="span8"> ----- If using product page style 2, edit skin/reboot/customer/main/product_style_2.tpl Replace <div class="span7"> with <div class="span8"> and... Replace <div class="span5"> with <div class="span4"> |
Re: X-Cart - reBOOT - Responsive Template
Thanks Phil for all your help and for responding so quickly!
Your suggestions have gotten me closer. Is there a way to make the column with "Details , SKU, Price, Options etc" to be narrower? I think then my drop down options bars would be wide enough. |
Re: X-Cart - reBOOT - Responsive Template
Edit skin/reboot/modules/Product_Options/customer_options.tpl
Replace... Code:
<div class="span5 property-name product-input"> With... Code:
<div class="span3 property-name product-input"> Then replace... Code:
<div class="span7 property-value"> With... Code:
<div class="span9 property-value"> Columns are totally flexible, based on Bootstrap's grid system :) |
Re: X-Cart - reBOOT - Responsive Template
Hello Phil,
Can you please look into our blog.php issue why it is not opening in the body of the page. Can u please help me? Thanks. |
Re: X-Cart - reBOOT - Responsive Template
Using the custom theme, where do you change the font colour for links?
This is the colour used for all category links, product names & other hyperlinks. |
Re: X-Cart - reBOOT - Responsive Template
I managed to get the "navy theme" to work for me, so I dont need to know how to change the font colour I asked about above.
I think I found a bug though. I have my store set to show products by rows and to show the short description. However, in Internet Explorer 8 (the only IE I checked), displays the products in grid format with no short description. It shows fine in FF and Chrome. |
Re: X-Cart - reBOOT - Responsive Template
Quote:
I just installed AC 1 page checkout & I have the same 2 exact problems. - Navigation label showing up in top menu - large black square on checkout page Would you please let me know what these fixes were? Any help would be greatly appreciated!! |
Re: X-Cart - reBOOT - Responsive Template
I got a solution from Bill Brewer of Altered Cart - the large black box fix (when using Reboot with 1 page CO):
----------------------------------------- Some skins will add default attributes to an image, which results in this square. Really, this image shouldn't even be here, it is a leftover from earlier versions of X-Cart. To remove this image make the following change: skin/common_files/modules/Checkout_One/checkout_one_totals.tpl Find this code near line 100: <td colspan="4" height="1"><img src="{$ImagesDir}/spacer_black.gif" width="100%" height="1" alt="" /><br /></td> Change it to: <td colspan="4" style="height:0; border-bottom:1px solid #666;"></td> Bill -------------------------- Sorry for all the posts Phil - I am trying to meet a deadline on this skin, and I appreciate all your help so far. To summarize my last 2 issues: 1. The phantom navigation link on the top menu bar of the AC 1 page checkout needs to be removed. It is loading the language variable: Name: lbl_reboot_navigation Value: Navigation This is on a desk top computer - I assume the this is the link that shows up on a phone for the top menu bar. 2. Internet Explorer is showing product lists grid view, and I have lists set to show products by rows. It is fine in FF & Chrome & cache is not the issue. Thanks for any help! |
Re: X-Cart - reBOOT - Responsive Template
Quote:
In skin/reboot/custom/header/categories_header.tpl Replace... Code:
<label for="menu-dropdown-0" class="toggle_menu_label">{$lng.lbl_reboot_navigation}</label> Code:
{if $main ne "checkout"}<label for="menu-dropdown-0" class="toggle_menu_label">{$lng.lbl_reboot_navigation}</label>{/if} Quote:
This is an IE8 issue only, I'll investigate. |
Re: X-Cart - reBOOT - Responsive Template
hi phill,
I have purchased your reboot template and purchase infinite scroll module for my 4.6 store but after adding infinite scroll entire design of the site has gone. I do not know why !! can u pls look? Thanks, Wink |
Re: X-Cart - reBOOT - Responsive Template
Hello,
I have seen in http://www.arscommunity.com/wiki/articles/x-cart-wordpress-integration ================================================== = Sometimes this script can not parse WordPress pages properly in order to find meta and body information. Such problem may be related to your WordPress blog version or design changes performed to WordPress skin. In this case it will be required to review “blog.php” file and find suitable preg_match expression ================================================== == Where to change "suitable preg_match expression" in order to display blog.php in my site? Please let me know. |
Re: X-Cart - reBOOT - Responsive Template
Does anyone know how to adjust the height of the header top bar. (header_top)?
I would like to make mine about 60% of the current height. |
Re: X-Cart - reBOOT - Responsive Template
Quote:
Edit skin/reboot/css/reboot.css Code:
.header_top { padding: 3px 3px 1px 3px; border-bottom: 1px solid transparent; -webkit-border-radius: 0px 0px 4px 4px; -moz-border-radius: 0px 0px 4px 4px; border-radius: 0px 0px 4px 4px; } |
Re: X-Cart - reBOOT - Responsive Template
Hello Phil,
I want make menu in this style long category name in two lines and some categories will be highlighted in different color. How to do that? Can u pls help me? http://www.gozindagi.com/devgoz/Health%20Shoppe%20Header%28reboot%29.jpg Thanks. |
Re: X-Cart - reBOOT - Responsive Template
Quote:
It's not possible to 'wrap' category names, but you can change colours... First obtain the numerical categoryid value(s) of the categories you want to change the colour of. Then in skin/reboot/custom/header/categories_header.tpl Replace... Code:
{foreach from=$categories_menu_list item=c} With... Code:
{foreach from=$categories_menu_list item=c} Then in your theme CSS file, eg. skin/reboot/css/themes/blue.css Insert... Code:
li.cat_123 { background: #FF0000; } Etc. If you are using the 'custom' theme, then add the CSS code to skin/reboot/custom/reboot_head.tpl Before... Code:
</style> |
Re: X-Cart - reBOOT - Responsive Template
Quote:
There is actually a way to 'wrap' category names... In your case you wish to wrap after the ampersands, so in skin/reboot/custom/header/categories_header.tpl Replace... Code:
{$c.category} With... Code:
{$c.category|replace:"&":"&<br>"} |
Re: X-Cart - reBOOT - Responsive Template
Can the speed bar tabs be highlighted in different color.
|
Re: X-Cart - reBOOT - Responsive Template
Quote:
Replace... Code:
<li class="nosub"><a href="{$speed_bar[sb].link|amp}">{$speed_bar[sb].title}</a></li> Code:
<li class="nosub link_{$speed_bar[sb].id}"><a href="{$speed_bar[sb].link|amp}">{$speed_bar[sb].title}</a></li> Code:
li.link_123 { background: #FF0000; } Replace... Code:
<td><input type="text" size="45" name="posted_data[{%sb.index%}][title]" value="{$speed_bar[sb].title|escape}" /></td> With... Code:
<td><input type="text" size="45" name="posted_data[{%sb.index%}][title]" value="{$speed_bar[sb].title|escape}" /> (ID: {$speed_bar[sb].id})</td> |
Re: X-Cart - reBOOT - Responsive Template
Quote:
|
Re: X-Cart - reBOOT - Responsive Template
Quote:
|
Re: X-Cart - reBOOT - Responsive Template
Quote:
|
Re: X-Cart - reBOOT - Responsive Template
You don't use 246, that's just an example. Use your own category ID.
Follow the instructions again. I have tested it and it works. Also clear your template cache. |
Re: X-Cart - reBOOT - Responsive Template
Quote:
{foreach from=$categories_menu_list item=c} <li class="cat_{$c.category|replace:"&":"&<br>"}"> at /reboot/custom/header/categories_header.tpl , li.cat_1734 { background: #fb8200; } li.cat_256 { background: #ff0060; } li.cat_492 { background: #747474; } code at skin/reboot/css/themes/blue.css and skin/reboot/custom/reboot_head.tpl but it is not working.please help me. |
Re: X-Cart - reBOOT - Responsive Template
You are not following the instructions correctly, please pay more attention.
In skin/reboot/custom/header/categories_header.tpl Replace... Code:
{foreach from=$categories_menu_list item=c} Code:
|
Re: X-Cart - reBOOT - Responsive Template
Thanks Phil
Colorful speed looks great How do you put the login at the top of the page |
Re: X-Cart - reBOOT - Responsive Template
Quote:
Sorry Phil still it is not working. I am using X-Cart_Reboot_Mega_or_Flyout_Category_Menus_Combo_Ad don is it required to add on /reboot/custom/header/header_mega_menu.tpl ? After adding Wrapping working fine. Please help me where to add codes in order to get different colors? {$c.category|replace:"&":"&<br>"} |
Re: X-Cart - reBOOT - Responsive Template
If using the mega menu addon, try this...
In skin/reboot/custom/header/header_mega_menu.tpl Replace... Code:
<li><a href="{if $c.childs}#sub{else}home.php?cat={$c.categoryid}{/if}"{if $c.childs} class="arrow"{/if}>{$c.category}</a> Code:
<li class="cat_{$c.categoryid}"><a href="{if $c.childs}#sub{else}home.php?cat={$c.categoryid}{/if}"{if $c.childs} class="arrow"{/if}>{$c.category}</a> |
Re: X-Cart - reBOOT - Responsive Template
Quote:
|
Re: X-Cart - reBOOT - Responsive Template
Hi
Recently x-cart has released 4.6.1 can anyone tell me if reboot is compatible with 4.6.1 platinum or not? Thanks.. |
Re: X-Cart - reBOOT - Responsive Template
Quote:
I'm in the process of updating reboot for v4.6.1. In addition, I will be adding more features and optimisations to reBOOT, but it's not going to be ready until October (I am currently away on holiday). As v4.6.1 is mainly a bugfix release, the current v1.21 reBOOT files should work fine with v4.6.1, without many (if any) hiccups. |
Re: X-Cart - reBOOT - Responsive Template
Hi Phil,
Have you found a solution to this? Internet Explorer is showing product lists grid view, and I have lists set to show products by rows. It is fine in FF & Chrome & cache is not the issue. Quote:
Since IE8 is the newest IE version for XP users, it is a very common browser and a fix is really important. Thanks! |
Re: X-Cart - reBOOT - Responsive Template
Quote:
Thanks for your quick and valuable reply...But tell me if existing X-Cart_Reboot_Template_v1.2_(X-Cart_v4.6.0) will work on 4.6.1 platinum then the updated versions contains only the patch which can easily been patched on v1.2_ easily for 4.6.1 platinum? In addition, I will be adding more features and optimisations to reBOOT, but it's not going to be ready until October (I am currently away on holiday). What about optimizations will load faster than current once ? Quote:
If any issue arises then? Thanks again.. |
Re: X-Cart - reBOOT - Responsive Template
Quote:
Still it is not working after adding this code...Can u pls tell me how to make different color? Pls help me... |
Re: X-Cart - reBOOT - Responsive Template
Quote:
|
Re: X-Cart - reBOOT - Responsive Template
Quote:
gozindagi, here is the solution for changing the root category background colours on the mega menu... in skin/reboot/custom/header/header_mega_menu.tpl Replace... Code:
<li><a href="{if $c.childs}#sub{else}home.php?cat={$c.categoryid}{/if}"{if $c.childs} class="arrow"{/if}>{$c.category}</a> With... Code:
<li class="cat_{$c.categoryid}"><a href="{if $c.childs}#sub{else}home.php?cat={$c.categoryid}{/if}"{if $c.childs} class="arrow"{/if}>{$c.category}</a> Then in skin/reboot/css/reboot_mega_menu.css Add CSS like this (let's say you are using mega menu style 3)... Code:
.style-3.menu ul li.cat_123 { background-color: #FF0000; } Replace 123 with your category ID Replace #FF0000 with the colour you want |
Re: X-Cart - reBOOT - Responsive Template
Quote:
Hello, Thanks for the codes now the color working fine.Great you are. But in case of wrap category names it is not showing as I expected.I want the same design like- http://www.gozindagi.com/devgoz/Health%20Shoppe%20Header%28reboot%29.jpg But it is showing in this manner- http://www.gozindagi.com/devgoz/gozindagidevgoz.jpg |
Re: X-Cart - reBOOT - Responsive Template
You could try giving them a minimum width, eg.
.style-3.menu ul li { min-width: 100px; } Kindly do not post any more threads on your issue, take it to a support ticket if necessary. |
Re: X-Cart - reBOOT - Responsive Template
New RSS feeds displayer addon for reBOOT just added (free). Get it from http://www.xcartmods.co.uk/reboot/
|
Re: X-Cart - reBOOT - Responsive Template
Quote:
Thanks for your great help.I can do after changing in CSS Quote:
Sorry Sometimes it happens that I have not received reply from ticket so I post here. Ok I have not send any issue again... |
Re: X-Cart - reBOOT - Responsive Template
hello,
Can anyone tell if magneticone make a deal and follow up autoresponder are compatible with reboot or not? |
All times are GMT -8. The time now is 12:30 AM. |
Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.