Tagged Questions
0
votes
1answer
33 views
How to display customized navigation on website?
I have a publishing site with two languages:
English
Arabic
These sites have the following pages:
English
- Home
- About Us
Arabic
- منزل
- حول بنا
I want to display navigation on top ...
0
votes
2answers
94 views
Users can't see css on my visual webpart
I'm trying to add some css on my webpart for the first time in SP2010. But for some reason the css only works when you visit the site on the sharepoint server. I belive it's the href path because it ...
0
votes
2answers
70 views
Styling individual webparts
I've got a publishing site where webparts need to look different based on which siteType they are in.
Got a 3 webpart styles (each style can be applied by simply adding a class to the top level ...
0
votes
1answer
43 views
Using a data binding expression in a css style
This may not be possible but thought i would ask. Creating a Sharepoint webpart. In the ascx file i have a style tag. Is there any way that i could do the following:
<style ...
2
votes
1answer
79 views
How can I fit a Datatable only into a webpart (not page) dynamically?
I develop a Webpart, which should be deployed in other SP-Farms.
The Webpart contains a DataTable.
I deployed the solution and the DataTable appears in the right side of the Website.
I'm using a ...
2
votes
3answers
3k views
How to add javascript and css to a SharePoint 2010 webpart?
What is the proper way (i.e. without having to manually copy the assets to any sharepoint folder or anything like that) to add custom javascript and CSS to a SP 2010 web part?
I would like them to be ...
1
vote
2answers
358 views
Icon-based menu that dynamically changes based on permissions
We're trying to create an square grid, icon-based menu that is permission trimmed (certain icons appear based on your specific SP permission group), that dynamically rearranges the icons based on your ...
0
votes
2answers
436 views
change font in web part
Is there a way to change the font in OWA web part for calendar? The fonts are so big and wont fit in the area where web part is. Please suggest.
1
vote
2answers
481 views
Hide selection in webpart - .ms-WPHeaderTdSelection {display:none}
Hiding the selection is not working.
<style type="text/css">
.ms-WPHeaderTdSelection {display:none}
</style>
Here is the working code:
<style>
/*--------Hide the ...
1
vote
2answers
364 views
Disable horizontal scrolling in WebPart
From codebehind I add to my webpart controls
_grid=new SPGridView()
HtmlGenericControl div = new HtmlGenericControl("div");
div.Attributes.Add("id", "div-datagrid");
...
2
votes
1answer
1k views
How can I override default css in SharePoinrt 2010 web parts
I would like all my custom webpart and default webparts to look the same.
I know css classes like:
ms-vh and ms-vb are used for the fonts, anchors and cell backgrounds.
What would be the best way to ...
4
votes
2answers
3k views
Understanding problem: How to add a stylesheet to a web part
Well, I try to add a css stylesheet to my web part but it didn’t work… I read that there are many ways to a css file into a web part, but I didn’t understand them….
First I installed the Sharepoint ...
1
vote
2answers
2k views
How can I apply custom styles/formatting to an out of the box web part?
I have a list of links stored in a Sharepoint List, and have them displayed in the standard list-item-displaying web part. I would like to have this web part formatted (perhaps with CSS) in a custom ...
0
votes
1answer
102 views
What is the tag for web part description?
I would like to edit the font of the description in my RSS Viewer Web Part. What is the css tag for the description?
I tried .description, which was provided from ...