Hello there!
I have 2 quieries.
1) I’m attaching the an image of several items that I need to change the color and/or size of. Please see attache image: http://www.screencast.com/t/ASbhNNYNCj5
2) The “read more” button below blog posts, how do I change color + size?
Thank you!
Hello,
The black headers color is handled by this setting in the theme panel: http://screencast.com/t/jogyrvtk – http://screencast.com/t/8sW0VLmkbhny
The post comment button and search submit will have to be changed with css:
.comments .form-submit input[type=submit], .widget_search input[type=submit]{
background-color:red;
}
The social icons do not appear to come from the theme. They are a plugin so maybe you should check the plugin settings.
As for the font sizes they are controlled from the fonts section.
Please provide an example of what red more button you are referring to.
Thank you!
Hi,
Thanks for the super fast answer Bogdan! All of my first question are solved, except for the fonts. I literally spent an hour there and couldn’t find the font settings for that post comment button
Example of the read more button: http://www.screencast.com/t/Z2866btRh
So changing its color is what I’d like. Maybe even change it to a button (attached image), which only appears as “Continue” if I set the homepage as a blog (latest articles) and not as a static page.
Read more button: http://www.screencast.com/t/Z2866btRh
Continue button: http://www.screencast.com/t/BbNLc9rdxNFR
Thank you!
By the wa I have 7.4 version maybe thats why I dont see the font. I saw 7.5 is the latest? How can I download that?
Hello,
The css seems to be added to the same css as the color so you can use this code to change the font size:
.comments .form-submit input[type=submit]{
font-size:16px!important;
}
The font settings are the same in 7.5 though (https://forum.tagdiv.com/how-to-update-the-theme-2/)
If you want to change the text on the read more button you can do so from the translation settings here: http://screencast.com/t/Z09ylO2Ge
As for it’s style, that is determined by the demo you use. The button style can only be altered through css.
Pleas provide a link to your sie so i can inspect it and provide the proper css
Thank you!
Hi Bodgan,
Thanks again for the quick answer.
My site is called amilucid.com.
Please don’t forget to tell me how I can change the comment section font size + the comment box text size (that is inside the gray comment box), as I cannot find it in the “theme fonts” section.
Thank you!
Hi,
You can transfor the read more into a button using this css:
.td_module_17 .td-read-more a{
font-size:16px;
background-color: #7799ef!important;
padding:10px;
color:white
}
As for the comment fonts section:
#reply-title{
font-size:16px!important;
}
.td-form-comment textarea, .comment-form-input-wrap input[type=text]{
font-size:16px!important;
}
Thanks.
Hi Bogdan!
All of those worked great!
One more final thing: http://www.screencast.com/t/vrirClbD2I
The homepage is set to be a blog. But there is no way to modify the font size from the backend. Can you help me?
Thank you!
Well our theme colors will not affect all elements unfortunately. The page text refers to a text added on a page that is not inside a block or visual composer element. Any element that is created using visual composer. can only be changed with css or from the block settings (headers and hover colors)
You can easily create your about me page without using visual composer, and then the color sin the theme panel will affect your page.
Thank you!
Thanks again Bogdan. I’ll modify it later.
About the “last” question:
“Hi Bogdan!
All of those worked great!
One more final thing: http://www.screencast.com/t/vrirClbD2I
The homepage is set to be a blog. But there is no way to modify the font style* from the backend. Can you help me?
Thank you!”
*corrected
Sorry, they are too many questions in a row and they are easy to miss.
The module 15 you use on your homepage pulls the post content directly so the post content font is goind to affect it: http://screencast.com/t/WOQ8HpZ1S
Thank you!