Hi,
If you want to divide/separate the sidebar content for main content the best solution in this case would be to use a different block in the sidebar, I noticed you use block 3 in the sidebar, maybe it should look much better to use block 5 or 4.
You can also do it using css and use the display: none; property on block images but I would not recommend that.
Thanks
Hi,
Find this http://screencast.com/t/hMxNlTLBb8 conditions in your theme files and remove them or comment them out, this way the theme should behave the same when using each type of post format.
Thanks
Hi,
Use page builder to create and customize your block then move to classic mode get the shortcode and add it using the do_shortcode function in which template you like.
You can search the forum or the web on how to add the shortcode using this method.
Thanks
Hi,
Add this css in Theme Panel > Custom CSS:
..this is for the lists green check, you can change it as you like:
.single ul {
list-style-image: url('http://www.indexbraille.com/Website/Templates/IndexBraille/Theme/Images/list-style-check.png');
}
and this is for the line spacing betwen line of lists, also you can change it like you like:
.single ul li {
line-height: 30px;
}
This will apply to post’s lists.
Thanks
Hi,
Please try to search the web for a solution.
This may help:
http://codex.wordpress.org/Post_Type_Templates
Thanks
Hi,
Use this css to center the menu:
.sf-menu {
position: relative;
left: 200px;}
Adjust the left: 200px as you like to look.
For the menu sahdows use this css:
.td-full-layout .td-menu-background, .td-boxed-layout .td-menu-wrap {
background: none !important;
}
.td-full-layout .td-menu-background:after, .td-boxed-layout .td-menu-wrap:after {
display: none !important;
}
Thanks
Hi,
I have checked your site and seems that you do have and background set: http://screencast.com/t/9LgV3MzyDd
That’s why the layout for your site it’s still boxed: http://screencast.com/t/fwZd701uKh
Please go to Theme Panel > Theme Colors and clear the background color like this: http://screencast.com/t/7Wk75Hylr
Thanks
Hi,
The Visual Composer plugin will be updated in the next theme update.
The version of VC that was included in the last theme update was 4.2.3.
Thanks
Hi,
You can do it from td_module_blog.php file like this: http://screencast.com/t/jRBHofPH
This file can be modified using child theme as well.
Thanks
Hi,
That border it’s made via css by adding content after the menu using the :after selector like this: http://screencast.com/t/re2f76Kx6N
This is the css code:
.td-full-layout .td-menu-background:after, .td-boxed-layout .td-menu-wrap:after {
position: absolute;
bottom: -16px;
left: 0px;
display: block;
content: '';
height: 12px;
width: 100%;
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
background: transparent url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAMBAMAAABRpcpkAAAAJFBM…AIElEQVR4XmNgYBBgUGAwYHBgCGBIYChgaGCYwLCAYQMAH7gEIQV1/xQAAAAASUVORK5CYII=') repeat-x;
pointer-events: none;
}
You have to select every block you want and add this using the :after selector.
What you want is not an easy task and needs custom work, you could do it yourself or hire a freelancer to do it for you.
Thnaks
Hi,
I have checked your site and found this errors in the console http://screencast.com/t/aRRysPc1
Please disable all plugins and check if this issue is still present, leave only those that the theme requires enabled.
Thanks
Yes, you’re right.
Glad you solved it.
Thanks for the mesaage
Hi,
This skipped us, will fix this in the next update.
Sorry about this!
Thanks for understanding!
Hi,
Please add this css in Theme Panel > Custom CSS:
.wpb_row.row-fluid div.thumb-wrap a img {
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
-o-border-radius: 10px;
border-radius: 10px;
}
.wpb_row.row-fluid .iosSlider div.thumb-wrap a img {
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
-o-border-radius: 0px;
border-radius: 0px;
}
Thanks
Hi,
I have checked your site and the banners look fine to me now http://screencast.com/t/GiG3QDJ8
Follow the solution Radu provided and add this custom CSS in Theme Panel > Custom CSS:
#td_social_networks_buttons {
background-color: #f5f5f5;
border-top: 1px solid #e6e6e6;
border-bottom: 1px solid #e6e6e6;
height: 35px;
}
#td_social_networks_buttons ul{
position:relative;
top: -21px;
float: right;
}
.td-text-share {
position: relative;
top: -5px;
right: 125px;
font-size: large;
font-weight: bold;
}
Thanks
Hi,
Use this css:
.single-format-gallery .td-slide-on-2-columns {
margin-top: -25px;
}
Should work, if not you can do this yourself, see here: http://screencast.com/t/jRmDHBUKUtRQ
Thanks
Hi,
If you are referring to this gap http://screencast.com/t/zBy5iursCBT it can be done using this custom css:
.single .td-post-text-content {
margin-top: -40px !important;
}
Hope this helps!
Thanks
Hi,
Is this what you are looking for? This is the function that gets the thumbs for the module http://screencast.com/t/foGHudqKcG
Hope this helps!
Thanks
-
This reply was modified 12 years by
Lucian.
Hi,
In that case you have to remove the css which hides the header from custom css in theme panel and select header style 6 http://screencast.com/t/TgkIv0GMVk and then from header.php file comment or remove this line: http://screencast.com/t/wYFy305hp12
Thanks
Hi,
There is no ideal image size, better for post style 4 would be a wide image not a tall one, so an image of type landscape would be recommended.
You can see here for example the details of an images we use http://screencast.com/t/jx7k1FyFr0
Thanks
Hi,
The code from td_module_blog file it’s the same, you have to add the StumbleUpon button code the same way http://screencast.com/t/RXOiF0kQX8b
Thanks
Replied via Dashboard!
Thanks for the message!
Hi,
We know about this issue, it will be fixed in the following updates, as you said you can chose different post templates for different post categories until then.
Sorry about this
Thanks for understanding
Hi,
You have to add an container element like a div here: http://screencast.com/t/9eyGl3Hsr335
You can use the a function like get_the_date() to do it http://codex.wordpress.org/Function_Reference/get_the_date
After that you can position it via CSS.
Hope this helps!
Thanks
Salut,
Te rog adauga acest CSS in Theme Panel > Custom CSS:
.td-full-logo .td-grid-wrap, .container-fluid, img {
padding-right: 0px;
padding-left: 0px;
padding-top: 0px !important;
}
Mersi!