uafrazier
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Padhang] Title not responsiveForum: Themes and Templates
In reply to: [Padhang] Title not responsiveGlad it resolved your issue!
I used the web inspector to determine what css selector was being used.
I generally use firefox or chrome browser and with each of these you just select or hover over the element you want to inspect, right click and click on inspect element.
This opens up the web inspector within the developer tools that are built into your browser. Among other things, it shows the css selector of the element.
Here is a link to a basic tutorial on using chrome’s web inspector:
Forum: Themes and Templates
In reply to: [Padhang] Changes of Font size/ typeok, so you just need to change the css for the body and post title elements.
for body text size:
body { font-size: 10px; }for post title font-family:
.entry-title { font-family: cursive; }if you have jetpack you can use the Custom CSS Editor to make your changes.
alternately, use a child theme and add the custom css to it’s style.css file.
Forum: Themes and Templates
In reply to: [Padhang] How do I remove the blank space between menu and logo?tskniep,
you have to do this with css.
you need to adjust the top padding of the site-branding class.
but to do so, you need to create and activate a child theme:
how and why to create a child themethen, at the bottom of your child theme’s style.css file add the following code:
.site-branding { padding-top: 0; }this removes the padding from the top of your logo thus moving it closer to the menu.
you can play around with the value of padding-top until you get the logo where you’d like.
Forum: Themes and Templates
In reply to: [Padhang] Title not responsivehi mixie pixie ,
you can make the site title responsive by adding something like the following code to your child theme’s style.css file:
@media screen and (max-width: 40em) { .site-title { font-size: 25px; } }this code will change the font size from the default (52px I think) to 25px when the screen gets to 40ems. this is the same size as when the menu collapse is activated.
As for the background image, from your dashboard try:
Appearance > scroll down to “Attachment” > select “Fixed” > Save Changes