How to make portlet corner round?

Is there a way to do it via stylesheet in 6?
TIA!

Hi
Please use the following syntax
{background-image: url(http:hostname/imageserver/plumtree/portal/custom/img/gadget_bottom_right.gif); background-repeat: no-repeat; width: 80px; background-position: right bottom;}

Similar Messages

  • Photoshop cc 2014 How to make one corner of image rounded

    I wish to make an image with one or two rounded corners. Can some one explain how this is done or point me to a tutorial that works.

    Now I see. You have to create a .png file with alpha channels enabled to have transparency on the corners.
    First of all open you image. After that double-click on the Background layer on your layer window to be able to rename it. That will allow you to delete any part of it. After that make a curve with pan tool in the shape you want your round corner to be. After making the path right button -> make selection from path. After you selection is made hit delete. Save you image for web Ctrl+Alt+Shift+S and choose .PNG as a type of file you want to save.
    This is generally.
    If you need details feel free to ask.

  • How to make only one round corner?

    HI,
    How can I make only one (or 2) round corner on a square using the round corner effect?

    You don't say what version you're using, but I know that in CS3 (and probably CS4), there is a script installed that you can use.
    Draw your frame. Open the Scripts panel. Open the subfolders "Application", then "Samples", then "Javascript". With your Frame selected, double-click the script in the list named "CornerEffects.jsx". You'll be presented with a list of options to control what type of corner; and at the bottom the pop-up menu controls which corners get that type of corner.
    (Names may vary somewhat for CS4.)

  • How do I make one corner rounded?

    Hey,
    Firstly, I'm using Illustrator CS6. I'd like to round a specific corner of a shape (a rectangle to be specific). I've seen in other posts that the CornerEffects.jsx script should work. But every time I select my rectangle, go to File > Scripts > CornerEffects.jsx I get this pop-up.
    Maybe I'm doing something wrong?
    Cheers,
    Laurence

    Laurence,
    Among the silly (non) solutions is this, using the Effect>Stylize>Round Corners:
    1) Create the basic rectangle and copy it;
    2) Add one Anchor Point to the copy rectangle and move the corner Anchor Point away from the corner so both Anchor Points are further from the corner than the greatest conceivable rounding, then Direct Select the slanting segment and delete it if you (wish to) have a stroke round the final shape;
    3) Apply the round corners effect to the original (Effect>Stylize>Round Corners).
    You may change the rounding by trashing the rounded corner effect (or reducing to basic appearance) in the Appearance palette and redoing it.

  • How to make a corner in pattern brush

    I have made a line consisting of 3 lines, one in the middle i strong and one on each side which is dashed, I have made a pattern brush, but how do I make the corners, cant find out of how to get the corners in the pattern.

    Oh okay... close that window and bring up the Brushes Panel.
    Select the corner artwork with the Selection Tool, hold down the Option/Alt key, and drag the artwork onto the brush in the Brushes Panel. You'll see a black highlight over the areas. Simply drop the art on the corner you want.
    Hint, two corners of a pattern brush use the exact same artwork. (first and third in the Pattern Brush Dialog Window).

  • How to make portlet expandable?

    Dear all,
    how can i make the portlet expands depending on its content without making vertical/horizontal scrolls?

    Thats a CSS question. Identify the div and class which applies tp it (use firebug and firefox or develper tools and ie). You have a scroll or overflow , probably auto and an explicit hieght. customise the css to remove this or modify it as you want.

  • How to make portlet header not clickable?

    Hi,
    I published a page as a portlet and placed it on another page. I enabled the region where the portlet resides in to show the portlet header. Now I found out that if I click the portlet header, the orignial page of the portlet is shown. I don't want to show it to my users, but do want to keep the portlet header and make it non-clickable. Is there a way to do that? Any help will be appreciated.
    I'm using version 10g.
    Thanks,
    Yaxu

    Hi,
    You have to disable the "Show Details Link on Portlet Header" box for the region where you display the page as portlet.
    It's at the end of the "Edit Region" Main page where you can set which links you want to display.
    Alex

  • How to make portlets auto-minimize

    I have in mind a GUI strategy that involves having only one portlet open
    at any time within a specific layout region. When the user opens a
    currently closed portlet, the currently open portlet (in the region) is
    closed. Any suggestion on how to accomplish this?
    Thanks
    Mike

    You are most welcome, but Jeff did the "heavy lifting," like Ann Bens did in the PrPro forum.
    The important thing is that you get what you need.
    I'd ditch the Memorex discs, and settle on Verbatim, or Taiyo Yudens. I once used Memorex tape (probably back in your dad's, or grand-dad's day), and it was good. However, for blank DVD media, they adopted a poor business plan - buy the very cheapest source media, and emboss it with their logo. In a spindle of 100, you might find 3 - 4 different mfgr's media. TDK was once good, but went with the Memorex business plan.
    There are several media info utilities, and even the free ImgBurn can tell you, but it is always interesting to put in a Memorex disc, and see who actually made it, plus the lot number. Some discs might be good, but then some others can be horrible.
    Good luck,
    Hunt

  • [Adobe Photoshop CS2] How to make a layer round like a circle?

    Hey there, I have a png-file, which shows our bandname (http://i.imgur.com/qbrWWs0.png). I now want to shape it like a circle, because we want to print it on buttons. How can I do that? I already tried it with the warp tool, but that result isn't satisfying. Thanks in advance.
    Cheers Thomas

    If you have the font you can easily create a circular path to put the font on. may be easier to read then the Polar distortion
    Warp does not look good as you saw

  • How to make a round Slider with an image ?

    hello everybody,
    I'm back and i have a new question : how to make a round Slider (like a volume knob) with an image ?
    I see this very interisting tutorial : http://fxexperience.com/2012/01/fun-javafx-2-0-audio-player/ but it use a private class from com.sun.javafx.scene.control.skin.SkinBase...
    thank you for your answer.
    Gaëtan.

    I'm guessing you could subclass Slider to create a class SliderKnob.
    At some stage in the process, not sure where (perhaps after calling super in the constructor), you could look up the slider region's child thumbnail and track and call setVisible(false) and setManaged(false) on them, create an ImageView for your knob, add the knob ImageView to the slider's region and bind the ImageView's rotateProperty to the slider's valueProperty(). Not sure that that is any better than using the SkinBase stuff, but at least it is an alternative idea.
    Everything to create your own controls has not been added to the public API, so if you want to make your own controls in the same way the JavaFX does them (i.e. with Skin's and Behaviours and stuff like that) you have to make use of com.sun classes unless you can subclass and modify the workings of existing controls similar to what is proposed in the preceding paragraph.

  • How to make a round border around my picture?

    I am trying to design a logo that would fit into the center of a Frisbie, yet I cannot figure out how to make a round border around the picture. I have tried using the eliptical tool, and have also tried using the cookie cutter. The only option I can get to work with the eliptical tool, is the feather, yet I can't change the pixel number for some reason, so it just makes a thin circle around the picture. I thought I could cut and paste it, but the copy and cut options were grayed out and didn't work. When I used the cookie cutter, it made a nice border, and I pasted the picture into it, but, there are four sections that need to be filled in with the background color and the paintbucket didn't work in those spaces (they are the gray and white checked areas. (the picture ends up looking like a rectangle inside of a circle). So I made a new blank file and filled it in with the color of the picture's background, hoping to use the cookie cutter tool around the picture that was now pasted into the new blank file (I chose another color for the round border) and I used the cookie cutter around the picture, but when it was finished, the whole picture ended up being white. All I want to do is to make a border around a picture (a round border). Nothing I have done has worked though. What am I doing wrong, or what are some other options for trying to do this? Thanks.

    Here is a simple way to add a border. Select the item, add a blank layer, choose the border size and color and the Outside option:
    Here is the result:
    Note that you don't even need to do the Stroke on a blank layer. You can Stroke directly on the picture layer. However having the blank layer preserves the picture in case you want to start again with different Stroke options.
    If this is not what you are looking to do, please clarify.

  • How to make a redirect without auto-redirect from the portlet "edit" mode?

    How to make a redirect without auto-redirect from the portlet "edit" mode?
    I use some sofisticated customizing with server-side validation of the form data. I want to redirect to the page of the portlet "show" mode and to the "edit" mode depending on the validation results. How can I do it?

    Heay.....this worked for me.
    I am able to change the mode programatically from edit to show.
    HttpPortletRendererUtil.handleEditAction(portletRenderRequest,"OK");
    I removed Apply , OK and Cancel buttons and applied my own Submit and Back button in Personalize mode and then change the mode to show on click of Back button using the above mentioned statement.
    Thanks
    ~Neeraj Sidhaye
    Try_Catch_Finally @ Y !
    ExtremePortal @ Gmail Dot Com

  • How to make a portlet unvisible for another(not Owners) Users?

    Hi all,
    I (Site-Owner) have create a little Portal-Site with any portlets.
    I want to make one or two portlets(Admin-Area) unvisible for other users. But when I create a portlet as Site-Owner, then all another users can they see.
    How to make a portlet unvisible for another users?
    Regards
    Leonid Pavlov

    You can hide and show portlets of Web providers (OmniPortlet, Web Clipping, and Java portlets) on portal pages dynamically. This functionality is controlled by security managers. The PDK provides a number of security managers. For example:
    o Group security manager: The group security manager makes the portlet appear to users who are members of a specified group, while hides the portlet for those who are not members.
    o Authentication level security manager: You can use the authentication level security manager to control access to the portlets based on the user’s authentication level. For example you may hide the portlet from public users, but display it to authenticated users.
    In addition to the security managers provided by the PDK, you can build your own security managers.
    Although OmniPortlet and Web Clipping do not expose security managers through the user interface, you can apply them by editing their XML provider definition file.
    For PL/SQL portlets you can use the is_runnable method to control whether the portlet is hidden or shown.
    Peter

  • The e mail tab at the left top corner of the Notes page in iBooks is inactive in my Ipad3 WiFi retina display. How to make it work?

    The e-mail tab at the left top corner of the Notes page in iBooks is inactive in my Ipad3 WiFi retina display. How to make it work?

    Stephane,
    First off - great tutorial - will go through it tonight to make sure I have the same.
    I have this setup too, however I am connected to the internet fine, but iTunes airtunes sharing does not appear at all. Any suggestions as to why or what I can try?
    The Airport Express is setup to use Airtunes, and iTunes is too. When setting up the airport Exp, Airtunes worked but internet didnt. When i figured out the internet part, Airtunes stopped
    Thank you

  • HOW TO MAKE ROUND BUTTON

    HI PLS TELL ME HOW TO MAKE ROUND BUTTON ON FORM.

    Rounded end buttons (e.g. Oracle Look and feel) are do-able in both 6i and 9i using PJCs in the 9i demos see the rollover button example, in 6i I seem to remember that there is a RoundedButton sample in the demos.
    Both sets of demos can be downloaded from http://otn.oracle.com/products/forms.
    If you want circular buttons then you'd have to use an Image for that.

Maybe you are looking for

  • JDK upgrade confusion

    I had up-to-date JRE and an older JDK5 and wanted to get latest JDK. I installed jdk-1_5_0_08-nb-5_0-win-ml.exe. There is now two JDK directories JDK1.5.0_0[18] , jre1.5.0 and jre1.5.0_0[12468]. But the environment variables did not get changed. CLAS

  • Question on threading

    Hi, I recently saw a procedure (it is in a package) that records if a batch process started and updates a row when the batch process ends. The way it does it is by inserting a row into a table and it keep the rowid of the row inserted into a global p

  • How do I import edit and email a document?

    Acrobat.com Dropbox.com Pages Google drive Google docs Text edit iTunes?

  • Intermittent Mac Pro freezing - perhaps a solution

    Hi all, this is part a request for advice, and part a possible solution: I've a brand new latest model Mac Pro and it's been locking up from day one, but only occasionally. The mouse freezes and will occasionally move a little after a while, drives a

  • Cover flow gone?

    Recently I noticed that my ipod nano (3rd gen) has lost the cover flow option! Maybe I'm not looking in the correct spot, but I thought it was under Music --> Cover Flow. For some reason it doesn't show up? Anyone have the same problem, or it could b