Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

how to show css text in apex application form label

dave_414Nov 12 2013 — edited Nov 12 2013

I have create a static file called. notice.css


and have in my page 0 header and footer


<link rel="stylesheet" type="text/css" href="#APP_IMAGES#notice.css" >


anyways, I need the `content` in the css to apply to about 30 pages form.

in when display only field for one of the forms I created I did this

ELEMENT ->HTML Form Element Attributes


class="notice";

So I am calling the class in the HTML Form Element Attributes. In the form I am having problems showing the `content`. I created a div example in fiddle to show what I am trying to do Edit fiddle - JSFiddle

anyways, why isn't the `content` showing in apex? in normal html and css it works fine.

.notice {

font-weight: bold;

font-size:16px;

color: #FF0000; //RED

}

.notice:after{

content: "The following fields below are NOT to be used. It is only they to look up any previous information.

PLEASE DO NOT FEEL THEM IN";

}

I know they apex is abit confusing in doing simple things. Please is they a way of doing this in apex? I want to do this method because it will be early to edit the text in the `content css element` rather than copy and pasting in over 40 forms and going into easy of them when I have some changes to do.

This post has been answered by dave_414 on Nov 12 2013
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Dec 10 2013
Added on Nov 12 2013
3 comments
1,289 views