Gemini Community Support Site

This Gemini community support site can be used to find solutions to product issues. You can log in using Open Id, Google Profile and even Facebook. Feel free to ask a question or browse FAQs and documentation. Product tour videos are also available along with how-to videos demonstrating key Gemini capabilities.




View issue headings too wide v3.1.2

web-app

I have just upgraded from 3.0.4 to 3.1.2 and like the new slightly tweaked look.

However whenever I view an issue now, the page display is pushed way out to the right, with the right hand panel squashed and not easily accessible without sideways scrolling.

I think this is caused by the font size of the headings for Comments, Attachments, Issue Watches etc.

Is this easily fixable, being addressed or do I have to dive into the style sheets of the web site to fix it up?

On another similar query, I would like the default font used when creating an issue to be Arial, not Times Roman. Where can I set this?

AJM
· 1
AJM
Replies (4)
helpful
0
not helpful

This will be fixed in 3.5.

You can fix it by opening the relevat CSS file under the theme that you are usin. i.e: C:\Program Files\CounterSoft\Gemini Project Issue Tracking\Gemini Web Application\App_Themes\Default\Default.css

At the bottom of the file you will find the tab styles, change the font size to 14px:

tabItem, .tabItem > a
{
background-color: white;
font-weight: bold;
font-size: 14px;
text-decoration: none;
cursor: pointer;
}
.tabItemSelected, .tabItemSelected > a
{
background-color: #E2E0E0;
color: gray;
font-weight: bold;
font-size: 14px;
text-decoration: none;
cursor: default;
}


Saar Cohen
· 5000
Saar Cohen
helpful
0
not helpful

Great information!  This will be much appreciated by our users. 


acasey
· 1
acasey
helpful
0
not helpful

Many thanks. Love your work.


AJM
· 1
AJM
helpful
0
not helpful

FYI - Changing the default font for the editor:

Open the RichText.ascx file (under the controls directory). Add the following between the radeditor declaration:

<telerik:RadEditor runat="server" ID="RadEditor1"
    Skin="Default2006"
    ToolsFile="~/controls/RAD/EditorTools.xml"
    EditModes="Design, Preview">
    <CssFiles>
      <telerik:EditorCssFile Value="~/EditorContentArea.css" />
    </CssFiles>
    <TemplateManager
     ViewPaths="~/controls/RAD/UserTemplates"
     UploadPaths="~/controls/RAD/UserTemplates"
     DeletePaths="~/controls/RAD/UserTemplates"
     />
    <ImageManager  EnableImageEditor="true"
     ViewPaths="~/controls/RAD/UserImages"
     UploadPaths="~/controls/RAD/UserImages"
     DeletePaths="~/controls/RAD/UserImages"
     >
     </ImageManager>
     <DocumentManager
     ViewPaths="~/controls/RAD/UserDocuments"
     UploadPaths="~/controls/RAD/UserDocuments"
     DeletePaths="~/controls/RAD/UserDocuments">
    </DocumentManager>
    <Content>
   
</Content>
    <SpellCheckSettings SpellCheckProvider="PhoneticProvider" WordIgnoreOptions="None" />
</telerik:RadEditor>

Now create a file called EditorContentArea.css in the root of the Gemini web app and put the following in it:

body
{
    font-family: Arial, Verdana, Tahoma !important;
    font-size: 10pt !important;
}


Saar Cohen
· 5000
Saar Cohen