Header for all pages

I am new to CSS, how do I use the same header and navigation
bar menu for all my web pages. Here is the CSS code:
/* global */
html{height: 100%;}
body
{ font-family: arial, sans-serif;
padding: 0px;
margin: 0px;
font-size: .78em;
p
{ margin: 0px;
padding: 0px 0px 16px 0px;
line-height: 1.7em;
h1
{ font-family: serif;
font-size: 108%;
letter-spacing: .1em;
h2
{ margin: 0px;
padding: 0px 0px 4px 0px;
font-size: 100%;
letter-spacing: .1em;
font-weight: normal;
text-decoration: underline;
img{border: 0px;}
a{outline: none;}
/* image positioning - left, right and center */
.left
{ float: left;
padding: 0px 8px 0px 0px;
.right
{ float: right;
padding: 0px 0px 0px 8px;
.center
{ display: block;
text-align: center;
margin: 0 auto;
/* block quote */
blockquote
{ margin: 20px 0px 20px 0px;
padding: 10px 20px 0px 20px;
border-left: 8px solid;
/* unordered list */
ul
{ margin: 8px 0px 0px 16px;
padding: 0px;
ul li
{ list-style-type: square;
margin: 0px 0px 11px 0px;
padding: 0px;
/* ordered list */
ol
{ margin: 8px 0px 0px 24px;
padding: 0px;
ol li
{ margin: 0px 0px 11px 0px;
padding: 0px;
/* margin lefts / margin rights - to centre content */
#main, #links, #footer, #logo, #menu, #content
{ margin-left: auto;
margin-right: auto;
/* main container */
#main{width: 850px}
/* header */
#header
{ width: 100%;
height: 87px;
/* logo */
#logo
padding: 1;
float: left;
margin: -25px 15px 0px 15px;
#address
{ padding: 11px 17px 0px 14px;
float: right;
text-align: right;
#address p
{ padding: 0px;
margin: 0px;
#logo h1
{ font-family: verdana, arial, sans-serif;
margin: 0px;
padding: 18px 0px 0px 0px;
font-size: 160%;
letter-spacing: .3em;
#logo h2
{ font-family: verdana, arial, sans-serif;
margin: 0px;
padding: 5px 0px 0px 0px;
font-size: 100%;
letter-spacing: .2em;
/* navigation menu */
#menu{margin: 0px 15px 0px 15px;}
#menu ul
{ height: 38px;
margin: 0px auto;
#menu li
float: right;
margin: 0px 0px 0px 0px;
padding: 0px;
list-style: none;
#menu li a, #menu li a#selected, #menu li a:hover
{ font-family: verdana, arial, sans-serif;
display: block;
float: left;
height: 7px;
text-decoration: none;
margin: 5px 12px 0px 4px;
padding: 7px;
text-transform: uppercase;
font-size: 80%;
#links
{ float: right;
width: 100px;
text-align: right;
padding: 0px 18px 0px 0px;
/* sidebars */
.sidebar
{ float: left;
width: 194px;
padding: 16px 15px 15px 15px;
/* sidebar items / links */
.sidebaritem
{ text-align: left;
width: 194px;
float: left;
margin: 0px 0px 11px 0px;
padding: 0px 0px 0px 0px;
.sidebaritem h1, .sidebaritem h2, .sidebaritem p{margin: 0px
10px 0px 10px}
.sidebaritem h1
{ font-weight: normal; padding: 8px 0px 16px 0px;
text-transform: uppercase;
.sidebaritem p
{ line-height: 16px;
padding: 0px 0px 8px 0px;
.sidebaritem a, .sidebaritem a:hover
{ padding: 0px 0px 2px 14px;
text-decoration: none;
.sbilinks ul{margin: 0px 0px 18px 10px;}
.sbilinks li
{ list-style: none;
padding: 0px 0px 0px 0px;
margin: 0px 0px 5px 0px;
.sbilinks li a, .sbilinks li a:hover
{ height: 16px;
text-decoration: none;
width: 149px;
/* page content (centre) */
#content
{ text-align: justify;
width: 384px;
padding: 11px 9px 15px 9px;
margin-top: 16px;
float: left;
#content h1
{ font-family: arial, sans-serif;
margin: 5px 0px 12px 0px;
font-size: 128%;
font-weight: normal;
text-transform: uppercase;
#content a, #content a:hover
{ padding: 0px 0px 2px 0px;
text-decoration: none;
/* footer */
#footer
{ height: 44px;
padding: 18px 0px 4px 0px;
font-size: 80%;
text-transform: uppercase;
font-family: verdana, arial, sans-serif;
clear: both;
text-align: center;
border-top: 2px solid;
margin: 4px 15px 4px 15px;
#footer a
{ text-decoration: none;
padding: 0px 0px 2px 0px;
border-bottom: 1px dashed;
#footer a:hover
{ text-decoration: none;
padding: 0px 0px 2px 0px;
border-bottom: 1px solid;
/* Based on Nifty Corners: rounded corners without images */
/* By Alessandro Fulciniti */
http://www.html.it/articoli/nifty/index.html
.rtop, .rbottom, .mtop, .mbottom{display: block;}
.rtop .r1, .rtop .r2, .rtop .r3, .rtop .r4,
.rbottom .r1, .rbottom .r2, .rbottom .r3, .rbottom .r4,
.mtop .m1, .mtop .m2, .mtop .m3, .mtop .m4,
.mbottom .m1, .mbottom .m2, .mbottom .m3, .mbottom .m4
{ display: block;
height: 1px;
overflow: hidden;
.r1, .m1{margin: 0 5px}
.r2, .m2{margin: 0 3px}
.r3, .m3{margin: 0 2px}
.rtop .r4, .rbottom .r4, .mtop .m4, .mbottom .m4
{ margin: 0 1px;
height: 2px

On Fri, 26 Oct 2007 12:44:42 +0000 (UTC), "beau123"
<[email protected]> wrote:
>I am new to CSS, how do I use the same header and
navigation bar menu for all
>my web pages. Here is the CSS code:
>
Not really anything to do with css.
If it's a small site - you could use templates - have all the
common
code in the template.
But rather better to use service side includes ( SSI ) to
contain the
common items such as top banners, navigation, footers etc
use Dw's help facility - search for Templates and server side
include
~Malcolm N....
~

Similar Messages

  • How to make a header for all pages

    hi all
    i'm new to jsf
    i use jdeveloper 10
    i want to use a toolbar and a menubar as a header for all my pages
    i want to use it as a user control or a library that i call from any page
    can i put my components in a tag library
    or how i behave
    thnks for reading
    George Gameal
    junior java developer
    Edited by: user10717543 on Dec 16, 2008 11:04 PM

    George,
    Is JDev 11 a possibility? There is support for page templates in version 11?
    John

  • SSRS subreport with a sub-report as header on all pages

    Hello,
    I need some guidance on how to get a sub-report with a sub-report header and an expanding table. Please see below.
    This is the structure of things that I have:
    Main Report 1 is being invoked by ONLY Parameter 1 (User Text Box Entry).
    It Contains:
         Page 1: Sub-Report 1 invoked by Parameter 1
         Page 2 or more Pages: Sub-report 2 and a table (T1) expanding vertically based on Parameter 1 and Parameter 2. The Sub-report 2 should appear as header on all pages where T1 rows are there. Additionally, multiple Parameter 2
    values may be present and if so, they need to appear on a different page with appropriate header/table data. Parameter 1 and 2 are associated with a ONE dataset & its fields.
         Last Page: Sub-Report 3 and few text boxes below it. Invoked by Parameter 1
    The issue is I don't know how to insert Page 2 content. I tried making a new report with Sub-report 2 and the T1 below it. This is working fine but I'm not able to get the sub-report as header on all pages EXCEPT the first page. FixedData and RepeatOnNewPage
    properties are TRUE & KEEPwithGroup is set to 'AFTER'. Also, once I'm done with this report how do I insert it in the main report. Would it be in group / outside group in the group properties -- I would really appreciate if you can guide me with steps.
    Thank you,
    Nichesl
    Nichesl

    Thanks Asha ,
    Actually this is how my Report  layout is
    Group Header
    ---Detail1
    ---Detail2
    ---Detail3
    Group Footer1 (New Page After and Show at Bottom Setting)
    Group Footer 2 (New Page Before Setting)
    This is the layout of my report.
    When Details and Group Footer1 come in same page then my Group Header works perfect.
    When there are many details then the Group Footer1 skips into next page and Group Header does not show up in that page.
    Our requirement is such a way that Group Footer1 should have Group Header and Group Footer2 should always come in new page (i.e. last Page)
    I think I made it clear on my issue/requirement.
    Again I really appreciate for your reply.
    Regards
    Kalyan

  • How do i make letter heads on all pages

    How do I make letter heads on all pages in pages?

    In the inspector, click the first icon, "Document.'
    In that window, check 'Headers' and or 'Footers.'
    Clicking in the area near the top (or bottom) will put the cursor in a box where you can create the page headers or footers.
    Headers and Footers can appear:
    On all pages,
    All except the first page, and
    Differently on right and left pages.
    You can insert text boxes into the header and footer fields as well, and arrange fonts and alignments for each text box separately.
    You can past images into the headers and footers. Drag the image into the page. Cut it. Click the header or footer box. Paste it. Resize it.
    Good luck, and have fun!

  • How to set the header for second page

    Hello all,
    I'm trying to set different header for first page and page number should starts from second page.
    Below is the sample code to set the header for each and every page.
    DECLARE
    hApplication OLE2.OBJ_TYPE;
    hWindow OLE2.OBJ_TYPE;
    hPane OLE2.OBJ_TYPE;
    hView OLE2.OBJ_TYPE;
    hDocuments OLE2.OBJ_TYPE;
    hDocument OLE2.OBJ_TYPE;
    hSelection OLE2.OBJ_TYPE;
    hParagraphFormat OLE2.OBJ_TYPE;
    hRange OLE2.OBJ_TYPE;
    hFields OLE2.OBJ_TYPE;
    hFont OLE2.OBJ_TYPE;
    args OLE2.LIST_TYPE;
    wdAlignParagraphLeft CONSTANT number(3) := 0;
    wdAlignParagraphCenter CONSTANT number(3) := 1;
    wdAlignParagraphRight CONSTANT number(3) := 2;
    wdSeekCurrentPageHeader CONSTANT number(3) := 9;
    wdSeekCurrentPageFooter CONSTANT number(3) := 10;
    wdSeekMainDocument CONSTANT number(3) := 0;
    wdFieldPage CONSTANT number(3) := 33;
    wdFieldNumPages CONSTANT number(3) := 26;
    wdPageBreak CONSTANT number(3) := 7;
    wdStory CONSTANT number(3) := 6;
    myTab CONSTANT varchar2(1) := chr(9);
    myBlue CONSTANT number(8) := 16711680; --FF0000
    myGreen CONSTANT number(8) := 65280; --00FF00
    myRed CONSTANT number(8) := 255; --0000FF
    myDkGreen CONSTANT number(8) := 32768; --008000
    myBlack CONSTANT number(8) := 0; --000000
    myText varchar2(2000);
    BEGIN
    hApplication:=OLE2.CREATE_OBJ('Word.Application');
    OLE2.SET_PROPERTY(hApplication, 'Visible', 1);
    hDocuments := OLE2.GET_OBJ_PROPERTY(hApplication, 'Documents');
    hDocument := OLE2.INVOKE_OBJ(hDocuments, 'Add');
    -------- Create Header and Footer --------
    hWindow := OLE2.GET_OBJ_PROPERTY(hApplication, 'ActiveWindow');
    hPane := OLE2.GET_OBJ_PROPERTY(hWindow, 'ActivePane' );
    hView := OLE2.GET_OBJ_PROPERTY(hPane, 'View' );
    ---- Header Section ---
    OLE2.SET_PROPERTY(hView, 'SeekView', wdSeekCurrentPageHeader);
    hSelection := OLE2.GET_OBJ_PROPERTY(hApplication, 'Selection');
    hFont := OLE2.GET_OBJ_PROPERTY(hSelection, 'Font');
    OLE2.SET_PROPERTY(hFont, 'Name', 'Times New Roman');
    OLE2.SET_PROPERTY(hFont, 'Size', 10);
    OLE2.SET_PROPERTY(hFont, 'Bold', FALSE);
    OLE2.SET_PROPERTY(hFont, 'Color', MyBlue );
    hParagraphFormat := OLE2.GET_OBJ_PROPERTY(hSelection, 'ParagraphFormat');
    OLE2.SET_PROPERTY(hParagraphFormat, 'Alignment', wdAlignParagraphCenter);
    OLE2.RELEASE_OBJ(hParagraphFormat);
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, 'This is a');
    OLE2.INVOKE(hSelection, 'TypeText', args);
    OLE2.DESTROY_ARGLIST(args);
    OLE2.INVOKE(hSelection, 'TypeParagraph');
    OLE2.SET_PROPERTY(hFont, 'Size', 16);
    OLE2.SET_PROPERTY(hFont, 'Bold', TRUE);
    OLE2.SET_PROPERTY(hFont, 'Color', MyDkGreen );
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, 'Test Header');
    OLE2.INVOKE(hSelection, 'TypeText', args);
    OLE2.DESTROY_ARGLIST(args);
    ---- Footer Section ----
    OLE2.SET_PROPERTY(hView, 'SeekView', wdSeekCurrentPageFooter);
    hParagraphFormat := OLE2.GET_OBJ_PROPERTY(hSelection, 'ParagraphFormat');
    OLE2.SET_PROPERTY(hParagraphFormat, 'Alignment', wdAlignParagraphCenter);
    OLE2.RELEASE_OBJ(hParagraphFormat);
    hFields := OLE2.GET_OBJ_PROPERTY(hSelection, 'Fields');
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, 'Page ');
    OLE2.INVOKE(hSelection, 'TypeText', args);
    OLE2.DESTROY_ARGLIST(args);
    hRange := OLE2.GET_OBJ_PROPERTY(hSelection, 'Range');
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG_OBJ(args, hRange);
    OLE2.ADD_ARG(args, wdFieldPage);
    OLE2.INVOKE(hFields, 'Add', args );
    OLE2.DESTROY_ARGLIST(args);
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, ' of ');
    OLE2.INVOKE(hSelection, 'TypeText', args);
    OLE2.DESTROY_ARGLIST(args);
    hRange := OLE2.GET_OBJ_PROPERTY(hSelection, 'Range');
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG_OBJ(args, hRange);
    OLE2.ADD_ARG(args, wdFieldNumPages);
    OLE2.INVOKE(hFields, 'Add', args );
    OLE2.DESTROY_ARGLIST(args);
    OLE2.RELEASE_OBJ(hRange);
    OLE2.RELEASE_OBJ(hFields);
    OLE2.SET_PROPERTY(hView, 'SeekView', wdSeekMainDocument);
    OLE2.RELEASE_OBJ(hView);
    OLE2.RELEASE_OBJ(hPane);
    OLE2.RELEASE_OBJ(hWindow);
    -------- Insert Text --------
    hFont := OLE2.GET_OBJ_PROPERTY(hSelection, 'Font');
    OLE2.SET_PROPERTY(hFont, 'Name', 'Arial');
    OLE2.SET_PROPERTY(hFont, 'Size', 12);
    OLE2.SET_PROPERTY(hFont, 'Bold', FALSE );
    OLE2.SET_PROPERTY(hFont, 'Color', myBlack );
    OLE2.INVOKE(hSelection, 'TypeParagraph');
    myText := myTab || 'This text is on the ';
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, myText);
    OLE2.INVOKE(hSelection, 'TypeText', args);
    OLE2.DESTROY_ARGLIST(args);
    OLE2.SET_PROPERTY(hFont, 'Bold', TRUE);
    OLE2.SET_PROPERTY(hFont, 'Color', myRed);
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, 'first ');
    OLE2.INVOKE(hSelection, 'TypeText', args);
    OLE2.DESTROY_ARGLIST(args);
    OLE2.SET_PROPERTY(hFont, 'Bold', FALSE);
    OLE2.SET_PROPERTY(hFont, 'Color', myBlack );
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, 'page.');
    OLE2.INVOKE(hSelection, 'TypeText', args);
    OLE2.DESTROY_ARGLIST(args);
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, wdPageBreak);
    OLE2.INVOKE(hSelection, 'InsertBreak', args);
    OLE2.DESTROY_ARGLIST(args);
    ----page 2
    myText := myTab || 'This text is on the ';
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, myText );
    OLE2.INVOKE(hSelection, 'TypeText', args);
    OLE2.DESTROY_ARGLIST(args);
    OLE2.SET_PROPERTY(hFont, 'Bold', TRUE);
    OLE2.SET_PROPERTY(hFont, 'Color', myBlue);
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, 'second ');
    OLE2.INVOKE(hSelection, 'TypeText', args);
    OLE2.DESTROY_ARGLIST(args);
    OLE2.SET_PROPERTY(hFont, 'Bold', FALSE);
    OLE2.SET_PROPERTY(hFont, 'Color', myBlack );
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, 'page.');
    OLE2.INVOKE(hSelection, 'TypeText', args);
    OLE2.DESTROY_ARGLIST(args);
    ---- go to the top of the first page
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, wdStory);
    OLE2.INVOKE(hSelection, 'HomeKey', args);
    OLE2.DESTROY_ARGLIST(args);
    OLE2.RELEASE_OBJ(hFont);
    OLE2.RELEASE_OBJ(hSelection);
    OLE2.RELEASE_OBJ(hDocument);
    OLE2.RELEASE_OBJ(hDocuments);
    OLE2.RELEASE_OBJ(hApplication);
    END;
    Please help me out
    Thanks,
    Bhavana

    Click on --
    Edit link for Page> Click "Edit Default" link on Banner >
    Under the "Banner Links"
    provide value something like this:
    Label = Help
    URL = /pls/portal30/docs/myhelp.html
    Icon = U can upload any icon here.
    For Application Components = See the Second Last tab on "Edit Component".
    Thanx,
    Chetan.

  • Change Header for each page

    Hi,
    i've create an application without login (i choose that when i created the app.). But the template/theme? is shown the apex_public_user and a logout-link in the header or footer (depends from the theme). I'd like to make this invisible and instead add an logo-gif and a text in the header.
    How can i realize that?
    yonah

    Hello Roel,
    i think i have an general problem with understanding apex:
    I can edit all the pages with the userinterface from apex (application builder), but for example i don't know the source code when apex is calling an process after header, fetch rows etc. That's why i don't know how to modify to get some specialized things.
    In my case: I'll edit header for one page (actually i'll for each but i don't know how to do this), click on edit page, select footer or header and the fields are empty. Where can i find the entry &APEX_USER?
    All the processes which runs in the background where can i find these?
    yonah

  • Print the logo for all pages

    Hi
    How to print the logo for all pages in xml report
    please provide the tags also

    Hi,
    create a Header and footer section and paste your logo inside and use the tag <?template:header?> before header and <?end template ?> after header section.
    Thanks & Regards
    Srikkanth

  • Open with [Pages4.3] for ALL Pages docs not working

    Hi there,
    I am unable to set the default application for all PAGES document to open in a lesser version (Pages version 4.3) to that of Pages version 5.1 which came pre-installed on my machine.
    The reason why I want Pages 4.3 opening on default instead of Pages 5 is because Pages 4.3 contains the features version 5 no longer has. I also wish to retain Pages 5 to open historical documents.
    I am running OS10.9.5 with Pages version 5.1 (1769) as standard with the machine when I bought it. I copied to my machine the application Pages 4.3. It runs, I have no problem opening both copies of Pages.
    I now want all my Pages documents to open in v4.3 as default (not v5). This is where I fall over.
    1. I "Get info" on a Pages document,
    2. In the "Open with" panel I select Pages 4.3 from the dropdown menu. Upon changing the application the "Change All" button is becomes active.
    3. I click on "Change All" button and confirmation message appears (see image). I click "Continue" and the confirmation message disappears.
    4. ISSUE - The default application reverts back to "Pages" (see image) which is the same selection as when I started (step 1)
    (Note: I also selected "Other" from the dropdown menu and selected Pages 4.3 from the applications folder through the dialogue window, but without joy)
    5. When I double-click the selected document (the document I selected in step 1) it opens in Pages 4.3. However, when I double-click any other Pages document it opens in Pages5, not Pages4.3.
    I might add, others in my office, with varying OS (10.10, and 10.7) and Pages 5.5.2 have not had the same issue as I have. They followed the same process as above and in Step4, their selection of Pages4.3 remained as the dropdown value, not "Pages".
    I would be grateful to hear from those who have had similar issue and overcome it. Many thanks

    Hi stutteringfish,
    was hoping for something more definitive... something more like what the feature "open with [for all]" is designed to do.
    I am afraid not. That setting does not stick with Pages 5 (or Numbers 3).
    My solution is to keep icons for the old and new versions on my Dock. Then I can launch whichever and Menu > File > Open (or Open Recent) from within the appropriate version..
    Wayne Contello has written a User Tip for working with the old and new versions of iWork.
    Need newer version of Numbers to open file
    Regards,
    Ian.

  • Event Receiver for all Page Libraries in a Site Collection

    We have a single site collection with many different page libraries.  I'd like to create a single event receiver for ALL page libraries in the site collection (850- Page Library).  Can you do this?
    The event receiver will essentially remove/expire something we have stored in the System.Web.HttpRuntime.Cache.  We are caching the content in the Page Library and would only like to expire the cache when a new page or change is performed on some
    content in the page library.

    Hi,
    We can create a new feature and add an event receiver to the feature for all Page Libraries.
    For more information, you can see the link below:
    http://msdn.microsoft.com/en-us/library/ee231604.aspx
    Here are two similar threads for you to take a look at:
    http://sharepoint.stackexchange.com/questions/37555/how-to-add-event-receivers-to-all-the-lists-in-a-site-collection
    http://social.technet.microsoft.com/Forums/en-US/f1297543-9035-49d6-9299-d82f546eeddd/event-receiver-for-specific-list-fires-for-all-lists-on-site-collection?forum=sharepointcustomizationprevious
    Thanks,
    Dennis Guo
    TechNet Community 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]
    Dennis Guo
    TechNet Community Support

  • How to repeat row header in all pages in Financial Reporting?

    Hi,
    I have created a simple Financial Report with landscape mode, I could not able to view the row header in second page. Please help me out , how to repeat row header in all pages?
    Edited by: Awesome on Dec 13, 2012 2:04 PM

    Hi,
    Refer following link which states how to change the Page Setup setting (just an addition to above poster's explanation):-
    http://docs.oracle.com/cd/E12825_01/epm.111/fr_user/frameset.htm?1900.html
    Regards,
    Edited by: 918547 on Dec 14, 2012 6:17 PM

  • SAP HR-- In form 16 , i am not able take print out for all pages..

    Hi,
           In SAP HR module , i have totally 5 pages, i need to take the printout for all pages.. but i am getting only 1 pages.pls could u solve this problem
    Regards
    senthil

    There is no relation with module to printer settings
    check the printer settings for declared printer in output devices
    otherwise contract basis guy
    regards
    sateesh

  • Add different header for each page

    We are using RTF templates to create XML Letters.
    1) Is it possible to have different header for each page?
    2) Can we have a data filed column in the header?
    Thanks,

    Ha ha, Thanks, that is exactly what I needed!  How perfectly obvious, but somehow easy to miss!  Thanks so much.
    Eric

  • Please tell me how can I put Bookmarks for all pages opened in Firefox.There was an option ("bookmark all pages") which vanished.

    Please tell me how can I put Bookmarks for all pages opened in Firefox.There was an option ("bookmark all pages") which vanished.

    It moved to tab contextual menu :
    Right-click on any tab -> Mark all tabs (or something close, my FF is not in english).

  • Identical Related Link for all pages

    We're trying to put a set of identical Related Link pages for all pages.
    I tried the following.
    Modify the DefaultFramework Page.
    Drill into Desktop Innerpage
    It consists of :
    Detailed Navigation
    Dynamic Navigation
    Drag&Relate
    Related links
    Portal Favorites
    Content Area
    Made of a Copy of the Content Area iview, and added 2 Relate Links into this iview (save it as Content_Area_2)
    Removed the Original Content Area under Desktop Innerpage and added Content_Area_2)
    What I essentially did was assigned related links to the content area of the Desktop Innerpage. That should bring up the Related Links for all iViews.
    Is that how it can be done ?
    Does not seem to work.
    Is there another way of doing it.

    boerli wrote:
    > In GoLive there was a wonderful feature which allowed
    you to click any image in
    > the bin and it would display instantly all the links to
    pages on which that
    > picture was used. It allowed you to find content and
    other pics on other pages
    > related to that image instantly. It prevented
    duplication. Wonderful feature I
    > used constantly on running our huge websites.
    >
    > I can't find anything like that in DW. Now I have to try
    to remember on which
    > other pages I used that image. It's a nightmare...
    >
    > Can anyone help?
    >
    > boerli
    >
    > Am I missing something? Can anyone help me find this
    feature?
    You want to find all pages that have a particular image on
    it?
    From the Edit menu select Find and Replace.
    In the Find In drop down select Entire Current Local Site
    In the Search drop down select Source Code
    Then in the Find field type in the filename
    Now click Find All
    The search results will show you all pages, you can double
    click on each
    file and the page will open with the filename highlighted in
    the code.
    Its not perfect, but Dreamweaver isn't GoLive. If its a
    feature you
    would like to see ask Adobe:
    http://www.adobe.com/cfusion/mmform/index.cfm?name=wishform
    Dooza

  • Help me stop Safari showing souce code for all pages

    Safari has been doing this for all pages including apple.com
    The only change to the system was the new combo update. Now I'm using Firefox. Can someone give me a reason to go back to Safari?

    I better add that this also affects any of the help windows for other products. Many times I just get a long line of the different help topics without formatting. It is very annoying that i cannot read the Hlep menus properly. Can anyone help me please?

Maybe you are looking for

  • Remote app on iPhone 3GS doesn't work on Win8

    I have an iPhone 3GS, not jailbroken, iOS is up-to-date (6.1.3) and it's factory unlocked. I have a Laptop with Windows 7 and the latest iTunes installed I have a Windows 8 PC with the latest iTunes installed I can connect the Remote app on my iPhone

  • How to Use Function_Loader_Inlay in SCM APO Version 4?

    Hi , I was going through the SE38 - Program - Function_Loader_Inlay , to check the possibilities of upload and download product/location combinations in SCM APO version of 4.0. But I am not able to use it as per the selection screen given. Please let

  • Need to print messages history, 1 contact, iPhone 5s

    Hello, I need to print the conversation history for One Contact at a time from an iPhone 5s.  iPhone is backed up to iCloud not a computer.  The Messages account is not used on a Mac.  I put it on a Mac but it brought up no history, only new messages

  • Problem resizing group of objects

    I was trying to resize a grouping of simple objects and hit some sort of limit as to how small it would go. It would resize larger but not smaller than some seemingly arbitrary size. Did a cut&paste (with cmd-N) into Preview and then cut&paste back i

  • Ipod function jumping and connection errors

    I have an iphone 4, when i was running the old software in it i never had an issue with ipod jumping, now with IOS4.2 in it its like theres a scratched CD playing and it jumps all the time, i havent changed anything and its only when docked, if i pla