Ajax Masthead Link formatting

I realize I can change the looks of the Ajax Masthead links with the theme.  However, recently I was working on creating a couple URL Aliases, and all of a sudden the formatting on the links in the Masthead were messed up.  The links I am talking about are the ones that say: "Back", "Forward", "History", "Favorites", etc.
Instead of nice buttons, they are now large black letters, and if you click on them the drop down menu is only text, no formatting.
Any idea what I did to mess this up, and how I can fix it?  I didn't make any changes to the Ajax masthead's code at all.  I have already restarted the portal server, but that didn't help.
Thanks,
Owen

I tried to transport the AJAX Masthead from our Production Portal back to our Development Portal to see if that would correct this problem, but it doesn't seem that it is possible to transport Standard content, is that correct?

Similar Messages

  • Referencing report columns in the BLOB download link format mask

    Hi there,
    In a basic report (Apex 4) I have a link to download a BLOB stored in the table. However to save space, instead of using 2 columns, one for the file name and one for the download link, I want to use only one column where the file name is the download link itself.
    To do this, I tried using this download link format mask (ATTACH_FILENAME is the report column that contains the file name):
    DOWNLOAD:ATTACHMENTS:ATTACH_BLOB:ATTACHMENT_ID::ATTACH_MIME_TYPE:ATTACH_FILENAME:::attachment:#ATTACH_FILENAME#
    However it shows #ATTACH_FILENAME# in all rows instead of the actual file name!
    I know that using substitution strings (&) works, so is there a way to also reference report columns in this format mask?
    Thanks
    Luis

    Luis, did you finally resolve this? I have the same question.

  • [svn:fx-trunk] 12077: Although Spark RichText does not support link formats , modifying compiled FXG to not generate ActionScript code that will cause compile time exceptions .

    Revision: 12077
    Revision: 12077
    Author:   [email protected]
    Date:     2009-11-20 18:16:32 -0800 (Fri, 20 Nov 2009)
    Log Message:
    Although Spark RichText does not support link formats, modifying compiled FXG to not generate ActionScript code that will cause compile time exceptions.
    Removing references to Flex Builder 3 in RPC.
    QE notes: N/A
    Doc notes: N/A
    Bugs:
    SDK-24305 - Link format property nodes cause errors on RichText in FXG 2.0
    SDK-24322 - A couple references to Flex Builder 3 in Flex 4 LangRef (and code comments)
    Reviewer: Deepa
    Tests run: checkintests
    Is noteworthy for integration: No
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-24305
        http://bugs.adobe.com/jira/browse/SDK-24322
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/rpc/xml/XMLDecoder.as
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/fxg/FlexFXG2SWFTranscoder.java

  • OData Feed Link Format for an Excel Workbook Stored in SharePoint

    I've heard it is possible to use an OData Feed Link to get data from an Excel Workbook that is stored on SharePoint 2013 online. Does anyone know the format for the link? I've been searching high and low and cannot get any specific format that works. Thanks!

    I received this from someone on our team:
    In PQ, click From File -> From Excel.
    In the file dialog that appears, paste in your site url (e.g. https://mycompany.sharepoint.com/teams/myteam).
    The file dialog will display the files stored in your sharepoint site. Navigate until you reach the desired excel file.
    Select it and click done.
    On the credential prompt, use Organizational.
    Let me know if it works for you.
    Ehren

  • CSS - Visited Link format won't apply

    Hello,
    The following is a column that I have in a table, and its cells are all hyperlinks that trigger some AJAX.  The hyperlink works great.  However, I would like the background color to turn white after the link has been clicked.  It seems like this could be easily done with CSS, but it's not working as I would expect.  Here is the code I have for the column:
    print "<td class='ballot'>".'<span class="button" id="button'.$row['id'].'">'.'<a href="javascript:;" class="cell1" id="'.$row['id'].'">'.Vote.'</a>'.'</span>'."</td>";
    I have the following CSS applied to the column:
    table.navbar td a.cell1:link {
       color: #000;
       background-color: #A7E6FE;
       text-decoration: none;
       text-align: center;
       vertical-align:middle;
       height: 14px;
    table.navbar td a.cell1:visited {
       color: #fff;
       background-color: #fff;
       text-decoration: none;
       text-align: center;
       vertical-align:middle;
       height: 14px;
    .ballot { width: 40px;
    a.ballot:visited {
       color: #FFFFFF;
       background-color: #FFFFFF;
    I would expect this CSS to make the column turn white (color #FFFFFF) after its link has been clicked, but it's not happening.  Any ideas why my CSS is not working?
    Thanks in advance,
    John

    OK, below I listed the entire table, and all of the CSS that applies.  The table has three columns, everything works great, but I want the background of the cells in third column to turn color #FFFFFF after they are clicked.  I do not want the background of the cell in the first column to change color when it is clicked.  Thanks.
    if(mysql_num_rows($result)>0){
    while($table=mysql_fetch_row($result)){
    print "<p class=\"topic\">$table[0]</p>\n";
    $r=mysql_query("SELECT * , votes_up - votes_down AS effective_vote FROM `$table[0]` ORDER BY effective_vote DESC")
    print "<table class=\"navbar\">\n";
    while($row=mysql_fetch_array($r)){
    $effective_vote = $row['votes_up'] - $row['votes_down'];
    print "<tr>";
    print "<td>".'<a href="http://'.$row['site'].'" class="links2">'.$row['site'].'</a>'."</td>";
    print "<td class='votes'>".'<span class="votes_count" id="votes_count'.$row['id'].'">'.number_format($effective_vote).'</span>'."</td>";
    print "<td class='ballot'>".'<span class="button" id="button'.$row['id'].'">'.'<a href="javascript:;" class="cell1" id="'.$row['id'].'">'.Vote.'</a>'.'</span>'."</td>";
    print "</tr>\n";
    print "</table>\n";
    else{
    print "None found";
    CSS:
    .topic
        width:500px;
        margin-left:250px;
        margin-top:30px;
        text-align: left;
        margin-bottom:3px;
        padding:0px;
        font-family:Arial, Helvetica, sans-serif;
        font-size: 25px;
        font-weight: bold;
        color:#000000;
    table.navbar {
           margin-left:250px;
        margin-top:30px;
        text-align: left;
        font-family: Arial, Helvetica, sans-serif ;
        font-weight: normal;
        font-size: 12px;
        color: #000000;
        width: 550px;
        background-color: #A7E6FE;
        border: 1px #FFFFFF;
        border-collapse: collapse;
        border-spacing: 4px;
        padding: 4px;
        text-decoration: none;   
    table.navbar td {
       border: 2px solid #fff; 
       text-align: left;
       height: 20px
    table.navbar td a{
       display: block;
       padding: 3px;
    a.links2:link {
         color: #000000;
        text-decoration: none;
         text-align:left;
        margin-top:5px;
        margin-bottom:2px;
        margin-left:2px;
        padding:0px;
        font-family:Arial, Helvetica, sans-serif;
        font-size: 12px;
        width: 150px;
        height: 14px;
        vertical-align:middle;
    a.links2:visited {
         color: #000000;
        text-decoration: none;
         text-align:left;
        margin-top:5px;
        margin-bottom:2px;
        margin-left:2px;
        padding:0px;
        font-family:Arial, Helvetica, sans-serif;
        font-size: 12px;
        width: 150px;
        height: 14px;
        vertical-align:middle;
    a.links2:hover {
         color: #000000; text-decoration: underline;
        text-align:left;
        margin-top:5px;
        margin-bottom:2px;
        margin-left:2px;
        padding:0px;
        font-family:Arial, Helvetica, sans-serif;
        font-size: 12px;
        width: 150px;
        height: 14px;
        vertical-align:middle;
    a.links2:active {
         color: #000000;
         text-align:left;
        margin-top:5px;
        margin-bottom:2px;
        margin-left:2px;
        padding:0px;
        font-family:Arial, Helvetica, sans-serif;
        font-size: 12px;
        width:150px;
        height: 14px;
        vertical-align:middle;
    .votes { width: 125px;
    .ballot { width: 40px;
    a.ballot:visited {
       color: #FFFFFF;
       background-color: #FFFFFF;
    table.navbar td a.cell1:link {
       color: #000;
       background-color: #A7E6FE;
       text-decoration: none;
       text-align: center;
       vertical-align:middle;
       height: 14px;
    table.navbar td a.cell1:visited {
       color: #fff;
       background-color: #FFFFFF;
       text-decoration: none;
       text-align: center;
       vertical-align:middle;
       height: 14px;
    table.navbar td a.cell1:hover, table.navbar td a.cell1:active {
       border: 0px solid #fff;
       color: #000;
       background-color: #00F0F0;
       text-decoration: none;
       text-align: center;
       height: 14px;

  • Masthead link in same window (Very urgent)

    Hi,
      How do we create a External link in Masthead that should open in current portal page frame.
    Thanks and Regards,
    Jack.

    Hi Jack,
    I am not sure the way I followed to achieve this is best way. I created a iView which is not visible in normal navigation. In masthead on click of link you call a function.
    <TD nowrap ><hbj:link id="Sitemap" tooltip="Sitemap" linkDesign="FUNCTION" reference="javascript:activateQuickSearch();"><hbj:textView nested="true" text="Sitemap"/></hbj:link></TD>
    Inturn this function calls that iView which is then open in portal framework and visible to user.
    function activateQuickSearch()
    EPCM.doNavigate(
    "ROLES://portal_content/MyComany/Roles/Generic/Sitemap")
    Hope it helps,
    Regards,
    Vishal

  • QuIcktime X does not support the .qtl media link format?

    In the past I have been able to view NASA TV with Quicktime. I just go to the site and click the Quicktime link... I found out last night when I upgraded to Snow Leopard's QT X that the .QTL format used to connect to streaming Quicktime media no longer works...
    What is the deal with that? QTL is a Quicktime format correct? It this just an outdated format?
    Edit: I had to use RealPlayer instead. Yikes!
    Message was edited by: JupiterGPL

    I can reproduce this problem and installing Quicktime 7 from the optional installs in the DVD does not address the problem. QTL files can be used for streaming - the user downloads the qtl file which contains a link to an rtsp stream which then opens in the player.
    http://developer.apple.com/legacy/mac/library/documentation/QuickTime/QT4WebPage /samplechap/special-11.html
    This is described here and has worked forever. We use this to provide an open stream in Quicktime option in our software product - which does not work in snow leopard.

  • Apex and Ajax tutorial link

    Hi,
    I want to use Ajax in my Apex application. How can I use it? Can anyone guide me to proper link or howtos or any example?

    Try this link, you should get plenty of examples on those pages.
    http://www.google.com/search?hl=en&q=APEX%2BAJAX&btnG=Google+Search
    Alexandre.

  • Link format changing according to browser

    I recently posted my site and found that when using various browsers, some links are showing up correctly, and some aren't - they should all be underlined and of the same colors. Is there something I can do in iWeb to correct this?
    Thanks in advance for the help.

    Make sure that the "Normal" and "Visited" colors are the same in the Link inspector Format window and that you have selected U for each one.

  • Font and Link Formatting

    I have made several posts where I have used bold headers. These appear fine in iWed but in Safari, only the first instance is bold. Also, link text is set to the default however in Safari the text is not a different color unless you roll over it.
    And, I have comment turned on. While this was working for awhile, after a republish, the comments feature disappeared, while still set to ON in the inspector.
    An example page is http://skarka.com/skarka/Blog/Entries/2009/12/4_NBComcast.html

    And, I have comment turned on. While this was working for awhile, after a republish, the comments feature disappeared, while still set to ON in the inspector.
    you post-edited your pages to add google analytics code, that is the problem.
    post-editing will cause problems with blog/podcast/photo commenting and attachment, this is a known issue from iweb1.
    the only way around this problem is using javascript to add GA code to the page, it's an extra bonus because it only be done once (much better than) instead of post-edit after every publishing.

  • Link Formatted Search to BP

    Hi
    I would like to attach a query to a UDF on the BP Master Data.
    When executed I would like it to display the results based on the current BP number on the header.
    What do I need to add to my query to acheive this.
    Thank you in advance.
    SELECT T0.[DocNum], T0.[CardCode], T0.[CardName], T0.[U_ABBA_SPuCall], T0.[U_ABBA_SRecDoc], T0.[U_ABBA_SBProdStat], T0.[U_ABBA_SBArtStat], T0.[U_ABBA_SBRecStat], T0.[U_ABBA_ProdSch], T0.[DocDate], T0.[DocDueDate], T0.[U_ABBA_IntNotes], T0.[DocTotal] FROM ORDR T0 WHERE T0.[DocStatus] = 'O' AND T0.[U_ABBA_SBProdStat] = '4'

    Hi,
    The formatted search can return multiple values back in a list.  Having multiple values though would not work well when auto-refreshing, but when running manually its fine.
    Change your query to be:
    SELECT T0.\[DocNum\], T0.\[CardCode\], T0.\[CardName\], T0.\[U_ABBA_SPuCall\], T0.\[U_ABBA_SRecDoc\], T0.\[U_ABBA_SBProdStat\], T0.\[U_ABBA_SBArtStat\], T0.\[U_ABBA_SBRecStat\], T0.\[U_ABBA_ProdSch\], T0.\[DocDate\], T0.\[DocDueDate\], T0.\[U_ABBA_IntNotes\], T0.\[DocTotal\]
    FROM ORDR T0 WHERE T0.\[DocStatus\] = 'O' AND T0.\[U_ABBA_SBProdStat\] = '4' AND AND T0.\[CardCode\] = $\[$-5.CardCode\]
    Regards,
    Adrian

  • SAP CRM Se61 - General text - Link - Format Character disable.

    Hi,
    I have enabled text in sap gui log on screen ( where we enter user id and password). Here i have a URL which i need to make as a link, wright now its like a character not a link, can any one help me how to make this as link.. in the sap gui log on scree..
    Iam trying to do this via.. Se61-general text- Zlogin.....
    Thanks,
    Arun

    I dont think SE61 will help.. rather you will have to change the screen element properties on the SAP GUI screen where you want this link.
    Regards
    Priyanka

  • Printing emails in conversational linked format

    Is there a way to save printing, and be eco-sensitive to print conversationally linked emails in a concatenated form to have all the files printed serially, and not on a separate peice of paper for every email, that often is only less than a quarter of a page?

    Fumbling around I think I found a solution.
    All of the incoming e-mails have a "See more from...." line in blue type at the bottom. When I click on the "See more from…"  line it opens up the entire chain of discussion which can then be printed on a single page. Exactly what I've been searching to do.
    Re: How to print multiple emails on one page 

  • Link colors and formats not WYSIWYG

    I'm having trouble with Link colors. I have the Link Format set to a certain colors but what I see after I publish my site is a crap shoot. Sometimes the change takes sometimes it doesn't, and often what I see in Safari 4/5 or Firefox is not the same as I have set in iWeb. And yes I force a page refresh by clearing the cache and reloading the pages every time.
    Any help would be greatly appreciated. So far I like how WYSIWYG iWeb is but this one problem has plagued me for some time now.
    John

    When you set the color use the Web Safe color pallet from the color pane:
    Click to view full size
    OT

  • Format function in Link Inspector

    Hi,
    May i know that how to fully utilize the Format function in the Link Inspector?I even unable to click on those format...mind to share the tips?!
    Thanks

    First that link format does not work for the navbar. It only works on text based links you add to the page. Once you've set up the URL in the Link pane you can go to the format pane and set the link, rollover, visited and disables formats. But you have to have the text link selected first. Thisdemo page may shed some light on it.
    OT

Maybe you are looking for

  • How do I scan with a Brother MFC-6890CDW

    Hi there, how do I control the scanning capabilities of a brother MFC-6890CDW multi-function printer? Is there an application to send a command from my laptop to initiate a scan? Cheers, Noah

  • Changes in Infotype 0001

    Hi, Is it recommended to make all changes in Infotype 0001 like PSA, Administrators through action like "Organization Reassignment" or should be changed through PA30. What is a recommended practice especially when there is a need to change the admin?

  • How to install license for Weblogic Server 6.1

    Hi, I downloaded WebLogic Server 6.1, it works fine. but I want to change the JDBC to Oracle (the default is Cloudscape). I follow the instructions in page "Installing WebLogic jDriver for Oracle". it looks fine until "java utils.dbping ORACLE james

  • Running older programs on OS X

    I've got some older mac games is there anyway to get them to run in OS X? it keeps telling me that they're not supported on the system, does OS X not support older software? or am I doing something wrong?

  • Keyword search with exact phrase

    When I use the filter bar to search for photos I normally don't find myself in this situation. But now when the photos reaches 10 000+ this will be a problem. The searchfunction in LR does not support serching for an exact phrase like the exact phras