使用来自themeforest,Kingcomposer Pro和wordpress的主题bemart。 (widget css的当前插件是zigwidgetclass)
www.aboutautomation.com.au(对于检查元素)
我正在尝试删除侧栏上的一个小部件上的边框(custom_html-9),它当前是从主题自定义继承的,并且在编辑时将更改所有边框,这是不合需要的。我想让这个小部件的css类成为#ffffff
但是我无法让它继续下去,我唯一能做的就是让它完全消失
.hide {
border: #ffffff; }
我甚至不确定那是怎么发生的?!
已经有一个自定义的CSS已经hide_on_mobile
@media only screen and (max-width:768px) {
.hide_on_mobile {
display: none !important;}
}
答案 0 :(得分:1)
我会选择:
private void DatePicker_PreviewTextInput(object sender, TextCompositionEventArgs e)
{
DatePicker dp = (sender as DatePicker);
string text = dp.Text + e.Text;
if (Regex.IsMatch(text, @"^\d{3}"))
{
e.Handled = true;
DatePickerTextBox tb = dp.Template.FindName("PART_TextBox", dp) as DatePickerTextBox;
tb.Text = Regex.Replace(text, @"(\d{2})(\d)", "$1.$2");
tb.CaretIndex = tb.Text.Length;
}
else if (Regex.IsMatch(text, @"^(\d{2}\.\d{3})"))
{
e.Handled = true;
DatePickerTextBox tb = dp.Template.FindName("PART_TextBox", dp) as DatePickerTextBox;
tb.Text = Regex.Replace(text, @"(\d{2}\.\d{2})(\d)", "$1.$2");
tb.CaretIndex = tb.Text.Length;
}
}
如果完全移除边框(因为它们占用空间),内容会发生偏移,因此请将边框设置为透明,这样您就无法看到边框,但会继续占用空间。
您还可以在父#custom_html-9 .custom-html-widget {
border: transparent;
}
元素和内aside
元素上使用任何CSS类组合。其他一些选项包括:
div
当前边框正在应用多个CSS选择器,看起来您的选择器中至少需要3个类或ID才能覆盖原始。