luofeiyu
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Why can’t customize the border width?Here is my sample site
http://hgoods.site/wp/I have changed the color into green.
td’s Width can’t be set on customized css file.- This reply was modified 9 years, 4 months ago by luofeiyu.
Forum: Fixing WordPress
In reply to: Why the border color on pre tag can’t be changed?There are two status.
status 1: wp-syntax is active.
vim /wp-content/plugins/wp-syntax/css/wp-syntax.css
.wp_syntax pre {
border: 5px solid red;
}

status 2: wp-syntax is inactive.
vim /wp-content/themes/twentysixteen/style.css
code,
kbd,
tt,
var,
samp,
pre {
font-family: Inconsolata, monospace;
}pre {
border: 5px solid red;
}

How to make pre border format to be :5px solid red such as status 1?
Forum: Fixing WordPress
In reply to: Why the border color on pre tag can’t be changed?vim /wp-content/plugins/wp-syntax/css/wp-syntax.css
Forum: Fixing WordPress
In reply to: Why the border color on pre tag can’t be changed?border color can’t be changed by pre tag
- This reply was modified 9 years, 8 months ago by luofeiyu.
Forum: Fixing WordPress
In reply to: How to make line more longer to contain more characters?It was build on my local machine.
Twenty Sixteen theme.
pre tag work.
I still want to know how to a line to contain 60 characters?
Where to change the css file?Forum: Fixing WordPress
In reply to: How to make visual mode not to change content in text mode?5>3Forum: Fixing WordPress
In reply to: How to make post_name as searched column?I have tried `search everything1 plugin,it can’t get the result such as
select post_name from wp_posts where post_name like "%screen%";
when to inputscreenin the serch posts.
Can not search everything.Forum: Fixing WordPress
In reply to: How to get all category from databseWhere to put the code to run?