[RESOLVED] Markup - Text not displayed correctly
Have following:
PHP Code:
asp:Label ID="Label17" runat="server" Style="font-size: 30px; font-weight: bold; z-index: 100; left: 270px;
color: blue; font-style: italic; position: absolute; top: -110px; letter-spacing: 5px; text-align: center;
vertical-align: middle; color: red; letter-spacing: 5px; background-color: transparent; font-variant: small-caps;"
Text="AppNet" Width="300px" Height="1px"></asp:Label
In design mode the text is displayed as "APPNET" and not "AppNet". Any ideas?
Re: Markup - Text not displayed correctly
I would guess this:
font-variant: small-caps;
Re: Markup - Text not displayed correctly
I changed
PHP Code:
font-variant:normal
(instead of small-caps) and it worked.
Re: [RESOLVED] Markup - Text not displayed correctly
Are you playing game with us...?
Code:
font-variant: small-caps;
Remove this line...to see the correct output
wow 2day i learned new thing...! :)
Re: [RESOLVED] Markup - Text not displayed correctly
I removed this line and text is displayed correctly "AppNet". Thank you.
Re: [RESOLVED] Markup - Text not displayed correctly
snufse, out of interest, was this someone else's code that you were editing, or where did that style creep in?
Gary
Re: [RESOLVED] Markup - Text not displayed correctly
Gary,
It was someone else's code. I plan on changing this using CSS.
Re: [RESOLVED] Markup - Text not displayed correctly
Hey,
Ah, that makes sense.
Gary