Thanks Deanfp for the response. But, sorry, I am really new about this things. Which part of the style.css should I change? Thanks again
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Use a plugin to manage your CSS modifications: https://wordpress.org/plugins/custom-css-manager-plugin/
What specifically do you want to change? How familiar are you with CSS? Do you know how to use Firebug?
Hi Andrew. Thanks
I am not really familiar with CSS and Firebug.
http://seputarjantung.com/wp-content/uploads/2014/05/image4-e1401371949805.jpg
This is the picture of my header. “Seputar Jantung” is my header, which is to far from the top and the bottom. I want to make it closer. That is what I want to change
Hi
As Andrew says you can use a plugin to amend your css if you are not familiar. If you have the plugin then look for this code at around line 631 within your style.css
#site-title img {
margin: 38px 0 0;
vertical-align: middle;
}
You can change this to
#site-title img {
margin: 38px 0 0 0;
vertical-align: middle;
}
Then look at changing the last two zeros to a value that you are happy with
an example is here using this code
#site-title img {
margin: 38px 0 0 -31px;
vertical-align: middle;
}