Balint Toth
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [evolve] resize sidebar to fit contentHello!
You can easily accomplish that by editing some css code. I would advice creating a child theme for this to ensure that you don’t lose any changes on an update, or install Simple Custom CSS plugin.
Here is the code necessary to shring the whole sidebar, and increase the content area accordingly:
.hfeed { width: 80%; } .aside { width: 17%; }If you want, you can change the percentage values based on your needs.
Let me know if this worked, and if there is anything else I can help you with.
Cheers,
Toth Balint BTForum: Themes and Templates
In reply to: [Iconic One] How to add own header image??I am glad that you could make it work.
If you need any more help, just throw a line here.
Greetings,
Toth Balint BTForum: Themes and Templates
In reply to: [Iconic One] How to add own header image??Hello! I apologize for my late reply. Please try changing the conde I have given you earlier to this one:
hgroup { display: block; float: none; background: url('http://www.badmintonschlaeger24.de/badminton24/wp-content/uploads/2013/12/testheader.png') 0 0 transparent; min-height: 120px; margin: 0px 0px !important; width: 100%; }Let me know if works.
Greetings,
Toth Balint BTForum: Themes and Templates
In reply to: [Iconic One] How to add own header image??Hello! I am sorry that you are having hard time with this.
I have checked your site again, and for some reason, right now non of the above code get’s applied, not just the one related to the background image. I have checked the
<head>section of your site’s source code, and I can see that the css stylesheet from the Simple Custom CSS plugin is linked, but for some reason not applies to the page.I will have to further investigate this in more details.
Greetings,
Toth Balint BTHello!
I have tested with all the plugins turned off, but the issue remains…
Do you have any more ideas?
Thank you!
Toth Balint BTForum: Themes and Templates
In reply to: Background Image in SiteTitleYou are welcome! I am glad that it turned out so well.
You know, if you have any additional questions, just post it here.
Have a nice day!
Toth Balint BT
Forum: Themes and Templates
In reply to: [Iconic One] How to add own header image??Hello!
I have checked your site, and it looks like that in the Simple Custom CSS code you have
& q u o t(without spaces) in your css code instead of quotation marks in the background-image row. Please check it on your side and change it to".Let me know if this solved the issue!
Greetings,
Toth Balint BTForum: Themes and Templates
In reply to: [Iconic One] How to add own header image??Yes, of course.
When you have changed the picture url to the new one, just change themin-heightvalue to 90px.Greetings,
Toth Balint BTForum: Themes and Templates
In reply to: Background Image in SiteTitleHello! Sorry for my slow reply.
Sure, here is the code necessary to solve that:
.site-header h1 a { padding-top: 20px; }If you want, you can fine-tune the positioning by editing the 20px value.
If you have any more questions, just drop a line here and I am happy to assist.
Have a nice day!
Toth Balint BTForum: Themes and Templates
In reply to: [Hueman] How to insert a subtitleYou are welcome!
If you need any more help, I am here.
Have a nice day!
Toth Balint BT
Forum: Themes and Templates
In reply to: [Iconic One] How to add own header image??Thank you very much!
Here are the necessary steps:
1.) Please install the plugin Simple Custom CSS
2.) Upload your image to the media library. It’s size should be 1038px x 70px;
3.) open the image you have just uploaded, in the media library, and copy the file URL, like in the screenshot: http://d.pr/i/ot4
4.) Go toAppearance->Custom CSSinside the WordPress Dashboard
5.) Paste this code below, and instead theIMAGEURLpaste the image link you have copied in earlier between the two quotation marks, and click Update CSS button:hgroup { min-height: 70px; margin: 0px 0px !important; width: 100%; background-image: url("IMAGEURL"); background-repeat: none; }6.) Refresh your website and check the results
I hope this solves your issue. If you have any more questions, just feel free to drop a line here, and I am happy to assist you 🙂
Greetings,
Toth Balint BTForum: Themes and Templates
In reply to: [Hueman] How to insert a subtitleThank you very much!
You will have to edit your theme’s
single.phpfile. I suggest that you create a child theme, because if you do not do so, when you update the theme, it is most likely that this edit we are going to do here, will be lost. You can find a great article on how to create the child theme here:
codex.wordpress.org/Child_ThemesAfter you have created the child theme folder and made the necessary edits to the style.css folder as the above article suggests, please copy the
single.phpfile from thewp-content/themes/hueman/folder to your child theme’s folder, and edit this file there (so not in the parent’s folder).In the
single.phpfile, please find this part, it is on the beginning of the file, around line number 14<?php while ( have_posts() ): the_post(); ?> <article <?php post_class(); ?>> <div class="post-inner group"> <h1 class="post-title"><?php the_title(); ?></h1> <p class="post-byline"><?php _e('by','hueman'); ?> <?php the_author_posts_link(); ?> · <?php the_time(get_option('date_format')); ?></p> <?php get_template_part('inc/post-formats'); ?>And insert there the row
<p class="post-byline"><?php the_subtitle(); ?></p>So at the end, it should look like this:
<?php while ( have_posts() ): the_post(); ?> <article <?php post_class(); ?>> <div class="post-inner group"> <h1 class="post-title"><?php the_title(); ?></h1> <p class="post-byline"><?php the_subtitle(); ?></p> <p class="post-byline"><?php _e('by','hueman'); ?> <?php the_author_posts_link(); ?> · <?php the_time(get_option('date_format')); ?></p> <?php get_template_part('inc/post-formats'); ?>Save the file, and reload your website.
Please let me know if this solved your problem.
If you have any additional questions, just drop a line here and I am happy to help you.
Greetings,
Toth Balint BTForum: Themes and Templates
In reply to: [Iconic One] How to add own header image??Hello!
Could you please post a link to your website so I could help you?
Thank you very much!
Greetings,
Toth Balint BTForum: Themes and Templates
In reply to: [WP Simple] how to remove "A Responsive Theme for WordPress"Hello!
Could you please post a link to your site, so I could help you resolve this?
Thank you!
Greetings,
Toth Balint BTForum: Themes and Templates
In reply to: Background Image in SiteTitleHello!
You can put the image as the background of the site title. Please paste this code to your child theme’s style.css file:
header hgroup { background-image: url("http://www.meier-bergen.de/wp-content/uploads/2013/10/copy-panorama_background.jpg"); min-height: 97px; }Because the background image is cut off if it’s element is not as tall as the image, I have included the
min-heightrow, which adds more
space to show the whole background image. If you want, you can try how it looks without themin-heightrow.
For hiding the image from it’s current location, please paste this code under the above code:#masthead > a { display: none; }I hope this solves your issue. If you have any more questions, just post theme here, and I am happy to help.
Greetings,
Toth Balint BT