Hello,
Unfortunately there is no option for it in the theme panel, You will need custom work to do it.
You can change the thumb size used by the block by identifying the module file used by it. In this case it’s module 3: http://screencast.com/t/f4EDZUpfC7yJ
You can change the thumb size to another used by the theme: http://screencast.com/t/DsEsN5vR53Bl
But this will cause further problems: http://screencast.com/t/OthxWLXR6Z Images will stretch over the titles so it will need further adjusting to display properly.
I used the 534×462 thumb size. You can use this custom css in the theme panel->custom css to get the titles a bit lower:
.td_module_3 .td-module-thumb {
height: 275px!important;
}
I hope this helps.
Thank you!
Hi
You can use tabs from Visual Composer to achieve a similar layout: http://screencast.com/t/qQBPT8gdlHX Note that in the current version of Visual Composer the shortcode for tabs has been changed and they are different from those on our demo. We will fix this in the next theme’s updates but meanwhile you can use this custom css in theme panel > custom css: http://pastebin.com/ttmX0r1U – http://screencast.com/t/odvibm25F67g
Thanks!
Hi
Try this css, I’ve targeted only this page: http://analisidelsangue.net/wp-signup.php
@media (min-width:1024px){
.page-id-29 .mu_register{
width:900px;
}
}
@media (min-width: 768px) and (max-width: 1022px){
.page-id-29 .mu_register{
width:700px;
}
}
.page-id-29 .apsl-login-networks{
width:410px;
margin-left:auto;
margin-right:auto;
}
.page-id-29 .apsl-login-new-text{
text-align:center;
}
Thanks!
Hi,
I do not use on your website Google Fonts.
How to remove the download Google Fonts?
How to remove these lines:
<link rel='stylesheet' id='google_font_roboto-css' href='http://fonts.googleapis.com/css?family=...
<link rel='stylesheet' id='google-fonts-style-css' href='http://fonts.googleapis.com/css?family=...
When I remove this have any problem on my website.
Hello,
Unfortunately there is no option for this in the theme but you can use a bit of CSS to hide author name on specific posts: http://screencast.com/t/MLEynQa6zY
Every post has a specific ID on the body tag. You need to identify this id and then use it to hide the author like so:
.postid-196 .td-post-author-name{
display:none!important;
}
I hope this helps.
Thank you!
Hi
To change the color which appear when the user hover over thumbs use this custom css: http://screencast.com/t/fsrRSy9Hh
.td-grid-style-5 .td-big-grid-post .td-module-thumb:after {
background-color: #f7be68;
}
Thanks!
Hi Bogdan,
I applied your suggestion but now I have a new problem…
if you see the hp of the site, right column, the widget box of login…
before the custom css was right… now the look&feel is wrong
before the social botton was one up and one down .. now they are on the same line..
http://analisidelsangue.net/
how can solve the problem?
thank you
a
Hi,
You can add the code in the theme panel->custom css box.
Please check this issue without plugins. Please disable all plugins except visual composer and bbpress and check it again to see if it is a plugin conflict.
Let us know how it goes!
Thank you!
Hi Catalin,
I was added last code but That Code is Working at Main Menu at style 2
See here: http://www.screencast.com/t/flS3Nb21KP
I want to make border below logo and ad in header style 2, So please provide me Dear. and give me hint CSS code fixing Place.
Thank You
-
This reply was modified 10 years by
Aditya.
Hi Bogdan, thank you for your reply.
How can I use / insert the code you suggested me?
Can I put it in “custom css” of my theme? or where? in which file?
I have another problem regarding the registration/login of user on bbpress and the theme I’m using…
for example.. if unlogged user try to login here
http://analisidelsangue.net/forums/topic/gammopatia-monoclonare-igg-k/
at the end of discussion clicking on “Log in/register” it appairs a black screen without any possibility to log in — Can I solve this problem in some way? thank you
alessandro
thank you very much for reply
Hi Catalin,
I was added last code but That Code is Working at Main Menu at style 2
I want to make border below logo and ad in header style 2, So please provide me Dear. and give me hint CSS code fixing Place.
Thank You,
Hello,
You can use the following CSS code to adjust the size and center position:
@media (min-width:1024px){
.mu_register{
width:900px;
}
}
@media (min-width: 768px) and (max-width: 1022px){
.mu_register{
width:700px;
}
}
If you want to adjust the social icons as well:
.apsl-login-networks{
width:410px;
margin-left:auto;
margin-right:auto;
}
.apsl-login-new-text{
text-align:center;
}
result: http://screencast.com/t/djnFV61gsL4
Thank you!
Hi
Try this css in theme panel > custom css:
table td{
border: 0px solid #e6e6e6;
border-bottom: 1px solid #e6e6e6;
}
.vc_custom_1445898002865{
background-color: #FFFBFB;
}
Note that fore tabel’s background color I used a temporary class generated by VC which will change when the row is edited and the css will not be applied after that. You can add a specific id for that row and use it instead of this class: .vc_custom_1445898002865 http://screencast.com/t/CxnDg9zoWma
The css will look like this:
#special{
background-color: #FFFBFB;
}
Thanks!
Hi
As a css rule to be aplied only for mobile devices you need to use media queries like here: http://screencast.com/t/jCUEnWX9XAE
@media(max-width: 768px){
.woocommerce-page div.product div.images, .woocommerce-page div.product div.summary{
float: none!important;
width: 80%!important;
margin-left: auto;
margin-right: auto;
}
}
The Up-Sells products are controled by woocomerce and they have a width wich don’t allow three product on the same row but you can use this css to achieve that: http://screencast.com/t/8u5duk5wa
.woocommerce-page ul .product{
width: 29.25% !important;
}
Thanks!
Hi,
You can create a page to display all your authors using Authors Box block. It will display all your authors(name, photo and posts and comments counter) – http://screencast.com/t/l1baxeL773s2
If you need also author bio information, you will have to add this code in td_block_authors.php file – http://screencast.com/t/LQFrzsG1J – http://pastebin.com/UUutjeP7
And add the following css in Theme Panel > Custom Css – http://screencast.com/t/2esvImmE
.td_top_authors div.item-details {
height: auto;
}
Thanks!
Hello Andrei,
You can use this generator from feedly to create your button and link to your account: http://feedly.com/factory.html
Then, for the header icons you can place the generated code in the top-widget.php file like so: http://screencast.com/t/3mrx3E76 result: http://screencast.com/t/QTQUNthjHY3b
It will need a bit of css styling to get in line with the others. You can add a CSS class to the a link generated on the feedly site as an example:
<a class="feedly-top" href='http://cloud.feedly.com/#subscription%2Ffeed%2Fhttp%3A%2F%2Fmyfeed' target='blank'><img id='feedlyFollow' src='http://s3.feedly.com/img/follows/feedly-follow-circle-flat-white_2x.png' alt='follow us in feedly' width='28' height='28'></a>
Then you can style it with css using the ‘feedly-top’ class.
For the bottom widget you will have to use the code in td_footer_extra_bottom.php like so: http://screencast.com/t/7HIBb5yxoaul
Keep in mind that you may have to change all the quote symbols to match the php syntax. A text editor line notepad++ will warn you on this.
Then you can also style it with css to position it.
I hope this helps
Thanks.
Hello,
1) The top menu containing the login widget is hiden on the mobile version. It was a design choice and it can be forced to appear using custom css:
@media (max-width: 767px){
.td-header-top-menu-full {
display: block !important;
}
.td-header-sp-top-menu {
display: block!important;
}
.menu-top-container {
display: none !important;
}
.td-header-sp-top-widget {
display: none !important;
}
}
Just add the code in the theme panel->custom css box.
2) and 3) please provide more details to your problems. Be more descriptive and provide a link to your website so we can inspect the problems and come up with a solution.
Thank you!
Hi,
You could try this custom css in Theme Panel > Custom CSs -http://screencast.com/t/TvuZ3DjQcrxt but please note that it also depends of your image size(you have to use a bigger logo than the Travel, I have modified the image size):
@media(min-width: 768px) {
.td-header-style-5 .td-main-menu-logo {
height: 100px;
position: absolute;
}
.td-header-style-5 .td-main-menu-logo img {
max-height: 100px;
}
.td-header-style-5 .sf-menu {
float: right;
}
}
Thanks!
Hi sejpost,
Yes, it is possible. First of all you must create a custom link within wordpress like this-> appearance->menu->custom link: http://screencast.com/t/cwbTeaDq and in next step please try a bit of css below:
@media (min-width: 768px){
.menu-item-57 {
display: none;
}
}
Attention: Every custom link newly created has a different id and you must target this in CSS for a result. This id you can find like this: http://screencast.com/t/Nz1kracbMa7a
The result: http://screencast.com/t/812JzGp9473 http://screencast.com/t/V6fAus84ivvx
For your second request, our theme has not been designed to display view of the desktop version in mobile version.
If is not what do you want, please provide more details.
Hope this helps.
Thanks.
-
This reply was modified 10 years by
Catalin.
Hello,
You have to be careful with css as it is a very specific language, so a code that will work on one header style will not work on another. We generally use the browser inspector (chrome) and an extension called live css editor when creating the code. It helps a lot!
I have checked your site and it seems that your modifications apply.: http://screencast.com/t/fuMVmyU2S – http://screencast.com/t/QQ73ujGNyDQx
Thank you!
Hi
Sorry about that. I’ve tested with a 1px margin and didn’t noticed that margins. Replace the previous css with this one, it should work fine: http://screencast.com/t/sE3zNaXCz
.td-grid-group-1 .td-module-thumb, .td-grid-group-2 .td-module-thumb{
margin: 0 10px 0 0;
}
.td-grid-style-5 .td-big-grid-scroll .td-big-grid-post{
padding-top: 10px;
}
.td-grid-group-1 div:last-child{
padding-top: 10px;
}
.td-grid-style-5 .td-big-grid-scroll .td-big-grid-post:first-child{
padding-top: 0;
}
.td_block_big_grid_7 {
background-color: #fff;
}
To change the thumb’s background color try this css: http://screencast.com/t/GfF3PpTLvaBA
.td-grid-style-5 .td-module-thumb a:last-child:before{
background-color: #8D8484;
}
Thanks!
-
This reply was modified 10 years by
Andrei L..
Hi,
Glad that you made it! I have checked your page source and they are moved to the footer like you said. But the custom css is still there, you said you move it in the stylesheet file – http://screencast.com/t/ezFwsuFG32G
If you move the custom css in style.css please remove it also from Theme Panel > Custom Css. I’m not sure what you mean that it failing.. please provide more details.
Also you could try to save the css code in a text file and try pagespeed test without it and see if it works.
Thanks!
Hello,
Using Newspaper V6.5.1, I tried changing this CSS:
.td-header-style-3 .td-header-sp-logo {
width: 224px;
margin-left: 0;
}
to this CSS in “Tablet landscape”:
.td-header-style-3 .td-header-sp-logo {
margin: 21px 20px 0px 0px!important;
width: 300px!important;
height: 100px!important;
}
…but the changes are not taking effect.
I’ve also made similar !important changes in Tablet Portrait which aren’t taking effect either. Modifications in both tablet Advanced CSS areas don’t even show in browser debugging.
However, changes I’ve made in Desktop (1141px +) ARE taking effect… even without adding “!important”.
Am I doing something wrong?
Thanks you
Hello,
You can achieve this by using a bit of custom CSS:
.td-social-but-text{
display:none!important;
}
Just add it in the theme panel->custom CSS box.
result: http://screencast.com/t/kPronW3xlvn1
Thank you!
Hi,
I have checked your website and it does not use our theme. The information facebook pulls is not controlled by the theme, but you can use SEO Yoast to control it.
As for the smart-list, you can select a post template that does not use the featured image: http://screencast.com/t/S1mhNWErXD
Or hide featured image on existing post templates with css. For example this code hides featured images on the default post template:
.td-post-template-default .td-post-featured-image{
display:none;
}
I hope this helps!
Thank you!