Header CSS Customization
-
Hello, I am currently using the forever theme and I would like to know if there’s a snippet to make the header be 100% width just like the menu bar. Thanks
The blog I need help with is: (visible only to logged in users)
-
You can try something like this to override the default custom header width:
#masthead .custom-header-image { width: 950px; }For best results, try this CSS in combination with a new header image that’s 950px wide.
Let me know how it goes.
-
It worked perfectly! thanks..
Is there a snippet to make the featured images have a bigger size?
-
Is there a snippet to make the featured images have a bigger size?
The width of featured images in Forever is set to match the width you’ve defined for thumbnail images, in your dashboard under Settings > Media:
https://vlogazul.wordpress.com/wp-admin/options-media.php
Try changing the thumbnail size there from 150 x 150 max to something larger. No CSS is needed.
-
Got it, thanks!
Is there a snippet to make the “Nota Completa –>” text link on the featured image summer be bold? And also is there a snippet to make the two links text (section and tags links) under every featured image be bold? Including when it takes you to the article.
-
Is there a snippet to make the “Nota Completa –>” text link on the featured image summer be bold?
If you right-click that element with a browser inspector you’ll see that it has the class
more-link,
so you can target it like this:
.more-link { font-weight: bold; } -
And also is there a snippet to make the two links text (section and tags links) under every featured image be bold? Including when it takes you to the article.
To bold the category and tag names below each post on the homepage as well as on single posts, try this:
.cat-links a, .tag-links a { font-weight: bold; } -
To help you do more CSS customizations, I wanted to give you a few resources to explore. Learning how to target your site’s CSS will help you make certain design and layout changes. Here are some very helpful posts that will help you customize your site with CSS:
http://en.support.wordpress.com/custom-design/how-to-find-your-themes-css/
If CSS is new to you, here are some resources for learning more about it:
- The topic ‘Header CSS Customization’ is closed to new replies.