I have a similar problem. I want to set the alignment and color of the
. I can set the size, font family etc in the theme panel, but it still looks awful. http://www.landmisbrug.dk/2017/07/28/eksporten-af-europaeisk-svinekoed-forventes-at-falde/
I tried to tweak with styles.css but could not find the place to begin. Inspector said line 570, but that is not right.
Thanks
Oh now I made an example. I typed the tag for blockquote, and there you see how ugly it looks. Tag disappeared of course. This is HTML on screen and a fool 25 inches in front of it!
I want to know how to make it centered and just black. I can change the uppercase to normal in the themes panel.
LOL, this is another one I’d love to know the class name of. So I too can adjust it myself.
I’m referring to the BlockQuote
It’s much too big for my site’s taste.
You can find the code class for most stuff using the console in Chrome, use the inspector to look at the actual element.
If you need help with changing the blockquote, you should open new topic, or search forum from last 4 years on same issue. As it’s not related to the topic of the bullet points class.
e.g.,
.post blockquote p, .page blockquote p, .td-post-text-content blockquote
I guess the place is depending on the theme/demo but in my file “style.css” there is this on line 6843
ul,
ol {
padding: 0;
}
ul li,
ol li {
line-height: 24px;
margin-left: 21px;
}
I guess just add the font size property and type a number:
.ul {
font-size: 25px;
}