Using CSS, how do I increase the size of my blog's title in the Parament theme?
-
Using CSS, how do I increase the size of my blog’s title in the Parament theme? What code do I use? On my other wordpress blogs, when the css editor used to show the entire style sheet, I was able to make my own changes. The new customize interface is, believe it or not, harder for me to work with. I just want to increase the font size of my blog’s title, “Fresh PhotoPic.” Please help.
-
Hi there,
You can still actually see your site’s entire CSS sheet. If you go to:
https://findingitagain.wordpress.com/wp-admin/themes.php?page=editcss
On the right hand side of the screen you can change the settings from “Add” to “Modify,” which should allow you to do what you’re looking to do!
If you still get stuck, you may want to check out the CSS forum, where you can get some additional help:
-
Thank you much for the response, but, alas, it didn’t work. My account has three separate blogs associated with it. Your answer takes me to the stylesheet for the “Finding It Again” blog, but I’m trying to locate the stylesheet for the “Fresh PhotoPic” blog. When I use your hyperlink as a guide, but replace the blog name (see this : https://freshphotopic.wordpress.com/wp-admin/themes.php?page=editccs), you can see that it takes me to a page that has no style sheet. How can I find the style sheet for the Parament theme I use with the FreshPhotoPic blog?
Thanks in advance for any additional help.
-
Hi there,
I’m not sure exactly what I did different from you, but I made sure that I was already logged in to your dashboard and then I went to the same page:
https://freshphotopic.wordpress.com/wp-admin/themes.php?page=editcss
And it took me right there. Is it still not working for you?
-
Once again, thank you so much for your efforts. When I go to the link you reference, instead of a page with the full stylesheet (which would be wonderful), I get a page with numbers on the left hand column (as you’d expect), but then this text instead of the stylesheet:
_________/*
Welcome to Custom CSS!CSS (Cascading Style Sheets) is a kind of code that tells the browser how
to render a web page. You may delete these comments and get started with
your customizations.By default, your stylesheet will be loaded after the theme stylesheets,
which means that your rules can take precedence and override the theme CSS
rules. Just write here what you want to change, you don’t need to copy all
your theme’s stylesheet content.If you need any further help, ask in the CSS Customization forum.
*/
____________Any suggestion on how I can get to the actual stylesheet, or find it somewhere else?
Again, thanks in advance.
-
Hi there, you can find that theme’s stylesheet here:
http://s0.wp.com/wp-content/themes/pub/parament/style.css?m=1370642945g&minify=false
You could also use a tool like Firebug for Firefox to quickly find the ID or class you want to modify with CSS. Using this tool I was able to locate this code:
<h1 id="site-title"> <a href="http://freshphotopic.com">Fresh PhotoPic</a> </h1>To change the size of this element, you can try adding the following code under Appearance > Custom Design. Click the CSS tab and add this completely below the existing green comments:
#site-title a { font-size: 90px !important; }Adjust the sizing as you like and click Save when you’re done.
If you need further CSS help, please feel free to post in our CSS Customization forum.
-
-
- The topic ‘Using CSS, how do I increase the size of my blog's title in the Parament theme?’ is closed to new replies.