Home › Forums › Automattic › Further › BACKGROUND
Tagged: background, Further, tags
-
AuthorPosts
-
Bianca CheahMemberHi there,
A few things. I’m new to this theme and love it and have purchased the Custom and fonts CSS option.
1. How do I make the background automatically resize for all screens?
If i don’t tile the background, the background image only appears on 3/4 of my screen. And it doesn’t look good.2. I don’t want the tags visible in any of my posts, so how do i turn this feature off.
3. How do i hide the “blog at wordpress” at the bottom of the page?
4. How do I custom design the emails that get sent to the subscribers?
Thanks guys,
The blog I need help with is sporteluxe.comFebruary 25, 2013 at 11:07 am #130627@sporteluxe,
1. How do I make the background automatically resize for all screens?
If i don’t tile the background, the background image only appears on 3/4 of my screen. And it doesn’t look good.
If you copy and paste the following code under Appearance -> Custom Design -> CSS, you can force to override the settings in the “Display Options” for the background. Your custom background image will be used as full page background image but this enlarges the image for larger screens, make sure to use much larger image to keep the image quality.
body.custom-background {
-webkit-background-size: cover !important;
-moz-background-size: cover !important;
-o-background-size: cover !important;
background-size: cover !important;
background-attachment: fixed !important;
}
2. I don’t want the tags visible in any of my posts, so how do i turn this feature off.
The following code would hide the tag links.
.tag-links {
display: none;
}
3. How do i hide the “blog at wordpress” at the bottom of the page?
I’m afraid you can’t hide it. All WordPress.com bloggers are required to maintain the credit links. Ref: http://en.support.wordpress.com/custom-design/#frequently-asked-questions
4. How do I custom design the emails that get sent to the subscribers?
I’m sorry to say, at this point, there is no customization available for the subscription emails.
Please let me know if you need further assistance.
February 26, 2013 at 11:38 pm #130762
Bianca CheahMemberThank you, worked a treat!
I would like to change the posting names for the content side bar.
I would like to changes the name “Images” to “Sporteluxe Pick of the Week”
Would you know how to do this?
Thank you :-)
February 26, 2013 at 11:39 pm #130763
Bianca CheahMemberOh and how do you remove the dates on all the posts?
February 27, 2013 at 11:23 am #130780I would like to changes the name “Images” to “Sporteluxe Pick of the Week”
That’s not configurable at this point. It could be a good idea as a future enhancement but unfortunately I can’t promise anything at the moment.
how do you remove the dates on all the posts?
The following code would hide the dates
.entry-date {
display: none;
}
span.entry-date + .byline:before {
content: '';
}Hope it helps!
February 27, 2013 at 11:34 am #130783The original questions have been answered so I’m closing this but you are welcome to post a new post with your question if you have more.
Thanks!
-
AuthorPosts
The topic ‘BACKGROUND’ is closed to new replies.