Spacing in Search and Index panes

Please could someone advise me how to add padding to the Search and Index panes? I've edited the whthost.js file to apply spacing to the Table of Contents and that worked fine. However, I've tried editing the whfhost.js and whihost.js files in the same place for the Search and Index panes respectively, but changes to these files don't affect the output.
PS. I'm using RH8 and outputting to WebHelp.
Many thanks
Jonathan

In the Navigation Pane > Index > Setting a different color or background for the Index Input heading area topic, see the reference to image and color. However, the font stuff is there, too. Copy the skin somewhere, first, then try adding stuff like margin-bottom:5px inside the <font> tag and see what you get.
  <subpane name="Index">
   <image></image>
   <color>background:White alink:#d9e4da hover-color:#173a81</color>
   <font>font-family:Tahoma font-size:8pt font-weight:Normal font-style:Normal text-decoration:none font-sizeadjust:none font-stretch:normal font-variant:normal font-color:Black</font>
   <inputbox>
    <image></image>
    <color>background:White</color>
    <textbox width="0"/>
    <title>
     <text>::??DefaultWebSkinText??::</text>
     <font>font-family:Tahoma font-size:8pt font-weight:Normal font-style:Normal text-decoration:none font-sizeadjust:none font-stretch:normal font-variant:normal font-color:Navy</font>
    </title>
    <button mode="none">
    </button>
   </inputbox>
  </subpane>
Good luck,
Leon

