Picture library webpart remove vertical scrollbar

I have inserted the picture library webpart onto the home page of a site, and no matter how I adust the settings (fixed pixels on height and width, or "NO. Adjust width to fit zone.", or any combination thereof) I still get a vertical scrollbar.
In short, I don't want any scrollbars displayed in the picture library.
Also, rather than dealing with the SharePoint supplied picture library webpart, are there any webparts available for purchase that also slickly shows pictures on a SharePoint site?
Any comments appreciated, thanks.

Hi,
According to your post, my understanding is that you want to remove vertical scrollbar in picture library webpart.
Per my knowledge, if you insert the list view web part and select the picture library, the web part will display as below, which has no vertical scrollbar.
In addition, if you want to display pictures, you can use SharePoint Picture Menu Web Part or Picture Library Slideshow Web part.
More information:
Sharepoint Picture Menu Web Part
Picture Library SlideShow WebPart in SharePoint 2013
Thanks,
Linda Li                
Forum Support
Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
[email protected]
Linda Li
TechNet Community Support

Similar Messages

  • How can i stretch pictures in picture library webpart and remove the home tab that comes with the site

    Hello people
    how can i stretch images to fit into my picture library webpart?
    also how can i remove the Home tab that comes with change the look.

    Hi,
    Let’s verify the following:
    Whether you use the picture  library web part or Image Viewer web part or Picture Library Slideshow Web Part.
    I think you should custom the web part to stretch images to fit into your web part. There is no OOTB method to achieve it.
    Whether the home tab is your library name.
    To remove the Home tab, edit the web part->Appearance->”Chrome” choose none.
    Best Regards,
    Lisa Chen
    Lisa Chen
    TechNet Community Support

  • Remove vertical scrollbar from multi-row af:inputText

    Hi,
    Is it possible?
    I'm using JDeveloper 11.1.2.1
    I have two text field (af:inputText) and field 2 is a multi line row, which automatically adds extra width for the vertical scrollbar, and throws off the right alignment
    field 1 |________|
    field 2 |_______|v|
    I need both field 1 and 2 to be left and right aligned
    i.e.
    field 1 |_______|
    field 2 |_______|
    Is there a way to do this? I was thinking this could be achieved by removing the vertical scrollbar, but I'm not sure how to do this.
    Also, the application needs to be viewed in both mobile device (iPad) and desktop. Since iPad doesn't use scrollbar (hence it's not rendered), setting both fields to have fixed width won't achieve what i need, because it will be correct in one version, but not both.
    Thank you for any information.
    Regards,
    Andi

    Hi Navaneeth,
    Code:
    <h:panelGrid columns="2" id="pg1">
    <af:outputLabel value="Field 1" id="ol5"/>
    <af:inputText value="#{bindings.ModelCode1.inputValue}"
    required="#{bindings.ModelCode1.hints.mandatory}" columns="#{bindings.ModelCode1.hints.displayWidth}"
    maximumLength="#{bindings.ModelCode1.hints.precision}"
    shortDesc="#{bindings.ModelCode1.hints.tooltip}" id="it4">
    <f:validator binding="#{bindings.ModelCode1.validator}"/>
    </af:inputText>
    <af:outputLabel value="Field 2" id="ol4" shortDesc="#{bindings.Comments.hints.tooltip}"/>
    <af:inputText value="#{bindings.Comments.inputValue}"
    required="#{bindings.Comments.hints.mandatory}" columns="#{bindings.Comments.hints.displayWidth}"
    maximumLength="#{bindings.Comments.hints.precision}" shortDesc="#{bindings.Comments.hints.tooltip}"
    id="it9" rows="#{bindings.Comments.hints.displayHeight}">
    <f:validator binding="#{bindings.Comments.validator}"/>
    </af:inputText>
    </h:panelGrid>
    Current layout:
    http://img607.imageshack.us/img607/4282/fieldalignmentproblem.jpg
    Desired layout (To have it aligned as per the green line):
    http://img338.imageshack.us/img338/7865/fieldalignmentdesired.jpg
    Thanks,
    Andi

  • Error on extenal site for picture library webpart

    Hi,
    I have inserted a picture library web part on a page which works on an internal url i.e.
    http://spportal, however, when I load the page on the external site (which uses ssl), I receive the following error where the web part should be. Any ideas of what the problem might be? Thanks, Sherazad.
    Error
    Web Part Error: Unknown server tag. Correlation ID: a43f4d9c-1123-4088-e3aa-5e3d1778507d.
    Sherazad

    @Sherazad,
    can you find more information about the error from logs using your correlation ID.
    http://www.sharepoint-journey.com/powershell.html
    My Blog- http://www.sharepoint-journey.com| Twitter
    If a post answers your question, please click "Mark As Answer" on that post and "Vote as Helpful

  • I have a picture library with images in sharePoint, now i want display that images in sharepoint webpage as a webpart.

    Hi All,
    I have a picture library with images in sharePoint, now i want display that images in sharepoint webpage as a webpart.
    i have displayed the all the images as a webpart.
    Now i want to enable thumbnail on that images and when i click the thumbnail of the image, it will be dilplayed as large image.
    How can i do this, any help!

    Hi,
    Please do the following to complete this task.
    1) Insert the picture library as list view webpart in your page.
    2)Specify the column titled  Thumbnail Preview in the list view.
    3) Edit the webpart and set the Toolbar Type to Summary Toolbar.
    Regards,
    Anurag

  • Remove empty space in Picture Library Slideshow web part

    I'm using Picture Library Slideshow web part in one of my pages. The web part itself is working fine, but I'm a bit annoyed by the white space the web part is consuming.
    The web part puts lots of empty space between the web part header and the picture and also to the bottom of the web part.
    The Slideshow web part generates the CSS on the fly, so I cannot really get a control of it cause it doesn't have any static CSS classes(that I know of, at least).
    How could I get rid of these white spaces?

    Hi Pekch,
    Thanks for your post.
    You can achieve this using JQuery.
    1.      
    Download
    JQuery to your SharePoint Server, and then add a Content Editor Web Part to the page;
    2.      
    View the source code using IE developer(Press F12), the code likes below:
    <td style="width: 195px; height: 213px;">
                    <div style="..." id="MSOPictureLibrarySlideshowWebPart_ctl00_m_g_ffa17524_ffa7_44e7_974c_1756a39257b9_cell">
                    </div>
    </td>
    3.      
    So now, you can find the control whose id is started with “MSOPictureLibrarySlideshowWebPart” using the JQuery Code below:
    jQuery('div[@id^=”MSOPictureLibrarySlideshowWebPart”]')
    4.      
    Remove the style of the “div” and his parent “td”. Because there is a “Width” attribute in both levels.
    More information:
    http://weblogs.asp.net/jan/archive/2010/10/05/getting-started-with-jquery-templates-and-sharepoint-2010.aspx
    http://www.bennadel.com/blog/1003-Cool-jQuery-Predicate-Selectors.htm

  • To search only images in a particular folder of picture library using content search webpart.

    I have Images library where i am storing images in different folders.I need my content search webpart to search and display images in a particular folder in Images Library.For ex: i need to if my Picture Library Name is 'Images' a folder inside that is
    'Travel' which is having some images.I need my content search webpart to pick images from 'Travel' folder only.Any pointers to this will be helpful.

    Hi,
    According to your post, my understanding is that you want to search images in a particular folder via content search web part.
    When we use the search crawl the items in the images library, it crawls the items and folder with the following URL.
    For folder: http://sp13/PublishingImages/Folder1.
    For Items:
    http://sp13/PublishingImages/Forms/DispForm.aspx?ID=itemID
    It not crawls the items as the path
    http://sp13/PublishingImages/Folder1/Item, then we could not use this path to retrieve the items in the folder.
    As a workaround, we can create a custom field in the image library, such as a choice type field named
    Folders(it contains the folder names), when we create a image, we set the folder name in this field.
    Note: we should new a managed property manually to match the Crawled property.
    Then we can use this field to filter the items in a particular folder as below, it works like a charm in  my environment.
    path:"http://sp13/PublishingImages"   Folders=Folder1
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • How to Set Item limit for Picture library Slideshow webpart in SharePoint 2013

    Picture library Slideshow webpart is using the default view "All Pictures" and if I set a filter condition in the view, the images are displaying based on it but if I set an Item limit as "5" or any number in the "All Pictures"
    view it is not reflecting in the slideshow webpart.
    Any suggestion would be a great help as the users want to see only the latest 5 images in the slideshow webpart.
    Thanks & regards,
    Asha

    I don't think so there is any way to set a item count limit on Picture Library Slideshow web wart.
    Web Part setting only allows to provide library and View, In List view also you can only set Item Limit to be shown on the 'List View'. Slideshow web part take all the items in the list and show, view is only used to provide which field needs to be shown.
    There could be 2 options:
    - Write a JavaScript to limit the count, and in the view add Sorting by 'Created' date. You can get some example on how to modify "Library Slideshow web part" javascript here: http://blog.vgrem.com/2013/04/27/beyond-the-slideshow-web-part-capabilities-in-sharepoint-2010/
     This link does not have solution of what you want, but it gives a very well idea on what you can look and modify. It will not be that straight forward for sure.
     - Create a custom webpart, it could be a easier approach. As there are many slideshow Javascript library present, and through code you will just need do a query and pull data from library with required number of items to be shown.
    get2pallav
    Please click "Propose As Answer" if this post solves your problem or "Vote As Helpful" if this post has been useful to you.

  • Can't remove unwanted vertical scrollbar from JSP

    I can't remove an unnecessary vertical scrollbar from my JSP when the "<DIV>" on the screen is wider than the screen(i.e a horizontal scrollbar is necessary).It does'nt matter how much info is removed from the page the vertical scrollbar remains as long as the "<DIV>" is wider than the screen.Has anyone else experienced this problem before?.

    The data displayed is all necessary for the functionality of the screen (i.e different calculations and figures being checked, similiar usage as an excel spreadsheet online).So it is necessary to have a horizontal scrollbar but I do not want a vertical scrollbar as it does'nt provide any functionality as the page fits perfectly into the screen height wise.

  • Vertical ScrollBar for JTable disappears when trying to scroll!

    Hi!
    I have 2 JTables and these are in a JScrollPane. I need to add a Vertical ScrollBar in such a way that when the number of rows increases, the scrollbar will scroll both the table's data.
    I am not using the Vertical ScrollBar of the ScrollPane instead i have added a JScrollBar to the two Panes( i.e. scrollPane.setVerticalScrollBar() ). This works fine.
    But when I remove the columns from the right JTable , i.e. I have only one JTable left, the Vertical scrollbar disappears inspite of the number of rows being the same.
    I have tried setting ViewPortView etc. but nothing works.
    Please help!

    Remember that was a test. It tells us the iPhoto is essentially sound and the issue is within that main Library.
    Next move is to try repair that library.
    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Repair Database. If that doesn't help, then try again, this time using Rebuild Database.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. (In early versions of Library Manager it's the File -> Rebuild command. In later versions it's under the Library menu.)
    This will create an entirely new library. It will then copy (or try to) your photos and all the associated metadata and versions to this new Library, and arrange it as close as it can to what you had in the damaged Library. It does this based on information it finds in the iPhoto sharing mechanism - but that means that things not shared won't be there, so no slideshows, books or calendars, for instance - but it should get all your events, albums and keywords, faces and places back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.  
    Regards
    TD

  • Vertical scrollbar to the left

    Hi All,
    i am thinking a way to move the vertical scrollbar to the left. Do you know how to do this customization?
    I found i good sample here: http://yourpalmark.com/2008/06/18/reposition-scrollbars-in-flex-components/
    But it doesn't solve my problem completely. Because. according to the sample, we override  updateDisplayList
    protected override function updateDisplayList( unscaledWidth:Number, unscaledHeight:Number ):void
    super.updateDisplayList( unscaledWidth, unscaledHeight );
    if( verticalScrollBar && verticalScrollBar.visible )
    //verticalScrollBar.x = -verticalScrollBar.width;
    verticalScrollBar.x = 0;
    textField.x=verticalScrollBar.width;
    This will result a small white vertical box on the right of our container. It is the postion where the scrollbar previously lies on.
    So If you put a picture there, it will be cut off.
    Do you have a way to display the picture correctly?
    Thank you for your response,
    -Hoang Long

    Hi,
    I have the same problem. Did you find any solution to remove the white patch?
    Regards,
    Shiyaz

  • Picture Library : upload image with same name overwrite the image in thumbmail or WebVersion view but not the actual image link points to the old image

    Hello,
    I am facing a wired issue with Picture Libraries in SharePoint.
    We created a custom field and added it to UserInfo list, the column based on custom field lets user upload their personal images to a Picture Library with the name <User ID>.<Image Extension> e.g. 1.jpg where UserID is internal Listitem ID of the UserInfo list and set its URL to the field value which we use to display the image on our custom user profile and some other WebParts.
    If the user uploads a different image, it will overwrite the existing one it keeping the same name.
    The field worked perfectly with sites using widows Based authentication, but as we move the field to sites with form based authentication we find that the field is able to upload the image properly first time but on each successive upload, although a new image gets uploaded with the name userid.imagextension and is shown in the allitems.aspx page in the thumbnail view and in the picture preview on the dispform.aspx page, but the link next to the name field and the image shown on clicking the preview points to the old image.
    To put it other way
    https://<Web URL>/Picture%20Library/_w/Upload_jpg.jpg
    https://<Web Url>/Picture%20Library/_t/Upload_jpg.jpg
    Would show the updated image
    but the actual URL
    https://<Web Url>/Picture%20Library/Upload.jpg 
    points to the old image
    what’s even more strange is that even after deleting the image the url still shows the old image at
    https://<Web Url>/Picture%20Library/Upload.jpg 
    I confirmed the same by actually repeating the same exercise on a picture Library in the User Interface
    Uploading an image say upload.jpeg in the picture library using SharePoint interface.
    Then uploading a different jpeg image keeping the same name upload.jpeg again in the picture library.
    In allitems.aspx thumbnail view and on dispform.aspx page preview filed image now show the newly uploaded image but when you click the preview image or click the link in the name field value it takes you back to the old image.
    I have seen this issue on environment where we have enabled form based authentication and the issue is not seen on another server where we have wss with windows based authentication.
    Has anyone noticed such behavior and is there any workaround to that!
    Thanks & Regards
    Saurabh Rustagi

    All,
    I had the same issue. 
    In my case, Blob Cache was enabled for the web application in which the image issue was occuring.
    I cleared blob cache, and after doing a hard refresh of my browser, the correct image was then displayed.
    To clear blob cache, do the following:
    Navigate to:   
    http://yourwebapp:port/yoursite/_layouts/objectcachesettings.aspx
    Select:  "Object Cache Flush"  and  "Force all servers in the farm to flush their object cache" check boxes
    Click the OK button
    Hope this helps.

  • Eliminate White Space in Picture Library Slideshow Web Part

    On my site, I am using picture library slideshow web parts on two different pages, and one of them is giving me trouble with unwanted white space between the photos and the back, pause, forward control buttons (see photo below).
    In an attempt to resolve this issue, I have tried numerous things. I have resized the width and height of the web part itself to many different sizes, but to not avail. I have cropped and resized all of the photos to be the exact same size of 300x200
    pixels. I have used CSS to display the photos to their actual size rather than the standard preview size. With all of this in mind, my second photo library web part on another page works perfectly. This was white space problem was only an issue until
    I resized/cropped the photos in that case. For this page, however, that solution is not working.
    Does anyone have any clue as to how I can remove this unwanted white space?
    Thank you!

    Hi Stacey,
    From your description, you would like to remove white space in picture library slideshow web parts. You used CSS to solve it however a web part still show white spaces.
    Please press F12 and see if there is div tag in white space, if there is, try remove it.
    http://365.webbrewers.com/Pages/webbrewerstest.aspx
    In addition, try edit web part properties > Display with > choose No Title or Description.
    Here is a similar thread for your reference:
    http://social.technet.microsoft.com/Forums/en-US/1e63661f-0183-44e7-843a-cca58a20cddc/remove-empty-space-in-picture-library-slideshow-web-part?forum=sharepointgeneralprevious 
    Regards,
    Rebecca Tu
    TechNet Community Support

  • Remove vertical scroll bar from table control

    hi,
    i had used table control in my application. i want remove vertical scroll bar from table control.
    At initial time in table control there is no vertical scroll bar. In my table control lines are dependent on internal table which i was used to fill it.
    i was used these code for to set table control lines.
    DESCRIBE TABLE IT_RISK_ZINRISEXC LINES EXC_LINE.
    TC_RISK_EX-LINES =   EXC_LINE .
    Initially there is no data in internal table so there is no vertical scroll bar. After getting value i am filling internal table. and there is scroll bar in my table control. but i does not want that.
    i was not selected RESIZING-VERTICAL OR -HORIZONTAL.

    Hi,
    From Scroll Bars in Table Control
    You can remove the scroll bar in the table control by switching off horizontal and vertical scrolling in the properties of the table control. The properties can be accessed from the screen painter by double clicking on the table control. Regarding the page up and page down functions, I believe you add those buttons in the screen layout and code for them. You can use the standard function code for the page up and page down functions.
    or
    You can get rid of the vertical scroll bars by not setting table control lines. This way the user can only see the visible lines of the table control. As for the horizontal scrollbar, just make sure that your table control doesn't contain too many fields.
    Regards,
    Raj.

  • Tree control bug for vertical scrollbar

    Dear all:
    I meet a problem with  tree control  vertical scrollbar.Pls check the picture
    If set the rows of the properties of the Tree control is a number, also set the vertical scroll bar is visible.
    Then if i set the height  of Tree is unchangeable, then set the Tree childs rows are  much more than the height, The problem is that  the vertical scroll bar doesn't work. The height is increase than what i have set ,Maybe it is a bug? or not.
    Anybody find this?
    Attachments:
    Image000011.jpg ‏66 KB

    Hello,
    I works fine with me.
    But I added my test as attachment, so you can see if you maybe doing something else.
    Kind regards,
    André
    Regards,
    André
    Using whatever version of LV the customer requires. (LV5.1-LV2012) (www.carya.nl)
    Attachments:
    Tree control bug question.vi ‏20 KB

Maybe you are looking for