Hello again.
1. Possible or not, to output a picture, which at the beginning of post in the excerpt? Or do I need to put a picture for each post in the featured image ?
2. I have added a special visitor counter of website in the CUSTOM HTML section. The counter appeared at the bottom of the page. Is it possible to add somewhere else. For example where FOOTER COPYRIGHT or FOOTER TEXT?
https://www.dropbox.com/s/i8eysj566kqr4g1/footer.jpg
3. In the theme settings in the section GENERAL theme colors, I can change the color of all links, which also affects the the headers of the posts and buttons “Read more” and buttons up. How do I set the color of links for these areas?
https://www.dropbox.com/s/r65qhqz4pvr38fz/link-color-posts.jpg
4. How can I change the quotation block in the comments? https://www.dropbox.com/s/f6ye0ab26x66zr6/blockquote.jpg?dl=0
Original link to article – http://sanotes.ru/comp-dlya-ofisa-2016/
My settings in Theme Fonts\Post Settings – https://www.dropbox.com/s/5ynnv1a9624ysp9/blockquote-settings.jpg
Hello,
1. The excerpts cannot accommodate images. You cannot show an image in the excerpt. A post needs a featured image added like so: https://forum.tagdiv.com/featured-image-or-video/
2. If you want to add custom html in a different place, you will have to edit the theme php files. If you want to add the code to the footer copyright, you will have to place it in this file: https://www.screencast.com/t/cbiXNMOIl8E
3. The links are affected by the theme accent color. Change the accent color and all of the read more buttons, the scroll up icon as well as the links will change along with the option.
4.The blockquote seems changed on your site already. I think you are not clearing the cache after changing settings in the theme panel. If you use cache, you won;t see any change until you clear it.
Thank you!
1. Are you going to change this in the future? On my old template there was such an option. Imagine if there are 200 articles on the site, then it is necessary to exhibit for each article featured image!?!
2. ОК!
3. And I need that the links in the articles be one color, and the headings and other buttons in a different color. Is it possible?
4. I cleaned the cache and checked in all browsers, it is in the comments that this tag is displayed as in the default settings. Then I customized the blockquote tag and the changes affected the content, but in the comments, there’s still something weird. You can watch on this page – http://sanotes.ru/comp-dlya-ofisa-2016/
My CSS:
.td-page-content blockquote p,
.td-post-content blockquote p,
.wpb_text_column blockquote p,
.td_block_text_with_title blockquote p,
.bbpress blockquote p,
.woocommerce #tab-description blockquote p,
.mce-content-body blockquote p,
.comment-content blockquote p {
display:block;
background: #fff;
padding: 10px;
margin: 0 0 20px;
position: relative;
text-align: justify;
/*Borders – (Optional)*/
border-left: 2px solid #c76c0c;
border-right: 2px solid #c76c0c;
/*Box Shadow – (Optional)*/
-moz-box-shadow: 2px 2px 15px #ccc;
-webkit-box-shadow: 2px 2px 15px #ccc;
box-shadow: 2px 2px 15px #ccc;
}
blockquote a{
text-decoration: none;
background: #eee;
cursor: pointer;
padding: 0 3px;
color: #c76c0c;
}
blockquote a:hover{
color: #666;
}
blockquote em{
font-style: italic;
}
Hello sanotes,
1)Sorry, but in the feature, no change will be made in this case, sorry! Each post should have to be added a featured image.
3)You should use a bit CSS code if you want to change this color. You can provide your website URL so I can provide a more accurate code.
Thanks for the message!
3) My site: http://sanotes.ru
4) What about question four? How can I change the quotation block in the comments? https://www.dropbox.com/s/f6ye0ab26x66zr6/blockquote.jpg?dl=0
Original link to article – http://sanotes.ru/comp-dlya-ofisa-2016/
My settings in Theme Fonts\Post Settings – https://www.dropbox.com/s/5ynnv1a9624ysp9/blockquote-settings.jpg
Hello sanotes,
3)try to use the code below and place it in Theme panel -> Custom CSS area.
.td-read-more a{
background-color:red;
}
4)This -> https://www.dropbox.com/s/5ynnv1a9624ysp9/blockquote-settings.jpg should work as expected. Clear all the caches and check the results regarding on blockquotes.
Thanks.
Hi Catalin.
3) Yes, it works. Now, how to change the color of article title links. I tried this:
h3 a:link {color:#666;} But it didn’t work?
4) Сleaned the cache again, turned off caching completely. But all the same. In the comments, blockquote has not changed. You can see the last comment on this page: http://sanotes.ru/obnovlenie-pochtovogo-servera-iredmail-s-0-9-5-1-do-0-9-7/
-
This reply was modified 8 years by
sanotes.
Hi,
3. So you would like to change the color of the links inside the articles, a code like this will do that
.td-post-content a {
color: yellow;
}
The link color can also be defined as you are creating the post
– https://www.screencast.com/t/C6leh7fF
But that code is useful if you want to change them all at once.
4. Theme panel settings regarding the quotes will not apply in the comments section, only in the post or page content. I could give you a code to style the quotes in the comments
– https://www.screencast.com/t/mhMS0NpO
.comment-content blockquote p {
font-family: Verdana, Geneva, sans-serif;
font-size: 14px;
line-height: 20px;
font-style: normal;
font-weight: 500;
}
Hi Simion.
3. No, the color of the links in the post I want to keep this what it is. I need to change the color of the link when hovering over the title of the article. https://www.dropbox.com/s/8pb1e1guxyj4hhq/a-hover-title.jpg
I tried the following code: but it did not work.
.td-module-title a:hover {
color: #2F4F4F;
}
still, the color of the hover link is blue.
4. ОК, thanks. It works.
Hi,
3. I understand now, the hover color of those titles will be the theme accent color you set in the theme panel
– https://www.screencast.com/t/vjVoH4PEVo2
If you want to keep the accent color and change only the hover color of the articles, you could use a code like this for that module
– https://www.screencast.com/t/WmkjuqXY
.td_module_12:hover .entry-title a {
color: yellow;
}
The code can be changed if required.