Search Results for '.td-main-page-wrap'

    No search results were found in Documentation!

Results from the Forum
Bogdan B.
tagDiv Staff

Hello Anna.

You will have to use a css code to remove the top padding on pages.
Add this code in the theme panel->custom css box:
.td-main-page-wrap{
padding-top:0!important;
}

This code will affect all pages. The white space is there for the title and breadcrumb. If you have pages where you want to show the page title and breadcrumb then you will have to adapt the css code above to only affect the specific page. In order to do that you will have to use the page id. You can see the page id like so: http://screencast.com/t/kKkLxEZo
Then you ca use it in the above code like so:

.page-id-147 .td-main-page-wrap{
padding-top:0!important;
}

Thank you!

Alin [tagDiv]
tagDiv Staff

Hi,

Please update the Social Counter to the latest version provided with the theme. You can find it in the /plugins folder from theme package that you download from themeforest – http://screencast.com/t/6e7bdiRf The procedure is the same like for Visual Composer – https://forum.tagdiv.com/how-to-update-visual-composer-plugin/

I’m not sure where you use the Slider, on your homepage I cannot see on, so maybe you have removed it.
You can use this custom css to reduce the top padding – http://screencast.com/t/ZOBfhdBfb

.home .td-main-page-wrap {
padding-top: 15px;
}

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

Please try this custom css in Theme Panel > Custom Css – http://screencast.com/t/VXwtLGw3QT

.home .td-main-page-wrap {
padding-top: 0;
}
.home .td-main-content-wrap {
padding-bottom: 0;
}

Thanks!

Bogdan B.
tagDiv Staff

Hello,

Please use this css code to reduce the top margin on the homepage:
.home .td-main-page-wrap{
padding-top: 0!important;
}

Add the code in the theme panel->custom css box

Thank you!

Bogdan B.
tagDiv Staff

Hello,

The image shows a big grid element you can add on your site in visual composer. You can find the element in the visual composer elements list when editing a page. It is called big grid 1: http://demo.tagdiv.com/newspaper/big-grid-1/
As for the spacing above it, you can use this css to remove it:

.home .td-main-page-wrap{
padding-top:0!important;
}

Add the code in the theme panel->custom css box

Thank you!

Bogdan B.
tagDiv Staff

Hello,

There is no setting to remove the top padding of the homepage but you can use this css in the theme panel->custom css box:

.home .td-main-page-wrap{
padding-top:0!important;
}

Thank you!

Alin [tagDiv]
tagDiv Staff

Please try this css code to remove the top padding on homepage in Theme Panel > Custom Css – http://screencast.com/t/K2CAgQrCp

.home .td-main-page-wrap {
padding-top: 0;
}

Hope this helps!

Bogdan B.
tagDiv Staff

Hello,

You can view the page source to see the classes, also learn to use the ‘inspector’ in Chrome (F12) as that is super helpful in finding classes for specific elements.
The main content is different for a post or for a page depending on what you use the plugin for.
It also depends if the plugin considers the sidebars in the same main content or not.
For post it could be: .td-main-content-wrap or .td-ss-main-content
For pages it is: .td-main-page-wrap
The post title selector: .entry-title
Post Navigation Container: .td-post-next-prev
Comments Container: .comments

I think I get what you are trying to do, and if you can get the post slider/infinite scroll to work, please share your solution with the community so we can help other users that need this option. We did not find any plugin that works though until now. Maybe you will be more lucky :).

Thank you!

Bogdan B.
tagDiv Staff

Well I made it that way. If you want it to stick to the header add 0 to the padding in the code above like so:
.home .td-main-page-wrap{
padding-top:0!important;
}

Thanks

Bogdan B.
tagDiv Staff

Hello,

I assume you are referring to the top space on the homepage. Please try this code:
.home .td-main-page-wrap{
padding-top:2px!important;
}

You cna add the code in the theme panel->custom css box.

Thank you!

Andrei L.
tagDiv Member

Hi

1. Try tis css in theme panek > custom code> custom css:

.td-main-page-wrap{
overflow: hidden;
}

2. I’ve checked your site and noticed that the second registration link is added as a menu item in top menu: http://screencast.com/t/PHFgkdl2Pkso Try to edit your menu under Appearance > Menus and remove this item: http://screencast.com/t/HFyWIDr8p

Thanks!

Andrei L.
tagDiv Member

