任何人都可以帮助新手编写自定义css代码吗? (样式继承小部件上的边框)

时间:2017-09-28 14:22:20

标签: html css wordpress wordpress-theming themes

我正在学习,因为我正在寻找一个我正在研究的新网站,之前从未做过自定义css。 (我很高兴,请你好)

使用来自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;}
}

1 个答案:

答案 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才能覆盖原始。