Hi guys, need some help for my site: 1. how to show full blog without using read more function 2. how to hide next or previous post 3. how to change color in the footer, background and font size 4. how to hide category archives in the headline (http://www.selentio.de/category/shop/) thanks
Hello, 1. Go to the blog.php file present in your theme directory and paste the code given below in that file as instructed in the image given below. Code: <?php the_content(); ?> Similarly, do the same process in the loop.php file present in your theme directory. 2. Paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: #nav-single { display: none; } This will hide the next or previous text from the post. 3. Paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: .footer h1, .footer h2, .footer h3, .footer h4, .footer h5, .footer h6 { color: red; } .footer .textwidget { color: red; font-size: 15px; } .footer-wrapper { background-color: blue; } .footer { background: transparent; } In place of "red" and "blue" you can put your color or color code. You can also change the value of "font-size" as per your requirement. 4. Go to the category.php file present in your theme directory and follow the instruction shown in the image given below. This will solve your issue.
2,3,4 solved. thanks 1: is shows no the full post but still have the read more button. http://www.selentio.de/category/wally/ on http://www.selentio.de/category/shop/ it shows still the preview. new topics: 5. how to change the font on the read more buttons on starter page 6. how to change the headline from footer to non-bold font 7. how to change menu footer links to white color thanks
Hello, 1. For your first issue could you please provide the following information listed below. Thread Link: http://www.inkthemes.com/community/threads/blackbird-customizing-help-required.11115/ Your Website URL: WordPress Username: WordPress Password: Send this information on our email at [email protected] . We will check and try to resolve your issue. 2. For your fifth issue, paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: .feature-content-inner .read-more { font-family: symbol; } In place of "symbol" you can put your font. 3. For your sixth issue, paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: h1, h2, h3, h4, h5, h6 { text-shadow: none; } 4. For your seventh issue, paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: .footer .widget_inner a { color: white; } In place of "white" you can put your color or color code. This will solve your issue.