Forum Replies Created
-
AuthorPosts
-
KlausParticipant
Thank you for helping on Sunday!!
Sorry but I don’t get it… I tried
h3#custom-title, #front-text1 h2, #front-text2 h2, #front-text5 h2, #front-columns h2 { display: block; float: none; margin: 0px auto; font-size: 45px; line-height: 55px; clear: both; font-weight: 300; }
as well as
h3#custom-title h3, #front-text1 h2, #front-text2 h2,
as well as
h3#custom-title h2, #front-text1 h2, #front-text2 h2, #front-text5 h2, #front-columns h2 { display: block;
as well as to separate it to
h3#custom-title h3 { display: block; float: none; margin: 0px auto; font-size: 45px; line-height: 55px; clear: both; font-weight: 300; }
but the custom-title does not change for one single pixel…
In Firefox console I can adjust font-weight for h3.custom-title but it seems to belong to #pp-afterslider h3 and that is where I get stuck in CSS…
Website: www.weltangucker.de
April 9th, 2017 at 01:13 in reply to: change formatting of h2 class="entry title" on frontpage #43844KlausParticipantSo the Sample Title appears at the right place. But I cannot amend styling. My idea was to add #custom-title to the existing list in style.css as styling already exists
Existing CSS
#front-text1 h2,
#front-text2 h2,
#front-text5 h2,
#front-columns h2,
{
display: block;
float: none;
margin: 0px auto;
font-size: 45px;
line-height: 55px;
clear: both;
font-weight: 300;
}amended CSS
#front-text1 h2,
#front-text2 h2,
#front-text5 h2,
#front-columns h2
#custom-title h2,
{
display: block;
float: none;
margin: 0px auto;
font-size: 45px;
line-height: 55px;
clear: both;
font-weight: 300;Unfortunately it doesn’t work. Where am I wrong?
Website: www.weltangucker.de
- This reply was modified 7 years ago by Klaus.
KlausParticipantOkay, perhaps I expressed myself wrongly. On screen <h1> titles are displayed plain but <h2> …<h6> titles are displayed in bold. To my opinion it should be viceversa: <h1> in bold and <h2>…<h6> in plain text as you can add the strong tag in text editor.
Unfortunately I cannot upload I picture.
Regards
- This reply was modified 7 years ago by Klaus.
KlausParticipantHi Zed,
That was exactly one of my attemps. Seems like I saved the .php file in the wrong data format. Now it works, thx.
- This reply was modified 7 years ago by Klaus.
KlausParticipant1+2)
I changed style.css/* CUSTOM CAPTION LOOK */ .caption-simple #content .wp-caption .wp-caption-text { position: inherit; padding: 7px 5px; font-size: 75%; font-style: normal; }
and added font-size. There are several ways to set up the font size, like % or small, larger etc..
Additionally I changed font-style from italic to normal.
Another option ist to add font-weight: bold if you wish a bold output.KlausParticipant1) works perfect. Thx!
-
AuthorPosts