wordpress主题的css定制

时间:2016-11-29 09:37:37

标签: css wordpress

我们在网站上使用了现代化主题。

我想增加主要内容区域的大小。我只是希望背景图像(灰线)占用更少的空间。

我尝试更改主题自己的css文件&自定义css文件。但它没有用。

请访问网站:www.gtctrust.com 或者下面的图片: image

2 个答案:

答案 0 :(得分:1)

不要像刚刚建议的那样使用!important。只需在这里强化您的选择器:

body .container-wrapper, body .all-container-wrapper.boxed-layout{
     width: 1060px;
}

 body .container-wrapper, body .body-wrapper .all-container-wrapper.boxed-layout{
     width: 1060px;
}

答案 1 :(得分:0)

看看这是否适合你

Dim p As New Process
Dim psi As New ProcessStartInfo
psi.FileName = "cmd.exe"
psi.Arguments = "/c ipconfig /all"
psi.UseShellExecute = False
psi.RedirectStandardOutput = True
p.StartInfo = psi
p.Start()
Dim output As String = p.StandardOutput.ReadToEnd
p.WaitForExit()
MsgBox(output)

enter image description here