add my own logo
-
Hello,
how can I add my own logo on header. Also I’d like to make tranceperency the white block.
One more question: How can I add Slider images on home page.MANY Thanks,
-
Hello!
I have checked the theme documentation, and it looks like there is no setting for changing the logo, so I think the best way is to make a child theme and make the necessary changes there. More info on child themes you can find here:
Regarging the image slider, inside the child theme you should edit the theme’s php. There are some slider plugins that can be used with theme tags for example Meteor Slider.
Greetings,
BalintThank you very much.
What about to make tranceperency the white block?how do you make child theme?
Sorry, I have forgotten about that.
You should be able to do it also with some CSS tweaking inside the child theme. Could you please clarify, which white block are you referring, so maybe I could provide some code that solves that?
Thanks,
BalintSorry, for some reason the link did not show up in my previous post. Here it is:
http://codex.wordpress.org/Child_Themeshere it is: http://skyasianbistro.com
can U email me : [redacted]
Thanks,Sure.
what about transparency?
in the child themes’ css file, you should add this:
.widget-area{ opacity: 0.6; }Please keep help on these forums –
The steps necessary to make the child theme in this particular case:
in the wordpress folder/wp-content/themes/make a new folder called ‘photolistic-child’. Inside that folder, make a file calledstyle.css.Inside that file, put this:
Theme Name: Photolistic Child Theme URI: http://buzzrain.com/theme/photolistic/ Description: Photolistic is a photography theme that can be used as a portfolio and a blog theme by photographers. It has a clean and minimal design that focuses on the images and it's based on marketing principles that help photographers get more clients. Author: Buzzrain Author URI: http://buzzrain.com Version: 1.3 License: GNU General Public License License URI: license.txt Template: photolistic Tags: photoblogging, white, two-columns, fixed-width, custom-header, custom-background, threaded-comments, sticky-post, translation-ready, microformats, rtl-language-support, editor-style, custom-menu */ .widget-area{ opacity: 0.6; }Save this and in the theme selector page on WordPress Admin, there will be a new theme called Photolistic Child, with no screenshot image, activate that. That should solve the transparency issue.
Optionally, you can fine-tune the transparency value by changing0.6to whatever you feel right. 1 is non-transparent, 0 is completely transparent (= not visible).That code above is missing the @import line for a child theme.
Yes, you are absolutely right. Sorry about that. So the code should look like this:
Theme Name: Photolistic Child Theme URI: http://buzzrain.com/theme/photolistic/ Description: Photolistic is a photography theme that can be used as a portfolio and a blog theme by photographers. It has a clean and minimal design that focuses on the images and it's based on marketing principles that help photographers get more clients. Author: Buzzrain Author URI: http://buzzrain.com Version: 1.3 License: GNU General Public License License URI: license.txt Template: photolistic Tags: photoblogging, white, two-columns, fixed-width, custom-header, custom-background, threaded-comments, sticky-post, translation-ready, microformats, rtl-language-support, editor-style, custom-menu */ @import url("../photolistic/style.css"); .widget-area{ opacity: 0.6; }
The topic ‘add my own logo’ is closed to new replies.
