Can i remove the border around the header?

the border that is automatically created around the header box is creating an annoying separation between the header and page background.. can i get rid of it?

Please post some code and/or a link to the page(s) you are talking about. To make sure you get help in the most efficient manner possible, read these posts first:
http://forums.adobe.com/thread/470404
http://forums.adobe.com/thread/427712
Just a wild guess, but if your "header box" is an image that is also a hyperlink, you might want to do a Google search on this very common behavior to find a solution:
http://www.google.com/search?q=border+around+linked+images+html
Cheers!

Similar Messages

  • Can't remove portlet border.

    Hi Gurus,
    i'm facing some unexpected behavior with a portlet:
    The portlet appears in the page with a gray border.
    BUT the "show portlet border" checkbox isn't checked in area edit page.
    So, what is happening?
    And how can i remove the border.
    I've already try some stupid things as:
    1)check "show portlet border"
    2)apply changes
    3)Ok
    4)edit area
    5)uncheck "show portlet border"
    6)apply changes
    7)Ok
    but nothing
    Thanks,
    Felippe.

    The portlet calls a jsp page.
    It has been created like all the other, via XML.
    It displays the jsp content correctly but the border around the portlet.
    When i toggle the checkbox "Show portlet border" it makes no difference at all but the "Show portlet header" does.
    Any ideas??
    I'm trying to seek some erros in jsp code.
    thanks,
    Felippe.

  • Removing the border around buttons in a CS Extension

    Hi,
    I'm creating a new extension for Creative Suite, and all  the buttons I have in the extension are using icons, but there is always a border around the button, which I cannot remove. I have tried changing the borderColor to match the background colour of the Extension, but the border is still there.
    I have attached a screen shot of one of the buttons a add button, in the extension so you can see what I mean. This button should just show the plus icon and not have a border around it. How can I remove this border? I'm using CSS to add the icons to the buttons, even using CSS means I can't remove this border.
    Thanks
    Stephen

    My response by email got garbled.
    It should look something like this:
    Button.blankButton{
        upSkin: Embed(source='assets/blank_btn_up.png');
        overSkin: Embed(source='assets/blank_btn_over.png');
        downSkin: Embed(source='assets/blank_btn_down.png');
        disabledSkin: Embed(source='assets/blank_btn_disabled.png');
    Harbs

  • I am making a graduation video for my cousin using Final Cut Pro. I have photos layered over videos, and I was wanted to find out how you can add a border around the photos so they stand off of the video. Anyone know what I could do?

    I am making a graduation video for my cousin using Final Cut Pro. I have photos layered over videos, and I was wanted to find out how you can add a border around the photos so they stand off of the video. Anyone know what I could do?

    You would need an image editor to edit the images and add a border to the image first before importing them into Final Cut.
    Cheapest and very good image editor?
    PIxelmator.
    Located in the Mac App Store. $14.99 USD.
    Here is the Pixelmator website to give you an overview of the app.
    http://www.pixelmator.com/
    Good Luck!

  • Removing the border around a PopUpButton

    Hi,
    Is there a way to remove the border around a PopUpButton,
    especially the vertical border between the label and the "down"
    arrow (such that it looks like one button, not two)? Thanks in
    advance.
    -los

    My response by email got garbled.
    It should look something like this:
    Button.blankButton{
        upSkin: Embed(source='assets/blank_btn_up.png');
        overSkin: Embed(source='assets/blank_btn_over.png');
        downSkin: Embed(source='assets/blank_btn_down.png');
        disabledSkin: Embed(source='assets/blank_btn_disabled.png');
    Harbs

  • I have an app open on my ipad but the app window has zoomed out creating a black border around the window. i cannot do anything on my ipad but it hasnt froze, my music is playing and i can only zoom in and out. i wont even let me turn it off can you help?

    i have an app open on my ipad but the app window has zoomed out creating a black border around the window. i cannot do anything on my ipad but it hasnt froze, my music is playing and i can only zoom in and out. i wont even let me turn it off can you help?

    You should also ask this in the iPad forum. This is the forum for the white and black plastic MacBooks that were discontinued in 2010. You should also post this question there to increase your chances of getting an answer.
    https://discussions.apple.com/community/ipad/using_ipad

  • How can I put a colored border around the whole page?

    I just want to know how to pur a colored border around the whole page?

    Hi Rachel,
    Here's an example. Instructions follow the image:
    Start with a new, Blank word processing document.
    Insert a rectangle shape (the darker green is the default colour)
    Change the colour to your desired border colour, using the Fill Color well in the format bar.
    Set the Stroke to none, using the first popup menu on the Format bar. (I missed this step in the example, leaving the black line seen at the rigth edge of the pages.)
    Drag the handles to resize to shape to cover the whole page.
    Go to the View menu and choose Show Layout to see thae area that text will occupy.
    Insert a second rectangle shape on the page.
    Set its Fill colour to whatever bckground colour you want in the text area,
    Set the Stroke to none.
    Resize the second shape to fit just outside the text area indicated on the Layout.
    Select both shapes, then go Arrange > Group.
    Go Arrange > Move Object to Background.
    Go Format > Advanced > Move Object to Section Master.
    If either of:
    Go Arrange > Make Background Objects Selectable
    Go Format > Advanced > Make Maste Objects Selectable
    have checkmarks beside them,
    Select that item to uncheck it.
    The frame will now appear on every page in the section.
    Regards,
    Barry

  • The border around JCheckBox

    Hi,
    Who can tell me that how to remove the border around JCheckBox? My JCheckBox is the default renderer for boolean type data of JTable.
    Thank you.
    Janet

    Sorry, I still have a problem.
    I have written my own Icon class and the paintIcon method as following:
    public void paintIcon(Component c, Graphics g, int x, int y) {
    JCheckBox cb = (JCheckBox)c;
    ButtonModel model = cb.getModel();
    int controlSize = getControlSize();
    boolean drawCheck = model.isSelected();
    if ( model.isEnabled() )
    if (model.isPressed() && model.isArmed())
    g.setColor( MetalLookAndFeel.getControl() );
    g.fillRect( x, y, controlSize-1, controlSize-1);
    g.setColor( MetalLookAndFeel.getControl() );
    } else
    g.setColor( MetalLookAndFeel.getControl() );
    g.drawRect( x, y, controlSize-1, controlSize-1);
    if (model.isSelected()) {
         drawCheck(c,g,x,y);
    But the model.isSelected() method will always return false, how could I get the actual bool value of table's cell? My cell renderer code is as following:
    public class BooleanCellRenderer extends JCheckBox implements TableCellRenderer
    public BooleanCellRenderer()
    super(new CheckBoxNoIcon(),true);
    public Component getTableCellRendererComponent(JTable table, Object checkBox,boolean isSelected, boolean hasFocus,int row, int column)
    return this;
    }

  • How to to print an .indd document with a border around the edge?

    I have an Indesign document that I want to print with a slight border around the edge.
    I print this after exporting it as a PDF.  But when I choose the various combinations of 'print printer's marks' in the export settings, none of them seem to work.
    I want just a simple thin border line around the edge of the document to print.  I don't want the interior body to print (which it sometimes does).
    I know this can be done, because on some of my .indd documents it works... but I can't figure out what I did to get it to print that way.
    HELP!
    and thanks....
    jn

    Thanks... the visible guides setting change took away the purple interior rectangle. 
    But it still doesn't print the border outline.
    Here in text form is a summary of the .indd file settings that does print a border correctly, as I like it to.
    The relevant paragraph under Marks and Bleed has crop marks off... and document bleed settings on.
    I wonder what I'm missing?  Sometimes I wished Adobe just used plain english... like 'print border outline of document'!
    Thanks!
    jn
    Print Preset: [Default]
    Printer: Canon Pro9000
    PPD: N/A
    PPD File: N/A
    General
        Copies: 1
        Collate: N/A
        Reverse Order: Off
        Pages: N/A
        Sequence: N/A
        Spreads: On
        Print Master Pages: Off
        Print Layers: Visible & Printable Layers
        Print Non-printing Objects: Off
        Print Blank Pages: Off
        Print Visible Guides and Baseline Grids: Off
    Setup
        Paper Size: US Letter
        Paper Width: 8.5 in
        Paper Height: 11 in
        Page Orientation: Portrait
        Paper Offset: N/A
        Paper Gap: N/A
        Transverse: N/A
        Scaling: 100%
        Constrain Proportions: On
        Page Position: Upper Left
        Thumbnails: Off
        Tiling: Off
    Marks and Bleed
        Crop Marks: Off
        Bleed Marks: Off
        Registration Marks: Off
        Color Bars: Off
        Page Information: Off
        Printer Mark Type: Default
        Crop Mark Weight: 0.25 pt
        Mark Offset from Page: 0.0833 in
        Use Document Bleed Settings: On
        Bleed Top: 0 in
        Bleed Bottom: 0 in
        Bleed Left: 0 in
        Bleed Right: 0 in
        Include Slug Area: Off
    Output
        Color: Composite RGB
        Text As Black: Off
        Trapping: N/A
        Flip: N/A
        Negative: N/A
        Screening: N/A
        Simulate Overprint: Off
    Graphics
        Send Data: Optimized Subsampling
        Download: N/A
        Download PPD Fonts: N/A
        PostScript®: N/A
        Data Format: N/A
    Color Management
        Document Profile: sRGB IEC61966-2.1
        Color Handling: Let InDesign Determine Colors
        Printer Profile: Document RGB
        Preserve RGB Numbers: Off
        Proof Profile: N/A
        Simulate Paper Color: N/A
    Advanced
        Print &as Bitmap: On
        Bitmap Resolution: 300
        OPI Image Replacement: N/A
        EPS: N/A
        PDF: N/A
        Bitmap Images: N/A
        Transparency Flattener Preset: N/A
        Ignore Spread Overrides: N/A

  • Why there is a border around the flash movies?

    I have a homepage with an embedded flash .swf object. It is
    perfect when viewed with IE/ flash player 8 in Win2000 environment,
    but when it is viewed with IE/flash player 8 in WinXP environment,
    there is a border around the flash .swf object when the mouse
    cursor in over the object. The border makes the page disgraceful.
    Is there any method to get rid of the border without clicking the
    mouse? Grateful if anyone can help.

    just search the forum or google for "active content" - this
    has been international front page news
    for weeks as it stems from a Eolas/Microsoft patent lawsuit -
    it has been discussed here everyday
    since the lawsuit was decided in favor of Eolas - google
    returns millions of returns - you should
    have little problem finding out what it is, why and how to
    incorporate a work-around to suit your neds.
    http://activecontent.blogspot.com
    --> Adobe Certified Expert *ACE*
    --> www.mudbubble.com
    --> www.keyframer.com
    teddy4z wrote:
    > I have a homepage with an embedded flash .swf object. It
    is perfect when
    > viewed with IE/ flash player 8 in Win2000 environment,
    but when it is viewed
    > with IE/flash player 8 in WinXP environment, there is a
    border around the
    > flash .swf object when the mouse cursor in over the
    object. The border makes
    > the page disgraceful. Is there any method to get rid of
    the border without
    > clicking the mouse? Grateful if anyone can help.
    >

  • White Border around the screen?  1/2 inch...

    I have a white border around the screen, very noticable with any dark background...
    Whats the deal with this?
    Could this cause the display brightness to have to be turned up all the way just to get a good solid picture...?
    This is not acceptable?

    The lack of information, feedback, confirmation, etc that apple is famous for is exactly why I am deathly afraid of ordering the new 17" mbp. I have been stealing my girlfriends' peecee to catch up on emails and websites since I sold my old 15" mbp a couple months ago.
    I was just about to pull the trigger and buy the new 17" mbp until the "delay", again no specific information given out by apple. Some people were charged secondary charges and had ship dates of the day of the announcement of the delay - which would logically dictate that there were plenty of machines that had to be un-packed, cracked open and "updated". So with all the unibody related issues, all the 9600 related issues, and all the screen issues of the 15" led, I am not sure i'll be able to play guinea pig for apple... yet again...
    Weejun wrote:
    If this problem is fixed at all, I'll bet it won't be until a new lot of displays is made, either by a new >manufacturer or (more likely) under more stringent standards by the same manufacturer(s). I've >heard that display sources have become very limited, and suspect that Apple has had to settle for >lower quality than they would prefer. Maybe Apple can only handle complaints as they arise >because there aren't enough decent replacements. But a barrage of complaints might force it to >demand better quality from its contractors next time.
    Bottom line, I'm hoping for a C86 or C87 to show up. Maybe that's hoping for too much.

  • I have an iPhone 5 and just recently when I get the camera button and it opens there is a black border around the screen and the screen is small and I don't know what I did to cause it or what to do to make it go away anyone help

    I have an iPhone 5 and just recently when I opened the camera there is a big black border around the screen causing the picture itself frame to be smaller I don't know what I did to cause this or what I can do to make it go away can anyone help/

    First off, try a reset of the phone. Hold the sleep/wake and home buttons together until you see the Apple logo and then release. After the phone restarts, see if the problem persists.

  • My iPad 2 with iOS 7 touchscreen is no longer responsive, although date/time is current as are off screen buttons. Tapping the screen merely produces a rectangular border around the tapped log in digit. No 'black to white' registers on the upper 4 dots

    My iPad 2 with iOS 7 touchscreen is no longer responsive, although date/time is current as are off screen buttons. Tapping the screen merely produces a rectangular border around the tapped log in digit. No 'black to white' registers on the upper 4 dots.
    Excuse brief text to above due to input limitations in original input field. I'd be grateful if anybody can give me any help to recover the situation. Thanks.

    Triple tap the home button

  • HT5622 We have two iphones with the same Apple ID. Since I installed iOS this morning I have started receiving all my sons texts and when I send him a text it is delivered to both of us. How can I remove my phone from the joint Apple ID and remove myself

    My son and I both have iphones with the same Apple ID. Since I installed iOS this morning I have started receiving all my sons texts and when I send him a text it is delivered to both of us. How can I remove my phone from the joint Apple ID and remove myself from finding out what he is up to during Freshers week!

    You have to use a different Apple ID for your son.
    Read this note:
    iOS 5 & iCloud Tips: Sharing an Apple ID With Your Family
    still valid for ios 7

  • How can I remove multiple copies of the same song from the iTunes listing?

    How can I remove multiple copies of the same song from the iTunes listing. The program seems to be picking up the same songs from, for example, my user area and my public area in the C drive

    As above, Apple's official advice is here... HT2905 - How to find and remove duplicate items in your iTunes library, however it is a manual process and the article fails to explain some of the potential pitfalls.
    Use Shift > View > Show Exact Duplicate Items to display duplicates as this is normally a more useful selection. You need to manually select all but one of each group to remove. Sorting the list by Date Added may make it easier to select the appropriate tracks, however this works best when performed immediately after the dupes have been created.  If you have multiple entries in iTunes connected to the same file on the hard drive then don't send to the recycle bin.
    Use my DeDuper script if you're not sure, don't want to do it by hand, or want to preserve/merge ratings, play counts and playlist membership. See this thread for background and please take note of the warning to backup your library before deduping.
    (If you don't see the menu bar press ALT to show it temporarily or CTRL+B to keep it displayed)
    tt2

Maybe you are looking for