HI

Try this css: http://screencast.com/t/0TSzrivVH

.td-main-page-wrap {
opacity: 0.7;
}

Thanks!

Andrei L.
tagDiv Member

HI

Try this css in theme panel > custom code > custom css:

.td-main-page-wrap {
padding-top: 0;
}

Let us know ho it goes and if the problem persist please provide your site url so we can have a closer look.
Thanks!

Catalin
tagDiv Staff

Hi,

Try the code below ->

@media (max-width: 767px){
.td-main-page-wrap {
padding-top: 0;
}

The results -> http://screencast.com/t/Nww8UPVx757

Thanks.

Andrei L.
tagDiv Member

Hi

Try this code: http://screencast.com/t/RdUIsVB6PZ

.td-main-page-wrap {
padding-top: 0;
}

Thanks!

Bogdan B.
tagDiv Staff

Hello,

Unfortunately our theme does not have this option so one alternative will be to remove the menu from that specific page if you want to have like a landing page.
.page-id-2127 .td-header-style-1 {
display:none;
}
.page-id-2127 .td-main-page-wrap{
padding-top:0;
}

Thank you!

Andrei L.
tagDiv Member

Hi

Unfortunately the theme does not have an option to change the background color for poage contetn but you can achieve that using this css: http://screencast.com/t/GGLcbhkGM

.td-main-page-wrap{
background-color: aqua;
}

Hope this helps!
Thanks!

Bogdan B.
tagDiv Staff

Hello,

There is a default padding on pages seen especially if you use big grids. You can remove it with a bit of css like so:
.td-main-page-wrap{
padding-top:15px!important;
}

However if you use a trending now element or different elements, this padding will be required.
You can target specific pages using the unique page id like so:
.page-id-90 .td-main-page-wrap{
padding-top:15px!important;
}

http://screencast.com/t/PJTVhsEE

As for the sidebar you will have to provide a link to your site so I can inspect this element

Thank you !

Catalin
tagDiv Staff

Hello SirBrayden,

I have checked your website and I have noticed that there is talking about some padding-top for the main page container. If you want to decrease it, try the code below and place it in Theme panel->Custom CSS area.

The code is ->

.td-main-page-wrap {
padding-top:25px;
}

The result -> http://screencast.com/t/zsQ3CV4UDrv

Thanks.

Bogdan B.
tagDiv Staff

Hi,

1) Sorry but revolution slider cannot replace the menu from our theme. We have no solution to provide in this regard as you will need customization services to get it done which we cannot provide. Sorry.

2)You can remove the top padding on any page based on the page id. On the homepage you can use this code:
.page-id-8904 .td-main-page-wrap{
padding-top: 10px;
}

Thank you!

miroslavkulich
tagDiv Member

Hi, it also didn´t help. Here si my Custom CSS:


@media
(max-width:767px){
.td_block_13 .td_block_inner:after {
clear: both;
display: table;
content: “”;
line-height: 0;
}}


@media
(max-width:767px){ .td-pb-span4 .td_block_15{ float:none!important; }


@media
(max-width: 767px){
.td-menu-mob-open-menu .td-mobile-nav-wrap {
z-index: 1;
}
}

.td-md-is-firefox {
.td-main-page-wrap {
padding-top:0!important;
}
}

Catalin
tagDiv Staff

Hello miroslavkulich,

Try to add the !important tag for the code so, in this way, your code will have a higher value and should work as properly.

.td-md-is-firefox .td-main-page-wrap {
padding-top:0!important;
}

Thanks.

Catalin
tagDiv Staff

Hello RaulCalin,

Please try the code below and place it in Theme panel->Custom CSS area.

.td-md-is-firefox .td-main-page-wrap {
padding-top:0;
}

Hope this helps!

Thanks.

Bogdan B.
tagDiv Staff

Hi,

The style of the theme ads a min width to the logo and as you use a very narrow logo, it will require a bit of css for better positioning. Please use this code:

.td-politics .td-header-style-11 .td-logo-wrap-full{
min-height: 160px!important;;
}
.home .td-main-page-wrap{
padding-top:0!important;
}

I hope this helps.

Thank you!

Catalin
tagDiv Staff

Hello Boddickerdk,

Please try the code below ->

.td-main-page-wrap {
padding-top: 5px!important;
}

Thanks.

Viewing 25 results - 151 through 175 (of 238 total)