Ecommerce software home
Shopping Cart Software Forum for Ecommerce Templates
 
Home | Profile | Register | Active Topics | Members | Search | FAQ
Username:
Password:
Save Password
Forgot your Password?

Find us on Facebook Follow us on Twitter View our YouTube channel
Search our site
Forum Search
Google Site Search
Next Page
Author « Topic »
Page: of 4

LynK
Ecommerce Template Expert

Australia
696 Posts

Pre-sales questions only
(More Details...)

Posted - 01/01/2018 :  23:06:31  
https://www.kennykreations.com/test/
I am setting up the new theme in a test directory.
Is it possible to place the dropdown mini cart in place of the link to the shopping cart on the top right of the page?
Thanks, Lyn

Andy
ECT Moderator

95440 Posts

Posted - 01/02/2018 :  00:07:53  
Hi Lyn

That should work fine there - looks like you have been busy!

Andy

Please feel free to review / rate our software

LynK
Ecommerce Template Expert

Australia
696 Posts

Pre-sales questions only
(More Details...)

Posted - 01/02/2018 :  00:41:19  
HI Andy, how do I put it there?
Thanks, Lyn

Andy
ECT Moderator

95440 Posts

Posted - 01/02/2018 :  01:30:24  
In header.php replace this line

<a href="cart.php"><i class="fa fa-shopping-cart" style="margin:0 8px;"></i>View Shopping Cart</a>

with the mini drop down cart line

<?php include 'vsadmin/inc/incminidropdowncart.php'; ?>

Andy

Please feel free to review / rate our software

LynK
Ecommerce Template Expert

Australia
696 Posts

Pre-sales questions only
(More Details...)

Posted - 01/02/2018 :  02:00:20  
Just too easy when you know how! Thanks, Andy.
Lyn

LynK
Ecommerce Template Expert

Australia
696 Posts

Pre-sales questions only
(More Details...)

Posted - 01/02/2018 :  03:05:53  
https://www.kennykreations.com/test/products.php
Andy, can you see why some of the images are failing to show up on this page?
Thanks, Lyn

Andy
ECT Moderator

95440 Posts

Posted - 01/02/2018 :  03:13:16  
If you look at the path in the products admin page you'll see the ones not showing are probably set to prodimages/product.jpg and as there's no prodimages folder in the /test/ folder, they show as missing.

Andy

Please feel free to review / rate our software

LynK
Ecommerce Template Expert

Australia
696 Posts

Pre-sales questions only
(More Details...)

Posted - 01/02/2018 :  03:24:06  
Thanks, Andy. I can see how that works.
Same problem on kk/test/categories.php. Easy fix.
How do I get rid of the Checkout button on top of the products.php

Andy
ECT Moderator

95440 Posts

Posted - 01/02/2018 :  03:56:04  
Add this to your css file

div.checkoutbutton{display:none;}

Andy

Please feel free to review / rate our software

LynK
Ecommerce Template Expert

Australia
696 Posts

Pre-sales questions only
(More Details...)

Posted - 01/02/2018 :  05:28:45  
Thanks, Andy.
Lyn

LynK
Ecommerce Template Expert

Australia
696 Posts

Pre-sales questions only
(More Details...)

Posted - 01/02/2018 :  16:52:08  
Can you please tell me how to edit the color of the font in the primary menu. I want it to be #fff
Thanks, Lyn

Andy
ECT Moderator

95440 Posts

Posted - 01/03/2018 :  00:03:51  
Hi Lyn

Add this to your css file

.dropdown a{color:#fff !important}

Andy

Please feel free to review / rate our software

LynK
Ecommerce Template Expert

Australia
696 Posts

Pre-sales questions only
(More Details...)

Posted - 01/03/2018 :  03:29:56  
Hi Andy, I'm trying to change the background color on hover for the dropdown link in the primary menu.
This is what I have put in style.css.
.dropdown a{color:#fff !important}
.dropdown a:hover {
background-color: #009999;
color: #fff !important;
text-decoration: none;
}
Not getting any change to the background color on hover.
Thanks, Lyn

Andy
ECT Moderator

95440 Posts

Posted - 01/03/2018 :  03:35:50  
Look in bootstrap.css around line 3895

.navbar-nav> li > a:hover,
.navbar-nav > li > a:focus {
text-decoration: none;
background:#C4C4C4;
color:#000;
}

That's where the hover background is set.

Andy

Please feel free to review / rate our software

LynK
Ecommerce Template Expert

Australia
696 Posts

Pre-sales questions only
(More Details...)

Posted - 01/03/2018 :  03:39:10  
Thanks, Andy.
Lyn

LynK
Ecommerce Template Expert

Australia
696 Posts

Pre-sales questions only
(More Details...)

Posted - 01/03/2018 :  04:24:50  
Andy, the recentview name is showing up as white text.
This is what I have in ectstyle.
div.recentviewname{
width:48%;
color:#003333 !important;
font-size:14px;
margin-top:8px;
float:right;
}
Can you see what I am doing wrong? Thanks, Lyn

Andy
ECT Moderator

95440 Posts

Posted - 01/03/2018 :  04:35:32  
I would remove the !important here

/*Internal store navigation*/
a.ectlink:link {
color: #003333 !important;
text-decoration: underline;
}

a.ectlink:visited {
background-color: #009999;
color: #fff !important;
text-decoration: none;
}

a.ectlink:active {
background-color: #009999;
color: #fff !important;
text-decoration: none;
}

a.ectlink:hover {
background-color: #009999;
color: #fff !important;
text-decoration: none;
}

and then add

.recentview{
color:#003333 !important;
}

Andy

Please feel free to review / rate our software

LynK
Ecommerce Template Expert

Australia
696 Posts

Pre-sales questions only
(More Details...)

Posted - 01/03/2018 :  04:58:13  
Thanks, Andy. Worked a treat! Lyn

LynK
Ecommerce Template Expert

Australia
696 Posts

Pre-sales questions only
(More Details...)

Posted - 01/03/2018 :  14:48:15  
How can I put a background:#f2f9f9 behind the details on the cart.php?
Thanks, Lyn

Sinbad
ECT Moderator

USA
65937 Posts

Posted - 01/03/2018 :  15:29:56  
Hi Lyn, the easiest method would be to give the div that contains the cart a class and setup the class in the sytle sheet.

Example open cart.php in your text editor and look at the div that contains the php include it may look something like below then add a class of white

<div class="mm col-xs-12 col-sm-9 white" data-spy="scroll" data-target="#sidebar-nav">


Then add this to your style sheet.

.white {
background-color: #fff;
}


The above method will provide a white background for all the sections of the cart page, you can use the same class on other pages as well.

Winners never quit, quitters never win
CSS and Responsive Designs
User Manual for Ecommerce Templates

LynK
Ecommerce Template Expert

Australia
696 Posts

Pre-sales questions only
(More Details...)

Posted - 01/03/2018 :  15:49:25  
Thanks, Marlene.
Lyn
Page: of 4 « Topic »  
Next Page
Jump To:
Shopping Cart Software Forum for Ecommerce Templates © 2002-2022 ecommercetemplates.com
This page was generated in 0.03 seconds. Snitz Forums 2000