Similar Messages

  • Search and index functions don't work with merged projects

    Until this morning, the search and index functions in my RoboHelp project worked okay; I have one Main project into which I have merged more than three dozen sub-projects.  About an hour ago, I created a new sub-project and merged it into the Main project; now, it's as if the topics in my merged projects don't exist.
    Any suggestions?
    thanks,
    Lon

    So when you open the merge you see all the content, it is just the search and index not working. This must be merged CHMs as you are talking about a Favourites tab so maybe your other comment is relevant. My understanding of merged CHMs is that you do not want spaces in file names, that could be the problem.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • CS 4 vs CS 3 - Quick Search and Indexing Improvements???

    Our firm is currently using CS3 Bridge and Spotlight for image archiving and retrieval.  The indexing time is horrendous
    given the volume and size of images.  The Spotlight interface is not that intuitive and looking at solutions
    that include upgrading to CS4.  I would greatly appreciate any feedback regarding CS4 and potential
    improvements with search and indexing of images.

    As a big fan of Bridge I sure would advice you to upgrade to CS4 because it
    is a far more stable version. However I use it not for Digital Asset
    Management and I also think Bridge is still not ready for this job because
    they still have no good cache management system for it.
    It is an exclelent application for ingestion files, sorting, rating adding
    metadata renaming and start to develop in ACR. For this I use it daily to
    great satisfaction.
    However I have an archive with over 40.000 files in it and I have tried to
    use Bridge to index it. Not very succesful I have to confess.
    I recently switched from Media Expression (before Microsoft took over it was
    called iView Media Pro) to the single user version of Canto Cumulus.
    Although both mentioned DAM applications are not free they are well worth
    the money (Canto is a little more expensive but again worth the money)
    You can get a trial version for both DAM, just try them to see which will
    suit you the best.
    Also download the CS4 trial, this is certainly a good investment as you will
    discover after you have tried it
    Over 30,000 photos.

  • SOON: Advisor Webcast - WebCenter Content: Database Searching and Indexing

    Learn how to improve search performance by attending the 1 hour Advisor Webcast: WebCenter Content: Database Searching and Indexing on March 15, 2012 at 16:00 UK / 167:00 CET / 08:00 am Pacific / 9:00 am Mountain / 11:00 am Eastern. For details, go here https://support.oracle.com/CSP/main/article?cmd=show&type=NOT&id=1399682.1.
    TOPICS WILL INCLUDE:
    * Optimize the database index for faster searching
    * Locate WebCenter Content problematic queries
    * Use SQL Developer to find explain plans and profile SQL statements
    * Configure WebCenter Content to tweak search settings
    Edited by: user754652 on Jan 30, 2012 7:44 AM
    Edited by: user754652 on Mar 7, 2012 7:09 AM

    Hi All,
    Not sure if this is the right forum however I am not able to find the installation for Release 11gR1: 11.1.1.7.0 at http://www.oracle.com/technetwork/middleware/webcenter/content/downloads/index.html
    Any pointers where can I download from?
    Thanks

  • Search and index for child projects

    Hello I have a merged RoboHelp 9 project.  Is there a way I can setup the project so that when the user does a search, the child projects are searched as well as the master?  Is there a way that I can used the Smart Index Wizard from the master project to produce an index which includes the child projects as well as the master.  Thank you for any help you can provide.

    Welcome to our community, Steven
    Sorry for slowness, forums seem hit or miss today.
    What you are describing is exactly how a merge should operate. All projects that are part of the merge should be properly searched and an Index would work across all projects. Because of this, I'm struggling to see a need to index everything from only the Master.
    As you likely already know, the Smart Index Wizard simply scans topics and auto-maps them to keywords in whatever project you have open.
    Sorry, but there is no way I'm aware of for the Smart Index Wizard to be used from the Master and coax it to index child projects. It's an interesting thing to consider and I would heartily encourage you to submit a Wish Form to ask for this functionality to appear in a future release. You do this using the Wish Form. (link to the Wish Form is in my sig)
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7, 8 or 9 within the day!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • Case insensitive search and index

    I have to execute a case insentitive search.
    I created this index on a not null field:
    create index indx_prova on
    table (nlssort(campo, 'NLS_SORT=BINARY_CI'));
    The select is:
    select * from tabella where campo like 'A storage%'
    This select should retrive 5 records:
    A storage ring for crystalline beam studies
    a storage ring for crystalline beam studies
    A Storage Ring for Crystalline Beam Studies
    A storage ring for crystalline beam studies
    A storage ring for crystalline beam studies
    Instead I got only 3 records:
    A storage ring for crystalline beam studies
    A storage ring for crystalline beam studies
    A storage ring for crystalline beam studies
    So The query isn't case insensitive.
    I can't set nls_sort=BINARY_CI and nls_comp=LINGUISTIC at level session.
    Is there a solution.
    Am I doing something wrog?

    I set alter session set nls_comp=LINGUISTIC; alter session set nls_sort=BINARY_CI;
    I create this index:
    create index titolo_indx on
    table (nlssort(campo, 'NLS_SORT=BINARY_CI'));
    If I execute this query:
    select * from ri01_prodotti where titolo like 'A storage ring f%'
    Oracle doesn't user the index.
    SQL_ID 7yvspnyf96vp8, child number 0
    select * from ri01_prodotti where titolo like 'A storage ring%'
    Plan hash value: 350479533
    | Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
    | 0 | SELECT STATEMENT | | | | 2020 (100)| |
    |* 1 | TABLE ACCESS FULL| TABLE | 1 | 1365 | 2020 (1)| 00:00:25 |
    Predicate Information (identified by operation id):
    1 - filter("CAMPO" LIKE 'A storage ring%')
    If I execute a query with =, oracle use index.
    select * from table where campo ='A storage ring for crystalline beam studies'
    SQL_ID 5jzr5nm6b37pq, child number 0
    select * from ri01_prodotti where titolo ='A storage ring for crystalline beam
    studies'
    Plan hash value: 3866031381
    | Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
    | 0 | SELECT STATEMENT | | | | 151 (100)| |
    | 1 | TABLE ACCESS BY INDEX ROWID| RI01_PRODOTTI | 377 | 502K| 151 (0)| 00:00:02 |
    |* 2 | INDEX RANGE SCAN | TITOLO_INDX | 151 | | 3 (0)| 00:00:01 |
    Predicate Information (identified by operation id):
    2 - access("RI01_PRODOTTI"."SYS_NC00078$"=HEXTORAW('612073746F726167652072696E6720
    666F72206372797374616C6C696E65206265616D207374756469657300') )

  • Search and index across child projects seem inconsistent.

    Hi
    I created a new Master project and added a child project using RoboHelp 9 HTML to created a Microsoft HTML file.  When I open the Master's chm file, I can view the index for the complete project (master and child) as well as do a search across the entire project.    Then I added another child project (after creating an index in the child) and rebuilt my master.  New when I view the new master chm file, the index does not include second child, although it does included the first child, and the search does not search the second child.  Any help would be greatly appreciated.

    Thank you very much Amebr.  Your answer was right on the mark.  I think I discovered how the path was hard-coded.  I will describe what happened in case anyone else has a similar situation.
    Below  is a copy of the "MERGE FILES" section of my master project's HPP file.  I removed the "!SSL!\Microsoft_HTML_Help\" from "!SSL!\Microsoft_HTML_Help\FOCUS_Utility.chm".  But when I regenerated the master project, the path ("!SSL!\Microsoft_HTML_Help\") was re-added to the file name and the problem persisted. 
    The difference between " Weight_Module.chm" "Deckhouse_Module.chm" and the other merged files is that I imported them for outside of the folder containing the master project's files.   With the other files I coped them to the "!SSL!\Microsoft_HTML_Help\" of the master project before I merged them in the TOC of the master.  To fix the problem I had to:
    remove the projects from the mater's TOC
    Remove the line in the "[MERGE FILES]" section of the master project's .hhp file
    copy the merged files' chm to a folder outside of the master's folder.
    Remerge the merged ( or child) project in to the TOC of the master project and let RoboHelp copy the merged chm file into the masters "!SSL!\Microsoft_HTML_Help\" folder.
    Regenerated the master project.
    [MERGE FILES]
    Weight_Module.chm
    Deckhouse_Module.chm
    !SSL!\Microsoft_HTML_Help\FOCUS_Utility.chm
    !SSL!\Microsoft_HTML_Help\PRFMNC.chm
    !SSL!\Microsoft_HTML_Help\Performance_53.chm
    !SSL!\Microsoft_HTML_Help\Payloads_Utility.chm

  • Office 2010 Outlook Search and Indexing not working

    Hello,
    I'm hoping someone may be of assistance as this has been plaguing my outlook for some time now.
    Problem:
    When attempting to search for any emails via the search bar, it appears as if it is attempting to search, but I receive no results. 
    Windows 7 x64 Service Pack 1
    Office 2010 Service Pack 2
    Connected to Office 365 Exchange
    In services Windows Search service is not running, though Automatic (Delayed Start is selected), I attempted starting the service but it returned with an error saying it started and then stopped.
    In Outlook options > Search > Indexing Options > the service is shown as "Indexing is not Running" and the list of indexed folders is empty. Everything else is grayed
    out except "Advance Tab" which only has one button available called "Rebuild", everything else is grayed out.
    I am aware this question was asked a few years back but the linked articles referenced are no longer working.
    Though I seem to be having a similar problem and any assistance and new suggestions would be greatly appreciated!

    Hi,
    Please check if you can search mailbox in OWA. If OWA works well, the issue is related Outlook.
    If it is the same issue in OWA, in Exchange 2013, you can use the following command to check the content index state of the mailbox database where this user is.
    Get-MailboxDatabaseCopyStatus | fl name, contentindex*
    If the content index status is Failed, please try to reseed the search catalog. After that, please rebuild the index in Outlook to check the result.
    If you are using Office 365, I recommend you ask this question in Office 365 forum which is staffed by more experts specializing in this kind of this problem. You might get a better answer there.
    http://community.office365.com/en-us/forums/default.aspx
    Best regards,
    Belinda
    Belinda Ma
    TechNet Community Support

  • Google search and indexing...

    I have a Google related question. I changed the title tag of
    a couple of my pages but google still sees the old tag. Is there a
    time period before it changes or is there something I have to
    do.

    I skimmed through the thread in the Webmaster's forum and I would say that it all irrelevant.
    All this stuff about....
    "I have been told that part of the problem with the site is the the index.html file that is in the root folder of the site redirects the robots.txt file via meta refresh to Site/Home.html but the crawler does not follow meta refreshes and subsequently fails to crawl the site."
    I would say your main problem is that you have committed one of the greatest SEO Sins known to webmasters - using a splash page as your Home page.
    The index.html file redirects to the Home page and this is where the spiders start looking for relevant and interesting text. All they find on your Home page is one word "Welcome"!
    If the text that's on your About page was on the Home page the spiders would love you and Google would be happy to include you in their search results because they would then have found something to index.
    Interesting and relevant text containing your keywords is the highest priority in SEO. Don't call your Home page "Home" call it LPY-Cycles. Use keywords in the page names, headings text and caption every image and movie with descriptive keywords.
    Instead of "Contact" use something like "Contact-LPY-Cycles". Get your keywords into the URLs via the page names. The page URLs are the first contact the spiders have with your website via the sitemap.xml.

  • Reading (and searching, use of TOC and index) Acrobat files offline

    OK - I have tried several things in effort to read PDFs offline.
    The 'tools' that allow me to access these files PDFReader Pro and GoDocs are incapable of doing searches, use TOC, and index.. It is basically a picture of a PDF. They also present it in the linear form where I need to actually scroll the 343 PAGES to get to the information I want to read mid-way into the document.
    Is there a realistic tool that actually properly presents PDF files offline and allows it to be used as it was intended? OOPS - correction Safari cant display this right either.... never mind ....
    Thanks
    Message was edited by: EmbeddedGeek
    I removed an erroneous statement that safari can properly display PDFs - it can't provide search, index/toc accesses. Bogus!

    On a possibly related note, see http://reviews.cnet.com/8301-13727_7-20004258-263.html?tag=mncol;txt for a way to ADD stuff to the TOC. I'm just passing this along, I haven't tried it.
    Doug

  • Search threshold and index strange thinks..

    Hi,
    I have a directory server 6.2 server with 60000 entries, the DS is used by lot of applications running in our environment. I have half of query that return in the access/error Logs that the search was unindexed. At the moment I have all the DB in cache and the threshold is set to 30000(very high).To understand better the problem, I have set the error log level to err-function-calls, so I have all the information we need for trouble shutting.
    Problem:
    If I perform an ldapsearch like this:
    ldapsearch -h 10.248.156.52 -p 20389 -D "cn=dmanager" -w - -b "ou=people,dc=unicredito,dc=it" '(&(sn=pippo*)(givenname=*))'
    the search is done in the correct way(the search was indexed)
    but if I try to do this search(the one used by our application):
    ldapsearch -h 10.248.156.52 -p 20389 -D "cn=dmanager" -w - -b "ou=people,dc=unicredito,dc=it" '(&(givenname=*)(sn=pippo*)(usorganizationcode=US))
    the search return notes=U in the access Log, and in the error I saw that the DS first try to mach :
    usorganizationcode=US and givenname
    the result was all identries need to be scanned ,the DS seems to ignore the (sn=pippo*), the threshold limit was exceed and the search consume lot of CPU and RAM.
    So I want to know, how can I perform a search with this kind of filter:
    (&(givenname=*)(sn=pippo*)(usorganizationcode=US))
    by using indexes and cache ? It is possible ?
    Regards Fabrizio

    Hi Fabrizio,
    we had a similar issue, searches with 3 filter elements were unindexed when the first 2 filter elements could not be used for the search. We have a hotfix for it, if you have a valid support contract you should be able to get it (if it's the same issue). The bug ID is 6527909.
    Regards,
    Holger

  • PDF searches and how to best index/catalog files.

    Dear members:
    Please forgive me if my questions are rather basic but I haven't been able to find the exact answers I am looking for in order to address my project needs.
    I have a folder where I keep all of my PDF files. These are all articles from medical journals that I keep organized using a browser application specific for these types of articles. The application allows me to search these articles but it only looks for specific keywords (title, author name, date, journal name and keyword just to name a few). However, it doesn't look at the content of the PDF file to find words that are contained in the body of the article itself.
    I would like to be able to use Acrobat to search these articles and try to find words I am looking for in the entire article instead of being restricted only to keywords. These are the questions I have:
    1. What is the best way to index these PDF files so that they can become searchable ?
    2. Is there a way to find out if they have already been indexed by the publishing company so that I avoid wasting time by doing it again ?
    3. My library now contains approximately 15,000 articles and I expect it to grow to at least 30,000. How can I handle these searches so that performance doesn't become an issue ? Is there a way to ensure that Acrobat can search these number of files without taking a long time ?
    4. I understand from the help files that Acrobat can search an entire folder so I don't have to run my search one article or file at a time. Is this correct ? What is the best way to run my search so that Acrobat looks at all files in one folder ? In this folder I have subfolders (subdirectories) ? Will Acrobat look at all files when searching including those in subdirectories within the specified directory ?
    Thank you in advance for your help and replies.
    Best regards,
    Joseph Chamberlain

    Hi Joseph,
    1. Acrobat Professional ships with the ability to create full text indexes of folders called Catalog. The indexes generated by Catalog can be used by Acrobat or Reader program to quickly search large collection of documents. Here are couple of documents that will give you the idea:
    http://blogs.adobe.com/acrolaw/2007/06/full_text_search_of_pdf_using_ad.html
    http://www.adobe.com/designcenter/acrobat/articles/acr7at_pdfindex.html
    2. I don't think so
    3. When you use Catalog on an already existing index, you will get an option to either "Build" or "Rebuild". The former would scan the documents and process only the new, deleted or changed documents. Rebuild would build the index from scratch - slower but gives faster searches. You can also schedule building indexes at regular interval using a scheduler.
    4. Yes.
    Use advanced search and select the folder you wish to search on.
    This would however be slower than searching a Catalog generated index.

  • How can I search and find all files modified since december 1st 2010

    I just want to see all the files that have been modified on my Windows Server 2008 since December 1, 2010.  I want to see if there is anything unusual.  Is this possible without 3rd party software?
    I support 2 Windows Server 2008.  On one of them, I can't seem to get any advanced search options until I type at least one character in the name of the file I am searching for (but I want to search all files).  Even then, the search is slow, it
    tells me it did not bring back all results because there are too many and the results window is too awkward to navigate.  On the second server, when I click in the search box, it has buttons I can click, one is "Date Modified" but they only have predefined
    options like "Last week" and "yesterday".
    Every version of windows explorer gets worse and worse at searching.  I rarely use it anymore.  I usually install "Search Everything" from voidtools.com.  You can download, install, index, and search and get your results all more quickly than
    finding the results in windows explorer.

    Hi,
    It should be caused that Windows Search is not installed on the second server. See following steps to install it:
    1) Start Server Manager
    2) Click on Roles in the left navigation pane
    3) Select Add Role in the Roles Summary pane to the right
    4) Select the File Services role and click Next
    5) Select the Windows Search role service and Finish the wizard.
    Meanwhile, when you search for a file such as "data", input keyword data and click the Advanced Search at the bottom to result box. Then you can select "Data and modified" and "is after" December 1, 2010
    Shaon Shan |TechNet Subscriber Support in forum |If you have any feedback on our support, please contact [email protected]

  • How do I open WebHelp to display Search or Index

    I tried searching for a previous post on this (as I was sure there would be one) but cannot find a prior posting...
    I have RH8 and am building WebHelp. My skin opens the TOC by default.
    We are moving from a CHM file deployed on client desktop to a call from the desktop GUI to our server-deployed WebHelp.
    This will allow us to update the help globally for all clients at one time without any push out to clients to install locally.
    Our GUI has a Help menu with TOC, Search, Index options.
    My skin in WebHelp opens to TOC by default.
    The calls to help work fine and open the TOC view and we have the context sensitive help working fine.
    How do we call WebHelp but open to the Search or Index view of the frameset?
    As always, thanks to all for any guidance.

    Not sure what you mean by "promote". I am not looking to change the default navigation pane as I want the TOC to display on generic opening. This question is related to calling the WebHelp based on the menu option in the application and allowing the navigation pane to open at TOC or Index or Search based on the selection of either Contents, Index or Search menu options available from the desktop application Help menu.
    After some additional research, I was seeing references to calling the ShowWebHelp function. I found the API folder in my Program Files/Adobe/RoboHelp folder that subfolders for each type of implementation (i.e., JavaScript, VB.NET). It appears these subfolders have the supporting API functions to call help from an application. I looked in the JavaScript subfolder and there is a JavaScript file RoboHelp_CSH.js that has the ShowWebHelp function that allows you to call the WebHelp and specify the navigation pane that is displayed.
    Is this how we call help from an application and open in a specific navigation view?

  • Difference between a partition and index

    In BW how does an index differ from a partition? Thanks

    Hi,
    Partitioning works on the Binary Search functionality.The data is divided into parts and stored logically.Depending on the variable input the data is fetched intelligently through Data Mining concept.
    For eg: if you have 120 records of Customer say 10 records per month and you have done a partition on 0CALMONTH.
    So now the data will be stored in 12 sets of 10 each for a year data.Now depending upon your input say you put June month along with other selection then it will hit only the set for June month.So instead of searching for all over 120 records it will search only in that 1 set of 10 records.This improves query performance.
    However, the restriction is that partitioning can be done only on time variable.
    Whereas, Indexing works like the Primary Index or Key field of an R/3 table.
    More the Index better the search and query performance.But again the flip side is it will complicate the design to provide Index on many fields and data loading time would be increased.Any changes and you would require to drop the index then reload and then again rebuild the Index.The number of Indexes to be used to improve query performance is a compromise between designs.
    Hope this helps.

Maybe you are looking for