Enlarge the shopping cart and menu icons and reduce the padding around articles when viewing sites on a mobile device. |
This has been implemented in AudienceView 6.8.2.
The Content Mangement application Sites|Applications page contains a default Viewport meta tag with a 'Value' of width=device-width, initial-scale=1. Ensure that this value is set when upgrading from a previous version of AudienceView so that the shopping cart and menu buttons will scale appropriately.
The padding around articles has also been reduced.
|
AVD-4490 |
Add new classes to the search bar to separate the items and make it easier to hide 'Event Dates' fields. |
This has been implemented in AudienceView 6.8.2.
Specific classes have been added to the search box UI on the default.asp page. Properties have not been added to the global.css for these classes, but these labels can be styled individually (including hiding them).
If you want to hide the event date fields, add the following to the stylesheet
.search-box .item-search-start-date,
.search-box .item-search-end-date {
display: none;
}
|
If want to hide the labels, add the following to the stylesheet:
.search-box .item-search-start-date .searchBoxLabel,
.search-box .item-search-end-date .searchBoxLabel {
display: none;
}
|
|
AVD-4491 |
Combine the menu (e.g. Miscellaneous Items) and the dropdown associated with it into a single button. |
This has been implemented in AudienceView 6.8.2.
If a menu item is configured without a link to a specific page, the menu item and the associated dropdown will be combined into a single button that will open the dropdown.
If a menu item is configured with a link, then the button and the dropdown arrow will still act independantly of each other.
|
AVD-4492 |