次のようなフォームラベルがあります。
<label id="jform_email-lbl" for="jform_email" class="hasTip required"
title="Email Address::Please enter the email address associated with your User
account.<br />A verification code will be sent to you. Once you have
received the verification code, you will be able to choose a new password for
your account.">Email Address:<span class="star"> *</span></label>
ポップオーバーの「タイトル」要素 (#000) に別のスタイルを適用したいと考えています。
フォームに表示される「メール アドレス:」ラベル (#fff) ではありません。
私は次のことができるかもしれないと思ったが、うまくいかない:
label#jform_email-lbl[type="title"] {
color: #000;
}
****編集済み** 答えは次のとおりです-適切なcssを見つけようとしている他の人のために:**
div.tip .tip-title {
color: #E77600 !important;
font-weight: bold;
}
div.tip .tip-text {
color: #979797 !important;
font-weight: bold;
}