I thought this would be easy to find and implement but maybe it's because I don't know the correct name for what I'm looking for. I'm trying to implement a style of control like that seen in corporate clean slideshow (image attached). I thought i was close when I found Views Slideshow Configurable Controls: slideshow https://drupal.org/node/1468130 but that does not provide a simple, icon control like that used in corporate clean theme.

CommentFileSizeAuthor
control type example.jpg1.8 KBcalefilm
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

BrankoC’s picture

Issue summary: View changes

That is called a pager.

I don't know whether this specific sub-type has its own name.

I also don't know what the recommended way is to recreate your type of pager, but will note that you can edit the template views-slideshow-pager-field-item.tpl.php to make the pager look exactly like you want.

NickDickinsonWilde’s picture

Status: Active » Closed (outdated)

You can definitely do that with the field pager and some css.
for example:

.views_slideshow_pager_field_item {
  padding-left: 0 !important;
}
.views-slideshow-pager-field-item a{
  width: 10px;
  height: 10px;
  border: 2px solid grey;
  border-radius: 50%;
  display: inline-block;
  font-size: 0px;
  color: transparent;
}

.views-slideshow-pager-field-item.active a {
  background-color: blue;
  border-color: blue;
}