border

WP7 Rowspan all

I'm looking to make a border that will serve as a general overlay. I'm trying to use an 800x480 border with opacity .75 as the overlay. However, it only fills the content of the row it's in, not the entire page. If I know how many rows it needs to cover, I can set the rowspan and it will cover the entire screen. I was wondering if there ...

HTML+CSS Table, trouble setting borders

Hi all, I'm trying to make a Sudoku board online using an HTML Table and formatting it with CSS. Ideally the output would look like this image: http://www.examiner.com/images/blog/wysiwyg/image/sudoku.png The problem is I'm having trouble setting the borders properly. Below is the code for a single 3 by 3 box, it unfortunately isn't ou...

flash as3: textfield borders disappear when drop shadow is applied

Hi there! There's a really strange bug I've ran into today. I have some textfields generated from code, and if I apply a drop shadow filter on them, sometimes the right or the bottom part of the textfields' border just disappear. _passwordField.filters = [new DropShadowFilter(1, 45, 0, .75, 3, 3, 1, BitmapFilterQuality.HIGH)]; this i...

PHP method of replacing images within a word document

I have a word document with numerous images making up a custom border. Is there a way using PHP that I can programmatically replace all images within that word document with another image? Cheers. ...

Google Chrome > Textboxes > Yellow border when active..?

Hey, Ive been modifying a form today, and testing it in Chrome. I noticed that on selecting a textbox, with border: 0 or none, it still puts a yellow border around it. Does anyone know of a way to get rid of this border? I usually wouldnt be that bothered but it looks really horrible with the colour scheme I am using. Thanks in advance...

Silverlight 4 DataGrid border around a column

I haven't been able to find anyway to dynamically add a border around a column in a silverlight datagrid. Here is my xaml of my datagrid: <sdk:DataGrid x:Name="PlannedAndBookedMonthlyTable" ItemsSource="{Binding}" AutoGenerateColumns="False" Margin="5,0,5,5"> <sdk:DataGrid.Columns> <sdk:DataGridTextColumn x:Name="MonthlyHeaderN...

FireFox CSS Table Extra Border Line Problem

I encountered a table border line CSS problem in firefox, when the css border-collapse is collapse, and have 2 merged cells, one of them hava 1px border. A extra unwanted border line exsits on the right. This Problem does not exsits in other browsers, IE and Chrome don't have the problem. FireFox version is Mozilla/5.0 (Windows; U;...

css problem on iPad with table border

I have a css problem when the html page is rendered on iPad. Everything works good in other browsers. The problem is that I get a small space between the cells in my tables as you can see in the picture: http://oi53.tinypic.com/2vl0as9.jpg If I zoom in the page maximum on the line between the cells, it dissappears.. So it must be some k...

how to change the border design

Is it possible to change the border design...sorry i clicked the sent button <html> <table border="1"> <tr> <td style="padding-left:5px;padding-bottom:3px;"> <strong style="font-size:12px;">Test A : <br/></strong> Test1 </td> <td style="padding-left: 5px; padding-bottom:3px; padding-top:4px;...

CSS: two color borders

Client wants two color borders for an embossed look. Can I do this on one element? I was hoping to avoid stacking two DOM elements with individual borders. ...

css fading borders without border-image?

hi there! does anyone know of a css-only method (css3 is fine, but preferably without border-image just in case) to style an active tab like the following dialog's toolbar (ignoring the icons): coda preferences on snow leopard i'm using jquery-ui to generate tabs, which means the markup is similar to: <div class="tabbed"> <ul> ...

How to get rid of the untouchable yellow border of the ribbon menu-button?

I'm new to WPF control template and need your help on this. I got a sample Microsoft Ribbon project here. I tried to change the color of the ribbon menu button but I can not make the yellow border goes off. Please see screenshot below. If you have a work-around, please help! You can get MS Ribbon from: http://www.microsoft.com/dow...

WPF: Border on three sides

Is there way to create a border that is only on the top, left, and right sides? ...

How to remove 3D border in IE8 with DOCTYPE XHTML?

The problem: Here is what I do body { border: 0; } as was suggested here: Removing border from WebBrowser control But this only works when we use the following doctype: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> When doctype is changed to <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"> ...

WPF: TwoWay binding between 4 TextBoxes and 1 Border.Margin

I want to set the BorderThickness of a Border of a UserControl using 4 TextBoxes, but I can't get it to work. XAML code demonstrating the problem (only this code in combination with the converter is needed): <Window x:Class="BorderThicknessBindingTest.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation...

css border problem

How do i put a border on a div in css that doesn't have a set height? Want to achieve this without using any javascript. Code is below. HTML <div id="main_container"> <div id="header"> <div id="topMenu"> <ul id="topNav"> <li><a href="#">Home</a></li><li><a href="#">Contact</a></li><li><a href="#">Links</a></li> </ul> </div...

Add border to image in PHP

I want to improve one of my Facebook apps by allowing the users to apply border styles to their images. I am not exactly sure how this can be done, but hopefully someone here will be able to help. The application is written in PHP. I originally thought that I would be able to create an image with just the border, a few pixels wider and t...

How to get a border around text element with auto-width/height in Silverlight + padding

What I have at the moment is only defined width: <Grid> <Rectangle Fill="#FFF5F7F9" HorizontalAlignment="Left" Height="80" Stroke="#FF565656" VerticalAlignment="Top" Width="128" RadiusY="15" StrokeThickness="3" RadiusX="15"/> <TextBlock HorizontalAlignment="Left" Height="47" TextWrapping="Wrap" Text="Draft" VerticalAlign...

Bottom border for list view in android

Hi, I'm trying to add a bottom border my listview in android The code i used is <ListView android:id="@+id/listview" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_weight="1" android:scrollbars="horizontal" android:background="#ffffff" android:cacheColorHint="#ffffff" /> I...

Need a very thin border for IE 6.0

I am trying to get a very thin border for my table (table rendered from a GridView). I have set the BorderWidth="0" for the GridView and then through CSS I am creating the border for the rows that I need. Here I don't want any border around the grid header. HTML code for grid renders to table and TRs. So I ahave the following css: tr.to...