Customization of Site Starer

One of the starter site has everything I need. I managed to change the text and background images, but the dimensions are disabled. Where can I find the instructions to update the site properly with my images?

Please visit the sites:

https://helpx.Adobe.com/Muse/how-to/muse-size-resolution-graphics.html

https://helpx.Adobe.com/Muse/how-to/muse-resize-and-cropping-images.html

Thank you

Sanjit

Tags: Adobe Muse

Similar Questions

  • How to customize the Site Studio Assistant to liaison with Wizard components

    Hello

    To customize the binding Site Studio wizard, we made the changes in the files linkwizard.htm and linkwizard.js (the code located in the weblayout/resources/wcm/sitestudio/linkwizard).

    Now we are looking files modified with the wizard components from the packaging.

    How can we implement with custom component wizard?

    Thank you
    Anurag

    Published by: 879837 on August 17, 2011 23:46

    I have been meaning to post How do this thing accurate on my blog, but just not had the time to it still.

    Are you familiar with creating components? If so, it is not too difficult. The main steps are:

    1 Add this to your file under MergeRules

    [NomComposant] _PublishedStaticFiles
    PublishedStaticFiles
    class
    500

    2. create a resource table with the name in step #1 like this:
    <@table [componentname]_publishedstaticfiles@="">



         
         
         
         
         
         


         
         
         
         
         
         

    Studio Custom Site published files
    srcPathpathclassloadOrderdoPublishScriptcanDeleteDir
    publish/resourcesresourcesresources: [name of component]500<$doPublish =="" 1$="">0

    <@end@>

    3. create the following folder structure in your component:

    [component dir] / [component name] /publish/resources/wcm/sitestudio/linkwizard

    4. place your files in this folder, your component package, install

    5 Config Mgr-> Options-> publish the files of static layout

    Good luck and please award points as you wish.

  • Can I customize my site whith the size of the computer screen?

    I created a website with muse, I looks great on my computer, but when try us it on my computer clients (which has a screen larger than me) the site did ' t scaled at all. I wanted to know if there is a way to fix this? Or is it possible to use the edge of reflow to make sensitive without having to restart my whole site early on?

    Please refer to similar discussions here:

    https://forums.Adobe.com/thread/1828866

    https://forums.Adobe.com/thread/1565200

    https://forums.Adobe.com/thread/1407197

    Thank you

    Sanjit

  • The OFA customization - create Site/client

    Hello

    I need to extend the functionality of the page of creating customers, on EBS R12.1.

    What I need is to take information (when you create a new customer) clients and inserting it into a custom table. Basically, just insert in a table of cosutom some info on creating the event.

    What can I use in this case? I guess that the customization is not sufficient...
    I read Guide customization OAF, but do not find the answers I need.
    No tips, help, etc. is welcomed :)

    Thanks in advance,

    Rodrigo

    Hi Rodrigo,

    Just to add to the comment of Anil.
    In your case, if the trigger is created, it can be fired just for the creation of the OFA customer screen and for any insertion operation on the table, be it by some API or some other screen trying to insert the value in the customer table.
    So if you opt for relaxation, its impact should be well analyzed.

    Abdul Wahid

  • Add and customize the Site Navigation | How can Adobe Muse, we do a lot of pages open mutually navigatio

    How many pages open up to each other navigation on the web project menus? as below link. http://www.Avdel-global.com/en/products/breakstem-fasteners/avibulbr-XT.html

    menu.JPG

    You can either use manual menu with items menu SUP or you can use compositions for it.

    Thank you

    Sanjit

  • Export of SDM does not appear level site customization.

    Recently, we have allowed customization by the user by creating UserCC and SiteCC classes. It works very well. Customization by the user is get stored the EBU to level and at the site level personalization site.

    But now when we export MDS of the Manager of the company to its only showing the customization by the user. Zip file does contain any customization of site level.

    We are sure that there is no level customization of site as any changes made by admin mode Ctrl + Shift + E is available for all users.

    Any suggestion why EM is not download site level customizations?

    Thank you

    Sanjeev

    Hello.

    Probably, I get a little confused.

    Just to sum up the steps:

    • (Optional) Develop your UserCC and the SiteCC (if you want) as a result of the official documentation or as a result of the custom reference. You can copy directly from them by ensuring that the UserCC is it to use the ADFContext.
    • ADF - config.xml file, you can define the list of customization Classes to use in each MDS path.

    By default in a Portal Application contains:

    
                 
                  
                    
                       
                    
            
    

    It means that using SiteCC of ' / ' for customization of all. For example, it can be modified to allow two layers.

    
                    
                
                
                  
                  
                
              
    

    For DS Portal (spaces) in "/" by defaul uses:

    
                   
                   
               
    
    • It works just configuration UserCC and SitesCC?. No, you must create a ComposerSessionOptions to do the job between the evolution of the patterns.

    For example, shot from Andrejus Blog:

    public class PortalSessionOptionsFactoryImpl implements ComposerSessionOptionsFactory {
        public PortalSessionOptionsFactoryImpl() {
        }
    
        public SessionOptions createSessionOptions(SessionOptions sessionOptions, String mode) {
            CustomizationClass[] custLayer;
            CustConfig custConfig = null;
            CustomizationPolicy cPol = null;
            SecurityContext stx = ADFContext.getCurrent().getSecurityContext();
    
            if (ModeContext.EDIT_MODE.equals(mode) && stx.isUserInRole("Administrator")) {
                //Mode is Edit, change to SiteCC
                custLayer = EDIT_LAYER;
            } else if (ModeContext.EDIT_MODE.equals(mode)) {
                //Mode is Edit, change to UserCC
                custLayer = EDIT_PERSONAL_LAYER;
            } else {
                //Mode is View, change to UserCC + SiteCC
                custLayer = VIEW_LAYER;
            }
    
            try {
                CustClassList custClassList = new CustClassList(custLayer);
                CustClassListMapping custClassListMapping = new CustClassListMapping("/", null, null, custClassList);
                custConfig = new CustConfig(new CustClassListMapping[] { custClassListMapping });
                cPol = new CustomizationPolicy(stx.getUserRoles());
            } catch (Exception e) {
                e.printStackTrace();
            }
            if (sessionOptions.getServletContextAsObject() != null) {
                return new SessionOptions(sessionOptions.getIsolationLevel(),
                                          sessionOptions.getLocale(), custConfig,
                                          sessionOptions.getVersionContext(),
                                          sessionOptions.getVersionCreatorName(),
                                          cPol == null ?
                                          sessionOptions.getCustomizationPolicy() :
                                          cPol,
                                          sessionOptions.getServletContextAsObject());
            } else {
                return new SessionOptions(sessionOptions.getIsolationLevel(),
                                          sessionOptions.getLocale(), custConfig,
                                          sessionOptions.getVersionContext(),
                                          sessionOptions.getVersionCreatorName(),
                                          cPol == null ?
                                          sessionOptions.getCustomizationPolicy() :
                                          cPol);
            }
        }
        //Edit mode SiteCC
        private static final CustomizationClass[] EDIT_LAYER = new CustomizationClass[] { new SiteCC() };
        //Edit mode UserCC
        private static final CustomizationClass[] EDIT_PERSONAL_LAYER = new CustomizationClass[] { new UserCC() };
        //View mode SiteCC + USerCC
        private static final CustomizationClass[] VIEW_LAYER = new CustomizationClass[] { new SiteCC(), new UserCC() };
    }
    
    • This class must be configured as part of the adf-config. XML
    
         your.java.package.PortalSessionOptionsFactoryImpl
    

    To make it work, you also have to register after the filter in the web.xml file. This filter must be declared before the adfBindings.

    
      
        composerFilter
      oracle.adf.view.page.editor.webapp.WebCenterComposerFilter
      
      
        adfBindings
        oracle.adf.model.servlet.ADFBindingFilter
      
    .....
      
      
        composerFilter
        Faces Servlet
        FORWARD
        REQUEST
      
      
        adfBindings
        Faces Servlet
        FORWARD
        REQUEST
      
    ....
    
    • Troubleshooting If still does not work:

      • If that does not work, turn on customizing user portal - project properties-> view ADF (check the checkboxes customization).
      • Change the value of org.apache.myfaces.trinidad.CHANGE_PERSISTENCE to oracle.adf.view.rich.change.MDSDocumentChangeManager.

    With this, it should work and WebCenter should export all the MD as you say now that ' / ' will use the SiteCC and UserCC layers.

    I hope this helps

    Kind regards.

  • The customization is disabled at the site level.

    Hi gurus,

    I'm trying to customize the next page in iSupplier Portal.

    Context of customization:

    Extended page: create shipment notice
    / Oracle/apps/pos/asn/webui/PosAsnCreatePG of name of document
    Site include

    I want to apply a controller custom area page at the level of the site layout, but personalization is disabled at the level of the site for this page. I'm able to customize at the level of the Organization and responsibility.

    Is it possible to apply my changes to the site level?
    How can we activate/customization of site for a page level? any help in this will be appreciated.

    Please answer the thread or leave an email at [email protected] if you need more details.


    Thank you and best regards,
    RAM

    Hello

    profile ' FND: customization Seeding Mode ' on 'YES' to the site level.

    Thank you
    Kumar

  • new tab opens my home page, but I want to open the more visited sites

    new tab opens my home page, but I want to open the most visited sites. Ad-aware messed up the settings.

    You can check the browser.newtab.url pref on the topic: config page and set this pref to your preferred the new tab page.

    • the new default tab with the tiles page is on: newtab
    • the default homepage is Subject: Home
    • to a blank page, you can use Subject: vacuum

    The pref browser.newtabpage.enabled must be set to true to use the page defined through browser.newtab.url like the new tab page.

    See this article on the page tab (topic: newtab):

    You can open the topic: config page via the address bar.
    You can accept the warning and click on "I'll be careful" to continue.

  • How can I insert a web site in the most 'visited' on Firefox?

    I must have done something to remove it, and I need it back! Help! Thank you.

    You would increase the number of visit this link to make it appear as a web page more visited.
    You can make the column number of visible visit to Manager bookmarks (library).

    Do you mean the most visited folder on the personal bar or you mean one of the tiles on the subject: newtab page?

    See this article on the page tab (topic: newtab):

  • Add new tab/PIN to the start page. Impossible for the life of me to restore a deleted site/PIN...

    I accidentally deleted a pinned site my page tab (start). (You can remove by clicking on the icon in the upper left corner of the thumbnail, or remove by clicking the icon at the top right of the thumbnail). My question is, how do I ADD (or more precisely, to restore) a thumbnail of website? Pulling my hair out here...

    (FYI, this article does not take into account the latest version (32.0.3) or solve the problem: https://support.mozilla.org/en-US/kb/new-tab-page-show-hide-and-customize-top-sites?esab=a & as = aaq)

    FF 32.0.3 on OSX (10.7.5)

    See you soon!

    Do you think you visit the site often enough that he expected to appear on the page function visit frequency? If so, perhaps it is blocked. The browser.newtabpage.blocked preference seems to be to be completely indecipherable, so you may need to right click > reset to allow sites all blocked reappear on the page.

  • There are many sites in my tabs I don't want. Using your guidelines, I treid to find the "pin" icon, but don't see it. I want to know how I do

    When I connect and Firefox opens, there are two rows of tabs. The first row are indeed sites regularly, I like my ban, Amazon, etc. The second line contain sites can I have visited once. How can I get rid of these?

    One is the bookmarks toolbar and the other on the tab bar or in the navigation area (web page) and as the topic page: newtab page?

    See this article on the page tab (topic: newtab):

    You can use one of them to set toolbars to display.

    • Firefox '3-bar' menu button > customize > show/hide toolbars
    • View > toolbars
    • Right click on empty toolbar space

    You can attach a screenshot?

    • Use a type of compressed as PNG or JPG image to save the screenshot
    • Make sure you do not exceed the maximum size of 1 MB
  • my new tabs are opened white instead of having my first sites how to fix this?

    I tried to drag and drop from the bookmark list but that opens just I have drugs it there instead of giving me the places of the small window of most visited sites. I don't know why it happened all of a sudden.

    You can check the value of the browser.newtab.url pref on the topic: config page and set it to about: newtab to get the new default page with 9 tiles.

    See also this article on the page tab (topic: newtab):

  • How can I customize the twelve browsers preferred?

    New tab shows 9 favorite browsers. How to set these browsers or delete the ones I don't want.

    See this article on the page tab (topic: newtab):

    You can change the order of the boxes on the subject: newtab page and drag an item to another location in PIN in this position or you can remove a Web site by clicking on the close X to block this URL.

    You can drag a bookmark or history item and drop them into a slot on the topic: newtab page to pin them and have your own sites showing favorites.

    Changes manually on the subject: newtab page are stored in the browser.newtabpage.pinned (default = [null]) and pref browser.newtabpage.blocked you can check/change on the about: config page.

  • When I opened a new tab I see a blank screen, as I always used to do, rather than see a screen full of recent sites I visited.

    I'm on Firefox 16.0.2. About a week or two ago it spontaneously change happened. When I open a fresh tab, I see a blank screen. This is what I'm used to. Now, for some reason any my new tab is filled with up to nine websites I've visited previously. I don't want that! How can I change back to get a white screen?

    See also this article on the page tab (topic: newtab):

  • Since the last update, when a new tab opens in the beginning, there are white boxes with what looks like the browser... history one box per each site visited.

    When a new tab is opened, it is filled with white cells that resemble the browser history. Each white box like a PIN in an icon grey at the top left and X into an icon grey at the top right. The bottom has a white bar indicating the name of the site, like "google calendar".

    New tab Page is a new feature in Firefox. You have not asked a question however. Here is some information on the new tab Page:

    If this answer solved your problem, please click 'Solved It' next to this response when connected to the forum.

Maybe you are looking for

  • Search for text in an email

    When I read an email in Mail, how to find a keyword in this e-mail?  Thank you.

  • Pavilion 10-f001au: can not find a graphics driver for windows 10

    Hi all I have improved my OS netbook using windows 10. But now I can't play GTA SA, because she cannot find 800 x 600 x 32 resolution. Can someone give me the suggestion for the graphics driver that is appropriate for that? Thank you very much.

  • How to code enforcement for Playbook

    Hello I am new to action script Adobe AIR. I wanted to create an application in the following flow --> login screen (if correct)--> screen--> details for the item selected in the option list | ---> (so bad) user alerts the reconnection I am able to g

  • BlackBerry smartphones this message after each reset "Eception exception: java.lang.Error.

    Hello Because I deleted some languages on my BB, and I kept the French, German and English language, after each reboot (after an update via BB Desktop Manager for example), I received this message: "Eception exception: java.lang.Error. I select 'OK'

  • Extract the audio channels to mono files - does not

    When I right click a file .wav stereo in the files Viewer, why are the "extract audio channels to mono files -" option grayed out?It worked for me a few weeks before a hearing CC 8.1.0.162 update.  I resorted to using version CS6 where it always work