slideshow and page
-
Hi,
I would like to remove the border around the slideshow window; increase the size of the window and center it on the entire page.
Thanks.The blog I need help with is: (visible only to logged in users)
-
Hi there, the following removes the border and background color from your slideshows.
.slideshow-window { background: rgba(0, 0, 0, 0) !important; border: none !important; } -
Many thanks!
Is it possible to also remove the comment section and photo details in my portfolio -> weddings? When you click on any image it opens up and at the bottom you can see my photo details like shutter speed and camera. Thanks again. -
This will hide the comments section and image meta on the carousels.
#jp-carousel-comment-form-container, .jp-carousel-image-meta { display: none; } -
-
Ah, we will use a bigger hammer then by adding the !important keyword. Replace the code I gave with this.
#jp-carousel-comment-form-container, .jp-carousel-image-meta { display: none !important; } -
Amazing!
Could I also get rid of the “Blog at WordPress.com. The Sketch Theme.” on the bottom of each page?
Thanks! -
We are not allowed to hide or edit the WordPress.com and theme footer credits per our Terms of Service (#1 Attribution). See the Frequently Asked Questions on the Custom Design support page for more information.
You are allowed to restyle the footer credits to better fit with your design as long as they remain readable, and you are also allowed to add text to the footer, such as a copyright statement. If you need help restyling , or adding to, the existing footer credits, let us know and we would be happy to help.
-
-
-
Hi,
I would like to modify the footer on each page by making it all on one line and reducing the size of the letters. Also adding 2 things to it:Blog at WordPress.com. / The Sketch Theme. / Logo credits: logomakr.com / All images © 2016 Marina Dimova
Thanks!
The blog I need help with is marinadimova.com.
-
Hi,
I would like to modify the footer on each page by making it all on one line and reducing the size of the letters. Also adding 2 things to it:Blog at WordPress.com. / The Sketch Theme. / Logo credits: logomakr.com / All images © 2016 Marina Dimova
Thanks!
The blog I need help with is marinadimova.com.
-
Hi there!
There are some options for adding credits you can play around with. You’ll add any of this CSS in Appearance > CSS. (Adjust the color & size details as you’d like.)
To adjust the color of the links (the existing text) in the footer:
.site-footer, .site-footer a { color: #333; }To adjust the size & color of other text in the footer:
.site-info { Font-size: 11px; color: #333; }To add your own text to the footer:
.site-info:before{ content: "© Copyright 2016 SITENAME. "; display: inline; }Note:
– You can change “before” to “after” and the text will go after the existing footer credit.
– If you change “inline” to “block” it’ll move to another line.
– You can add this code twice (one using “before” and one with “after”) if you want two separate credits in different spots within the footer area.Give those a try & let us know if you have any questions! :)
-
Hi,
The size one worked but the “adding text” one and the “inline” one did not work.
Anything else I can try?
Many thanks! -
Hi there,
Do you mean this code didn’t work?
.site-info:before{ content: "© Copyright 2016 SITENAME. "; display: inline; }I just tried it on the Sketch theme and saw the added credit appear. Did you see it show up? Or do you mean you wanted it to do something else?
-
Hi,
I just did it again and it worked (I don’t know what happened before).
But now the new text is in different color. How do I make it the same?
Also “The Sketch Theme.” appears on a different line. How do I move it to the same line as the rest?
Thank you! -
There is one more piece of CSS from above needed to make them the same color. This code targets the linked text there too, so to change the WordPress.com and theme name ones, it needs to be added:
.site-footer a { color: #333; }Otherwise, the existing credits are limited in how they can be changed, but can be adjusted in color/size, as you’ve done.
To move yours around, you could try switching between block & inline (on display) to see which you prefer.
To move one of your credits down to the second line to balance them a bit if you’d like, use the code again, but switch before to after, like this:
.site-info:after { content: "Your other credit here. "; display: inline; }Hope that helps! :)
- The topic ‘slideshow and page’ is closed to new replies.