Welcome, Guest
Username: Password: Remember me
Use this Category for your support questions about Responsive Joomla Virtuemart Template - CoolMart (SKU# FLEX-00014)

TOPIC: Flexible - Responsive Joomla 3D Slideshow

Flexible - Responsive Joomla 3D Slideshow 9 years 11 months ago #9542

hi,

1. how can i put more than five or more than 7 images in the slideshow?

2. i cant save in my template manager any idea how it happen? i want my layout back to 980px.

3. i have a problem in the flexibility of my pages, please check it out first before i send you the screenshots.

check out in different browser especially in "Internet Explorer". this is the page . www.addessa.com

thanks.
Last Edit: 9 years 11 months ago by JOSE ALLAN DELA CRUZ.
The administrator has disabled public write access.

Flexible - Responsive Joomla 3D Slideshow 9 years 11 months ago #9562

Hi,

1- Putting more than 5 pictures, will increase the page loading time a lot. We have dropped the number to 5 (it was 7 originally). To increase the number to back to 7, open this PHP file:
/modules/mod_flexible_3d_slider/tmpl/default.php

Right before this line:
</ul>

copy-paste the below lines:
 <?php if ($slide6) { ?>
    <li class="group"> <a href="<?php echo $slide6url ?>"> <img src="<?php echo $slide6 ?>" alt="" /> </a>
      <?php if ($slide6CaptionCheck) {?>
      <div class="rs-caption <?php echo $slide6CaptionLocation ?>"> <?php echo $slide6Caption ?> </div>
      <?php } ?>
    </li>
    <?php } ?>
    <?php if ($slide7) { ?>
    <li class="group"> <a href="<?php echo $slide7url ?>"> <img src="<?php echo $slide7 ?>" alt="" /> </a>
      <?php if ($slide7CaptionCheck) {?>
      <div class="rs-caption <?php echo $slide7CaptionLocation ?>"> <?php echo $slide7Caption ?> </div>
      <?php } ?>
    </li>
    <?php } ?>

To add more than 7, it is not currently possible. So further modification would be required to do it, which is beyond our free support.
FYI: adding more than 7 pictures to slideshow won't be recommended though.

2- Try different browser. If you are currently using IE, then try Firefox or Chrome. It must be a browser issue.

3- I am a Mac User and i don't have IE. So please be more descriptive. What do you mean by "flexibility problems" ?
the slideshow is currently doesn't work as expected, the picture transitions are smooth, because there is a jQuery conflict issue on your website caused by the modernizr.min.js file.

If this is the issue you are talking about. Please create me;
- joomla (super) administrator account,
- FTP account


and send them to This email address is being protected from spambots. You need JavaScript enabled to view it.. Let me try to resolve this problem. If i change anything or any file i will provide you the detailed information about my touches.

While emailing to This email address is being protected from spambots. You need JavaScript enabled to view it. Don't forget to include this forum topic's URL at the of your message (or in the Subject field) as reference to avoid possible confusion in our end.

Regards,
support
Last Edit: 9 years 11 months ago by Support.
The administrator has disabled public write access.

Flexible - Responsive Joomla 3D Slideshow 9 years 11 months ago #9579

Hi,

i already saved my modification in my template manager using Chrome thanks for your help, about the "Flexibility" what i mean is the "Responsiveness" of the template. see the attachment below.

1. using mozilla this is 980px width and this is what i expected using full screen.

Attachment mozilla.png not found



2. this is using Internet Explorer compared using Mozilla there is some changes which is i do not want as the output.

Attachment ie.jpg not found

Last Edit: 9 years 11 months ago by JOSE ALLAN DELA CRUZ.
The administrator has disabled public write access.

Flexible - Responsive Joomla 3D Slideshow 9 years 11 months ago #9594

Hi,

It is really hard for me to address the issues, as i am a Mac user and i don't have IE to browse your website and see the source codes.

Did you get that screenshot from IE9 ? Or did you use a developer tool and set IE8 or any lower version? IF so, you should be aware, we never considered IE8 while developing. Even Microsoft stopped supporting IE8, why would we?

But, from the screenshots, i am seeing that the Font-size are not the same (for the top-right menu items)
It must be because of the "Font-family" you are using, Kreon
Apparently the IE doesn't support custom font. As i was thinking IE9 supports though.

Can you try to change the font-family? Try the ordinary font families (arial, verdana etc..) or try Google Fonts.
About the frame border with Facebook. It is again very interesting, because Facebook SDK is responsible to generate the iframe and it is really weird they forgot to remove the frame border for IE.

There is not much thing we can do with that, as we have used Facebook official SDK to generate the like box (which opens inside the iframe). This is why i am strongly thinking, you took that screenshot from an IE8, this clearly says that even Facebook doesn't care about IE8

About the font color differentiations,
I am seeing you have used CSS3 rule to change the font color:

Attachment Pasted_Image_4_25_14__12_39_AM.png not found


ul li:not(:first-child) a {

The :not selector comes with CSS3 (originally invented by JavaScript) and it is supported in all major browsers, but not with older browser (for example IE8). This proves that you took that screenshot from IE8. So, disregard what i have told you above.

There is only one thing can be said: Our templates have been developed to work with Modern browsers, and doesn't support IE8, IE7, IE6 etc..

By the way, If you want set color for UL > LI > A , and set an another color for the 1st item, then you should use this:
ul li a {
   color:#ff0000;
}
ul li a:first-child {
   color: #fff;
}

the above CSS rule means; all the ul > li > a will be RED, but the first-child will be WHITE. And it is supported by all browsers (including IE8)

This is a better usage. And put that CSS declaration into a CSS file, for example to this:
/templates/flexilbe_coolmart/css/custom.css

Don't use inline style.

Regards,
Support
Last Edit: 9 years 11 months ago by Support.
The administrator has disabled public write access.

Flexible - Responsive Joomla 3D Slideshow 9 years 11 months ago #9622

Hi,

yah maybe your right its the Explorer version, but when i used the css code you suggest:

ul li a {
color:#ff0000;
}
ul li a:first-child {
color: #fff;
}

I test that css code above and i run my site in Explorer it's still the same in previous output. also i try to changed the font to the default font style of the template but still nothing is changed. thanks
The administrator has disabled public write access.

Flexible - Responsive Joomla 3D Slideshow 9 years 11 months ago #9625

Hi,

First of all, I saw an another interesting CSS inline rule in your website source:
See the screenshot for details:

Attachment Pasted_Image_4_29_14__12_55_AM.png not found



Attachment Pasted_Image_4_29_14__12_58_AM.png not found



Remove those inline CSS rules or use /* ...... */ to comment out unnecessary CSS rules.
Additionally always use /templates/flexible_coolmart/css/custom.css if you want to css rules.

To avoid the line breaking for About ADDESSA (which happens only on IE)
open this CSS file: /templates/flexible_coolmart/css/custom.css
and include this rule:
.item106.level1 {
    width: 150px;
}

this will fix it:

Attachment ScreenShot2014-04-29at1.04.23AM.png not found



Regards,
Support
Last Edit: 9 years 11 months ago by Support.
The administrator has disabled public write access.

Flexible - Responsive Joomla 3D Slideshow 9 years 10 months ago #9634

hi,
thank you it's already working on I.E. browser as expected, my problem now is in the google chrome browser.. see this..



nothing was changed in the text just like before on I.E.

and also when i was playing around with the screen size comparing mine with your demo i'ved notice this problem see image below.

i choose the iPhone Portrait.


Attachment c4.png not found




1. Demo.

Attachment c2_2014-04-29.png not found



2. Mine, i want this just like the Demo.

Attachment c3.png not found



Another, how can i set the visibility of the border between my toolbars see this.

Attachment C5.png not found

Last Edit: 9 years 10 months ago by JOSE ALLAN DELA CRUZ.
The administrator has disabled public write access.

Flexible - Responsive Joomla 3D Slideshow 9 years 10 months ago #9648

Hi,

The huge-banner: "INSTALLMENT MADE EASY" is way to much for responsive layout.
The "Headerbar" module position is exist only for the simple texts and only visible with the "full layout". It gets hidden with mobile layouts.

The "headerbar" module position gets hidden when the resolutions are either one of them:
- 768x2014 (iPad portraid)
- 568x320 (iPhone landscape)
- 320x568 (iPhone portrait)

(actually it gets hidden when the "width" resolution drops below 769px -- which is actually where the small screen device resolution begins)

So, you don't need to worry about it. It is happening the same in your website and in our DEMO. Headerbar is not good place to put some content in the mobile layout, simply because there is no enough space. In your website, drops the width resolution below 769px and the INSTALLMENT MADE EASY banner will go off.

About the border thing, i am seeing you found a solution about it.
You can change the border color in this CSS file:
www.addessa.com/templates/flexible_coolmart/css/customizeColors.css

by changing this CSS rule:
.menu-line li {
    border-left: 1px solid #333333;
}

If you like CoolMart and satisfied with the support you have received, please "write a review" on:
www.flexiblewebdesign.com/Joomla-Virtuemart-Templates/CoolMart

Rate CoolMart and write a couple of sentences to share your experience with the support team.
It won't take more than 2 minutes from you but it is extremely important for us.

Thanks in advance!

Regards,
Support
Last Edit: 9 years 10 months ago by Support.
The administrator has disabled public write access.

Flexible - Responsive Joomla 3D Slideshow 9 years 10 months ago #9658

Hi,

Thanks for your reply.

can you teach me how to make my logo as my home button without the "HOME" link.. i'm working on it by not publishing the home link in my menu but the problem is the URL of the default menu is always the same with my logo.

Attachment 1.jpg not found



i want this just like your demo, please provide me step by step tutorial on how to do it. thanks.. i hope you understand :)
Last Edit: 9 years 10 months ago by JOSE ALLAN DELA CRUZ.
The administrator has disabled public write access.

Flexible - Responsive Joomla 3D Slideshow 9 years 10 months ago #9667

Hi,

I am sorry but i can't.

This is a 100% custom modification and unfortunately we don't provide free support or step-by-step instructions for custom coding modifications.

You may purchase premium support:
www.flexiblewebdesign.com/premium-support

and let us take care this modification for you directly on your website though.

Quick TIP: Create a new Menu Group, and called it "Secret Menu". Then move the "HOME" menu item from "Main Menu" to "Secret Menu". Then the HOME menu item will be gone from the front-page.

Regards,
Support
Last Edit: 9 years 10 months ago by Support.
The administrator has disabled public write access.

Flexible - Responsive Joomla 3D Slideshow 9 years 10 months ago #9675

Hi,

I already found a very simple css solution :)... thanks for your reply..

.item152 { display:none; }
The administrator has disabled public write access.

Flexible - Responsive Joomla 3D Slideshow 9 years 10 months ago #9680

There are always many ways to do the same thing.
My method is the ideal way, your method is the code-expert's way. The result: The HOME menu item evaporates from front-end in either ways.

I am closing this topic and marking the case solved.

If you like CoolMart and satisfied with the support you have received, please "write a review" on:
www.flexiblewebdesign.com/Joomla-Virtuemart-Templates/CoolMart

Rate CoolMart and write a couple of sentences to share your experience with the support team.
It won't take more than 2 minutes from you but it is extremely important for us.

Thanks in advance!

Regards,
Support
Last Edit: 9 years 10 months ago by Support.
The administrator has disabled public write access.
Time to create page: 0.169 seconds

MaterialMart

for Virtuemart 3

Google's Material Design has finally arrived to Virtuemart

Virtumart Template - MaterialMart Virtumart Template - CleanMart Virtumart Template - CleanMart Virtumart Template - CleanMart

Fully responsive!

Buy Now   |   Live Demo