Hi,
I've just been looking for where I change these values, and it doesn't seem possible.
SevenSpikes.Themes.Alfresco.Common.CompanyInfo
SevenSpikes.Themes.Alfresco.Common.CustomerServices
SevenSpikes.Themes.Alfresco.Common.FAQ
SevenSpikes.Themes.Alfresco.Common.Help
SevenSpikes.Themes.Alfresco.Common.OurOffers
SevenSpikes.Themes.Alfresco.Common.Search
SevenSpikes.Themes.Alfresco.Common.MenuTitle
SevenSpikes.Themes.Alfresco.Common.Phone
SevenSpikes.Themes.Alfresco.Common.EmailName
SevenSpikes.Themes.Alfresco.Common.EmailDomain
They are not included on the theme's Widget Config page, which is where I'd expect them to be.
Regards
Adam
Having just installed jCarousel, I tested it on different size screens as I'm using the responsive Alfresco theme.
It works fine in full size, max-width 980 and 768 but breaks a bit in the smallest size, max-width 480
What happens is the the two left and right arrows, instead of overlaying the right-hand image, move above the carousel.
I had put the carousel in the 'home_page_top' zone.
At this small size, the left/right arrows are half overlayed over the main Menu. This looks very odd.
The solution is simple though - copy the CSS rules from the next largest size into the max-width 480px section. Here are the changes I made:
@media screen and (max-width: 480px) {
.nop-jcarousel .carousel-title {
margin: 0 5px 60px;
}
.nop-jcarousel .jcarousel-prev-horizontal, .nop-jcarousel .jcarousel-next-horizontal {
/*bottom: 244px;
top: inherit;*/
padding: 6px;
}
.nop-jcarousel .jcarousel-prev-horizontal {
right: 61px; /* New rule */
/*left: 43%;
margin-left: -20px;*/
}
.nop-jcarousel .jcarousel-next-horizontal {
/*right: 43%;
margin-right: -20px;*/
}
.nop-jcarousel .item-info {
display: none !important;
}
}
Hi,
I've just added jCarousel to my site (which is still under development so it's not publicly visible)
I used the 'Home Page Featured Products' as the data source type, and it's fully populated with products, and it scrolls correctly most of the time. So far so good.
When I mouse over a product, a grey panel slides up with the name of the product, the price and a 'Details' button
If I click the 'Details' button, I'm taken off to the correct product page
However, if I click anywhere else in the grey panel, it takes me off to a page called /undefined, with the resultant 404 message
How can I make the URL of the grey panel point to the same place as the 'Details' button.
I'm using nopCommerce 3.10 with the Alfresco theme and the plugins that came with that theme.
Thanks