- TutorialsDefault Block Settings Guide
Hi
Do you want to remove the header form all pages? Our theme wasn’t designed to hide header part of the page. However this can be achieved using this css in theme panel > custom code > custom css: http://screencast.com/t/8sopnVeJZRGE
.td-header-wrap{
display: none;
}
Thanks!
Hello,
1) The social icons in the footer can be edited with css. Use this code:
.td-footer-wrapper .td-social-icon-wrap a{
color:red!important
}
2) The line that appears under the menu items when you hover over the main menu is affected by the theme accent color: http://screencast.com/t/uoHzlRls – http://screencast.com/t/rqmqCgDo
3) The header cannot change it;s width. There are only 2 variations for the header and footer width. If a background color or image is set, the header and footer will go into boxed mode. If no background image or color is set, they will display full width.
Thank you!
Hello,
Unfortunately affiliate banners were not tested with our theme so we cannot provide a solution. Please ask the ad provider how to implement their ads as maybe it needs code added in the head html tag in header.php as mkost of this type of ads require.
Thank you!
how to totally remove the header just like instagram website
http://www.screencast.com/t/oKPItuYHViMA
http://www.screencast.com/t/ILkNUs31ULv
it seems cannot be done from the theme panel
please response
thank you very much
Hello alphaifel,
If you have to create a blank post page, you have to use a bit of CSS code to hide your header and sidebar for this specific post page using the post ID. As a hint, please follow the next steps for a simple post page, like this ->
The code is ->
.postid-441 .td-header-wrap, .postid-441 .td-ss-main-sidebar {
display:none;
}
The results -> http://screencast.com/t/qRowpbvB -> http://screencast.com/t/TpMTzprgQcQ
Hope this helps!
Thanks.
Hello darteyobeng,
Unfortunately, our theme does not have such a simple option that offers you a way to change the menu style for each page when you reading an article, sorry! Please notice that this request involves custom work and we cannot provide this type of services at the moment, sorry! As a hint, you have to change the header menu style for a different page using the page ID which you can get using your web inspector, like this -> http://screencast.com/t/QKzcCkHVXi8 Please notice that this is an example of a simple page from our side which has the page ID class -> .page-id-404 and then you have to add your desired style for your header menu for each page. Please notice that to accomplish this task is required to have some CSS/HTML knowledge in order to achieve as you wish.
Also, please notice that if you want to display more levels in our theme and you are not aware of the steps which are needed to take in this regard, please consider hiring a freelancer/developer to help you because we cannot provide customization services at the moment, sorry!
Thank you for your understanding!
Hi,
It seems the js code you are trying to insert is an add code. Ad codes will not work from the custom javascript code. You can try to insert them in the theme ad spots or inside a text block or a raw js element in visual composer. http://screencast.com/t/9ja9ZfKNaSld
Plaease follow the google implementation methods as some ads have to be added in the theme files inside the html head tag. That is found in the root folder of the theme in the header.php file.
Hope this helps.
Thank you!
LoL 😛 its a Top Header Menu, go to apparience, top menu, edit and delate this line. Save changes and its all
Hi,
when i press search button on mobile header , website hang , running on new version 7..ipad is ok, on hp hang..pls advise?
I’m using the same plugin as well. A single header ad appears all the way on a WordPress blog. I don’t think there can be two header ads. But, if you still want to display two header ads, there’s a possibility of trying slider revolution with WP PRO to display two ads as slideshows on header.
I haven’t tried that yet but you can try tweaking that..
Hi using a mobile device there are two menus displayed at the top.
I am using an iPhone 5. Also when scrolling down there is a grey space/gap between the menu and the article and it just keeps getting bigger as i scroll down (im guessing this is the header ad space)
How can i fix these issues?
my site is http://splashysplash.com thanks
Chris:
Thank you very much. I’ve already made use of some of your very thoughtful and helpful posts on these forums.
Since I am copying over the exact functions and rss template from prior theme, where I know it works, then the reason it’s not working now is specific to this theme. Even if my new feed were not working on this theme, then wouldn’t this code remove the feed all together?
remove_action( ‘wp_head’,’feed_links’, 2 );
remove_action( ‘wp_head’,’feed_links_extra’, 3 );
I see you even posted that code (with additional lines – which I tried as well) to remove the feeds from the header. I’ll try it on the main theme functions file and see if that works…since you’ve said it may not work on NP child theme.
Thanks.
Hello,
I’m using this plugin for my ads: WP PRO Advertising System – All In One Ad Manager (http://codecanyon.net/item/wp-pro-advertising-system-all-in-one-ad-manager/269693), it works fine but when I put more than one ads on the header, they doesn’t appear (only on header).
My website : https://reference-muslima.fr/
Thanks.
we have an issue on version7
mobile menue appear above header on desktop version
Some people do this the less elegant way:
a) add common well documented functions to remove default RSS feeds from head
b) create “custom” new RSS feed such as /sitename.cde/feed=custom using common tutorials online for “new custom RSS feed” — easily tested as working due to new URL/slug/endpoint
c) hard code the RSS link in the theme header.php file; or enqueue a new function to add the custom Feed URL to header.
Hi,
1.Our website sell seminar courses, I use 1 page(not post page) to create a content of 1 course. So, our website will have a lot of pages , then I want to make something like category page that show all the pages i have(but not include About us page and Privacy policy page just show only the seminar course pages). How can i do it?
———-or————
2.How can i create a blank post page. I mean a post page that not contain header and sidebar.But still have footer and everything remain the same.
Hello,
Is there a way I can have the homepage to feature a custom header menu style that is different from other pages, say when reading an article?
Hello,
thank you, I found this post as very useful I made changes bellow it may helps anyone else:
<div class="td-header-rec-wrap">
<?php
// Custom ad for custom pages
if ( is_page( 'page1' ) OR has_category( 341 ) OR in_category( 341 ) OR is_category( 341 ) OR cat_is_ancestor_of( 341, $cat ) ) {
echo td_global_blocks::get_instance('td_block_ad_box')->render(array('spot_id' => 'custom_ad_1'));
} else {
// show the header ad spot
echo td_global_blocks::get_instance('td_block_ad_box')->render(array('spot_id' => 'header'));
}
?>
</div>
Thank you again.
Best regards,
Tim
Hi,
You can use this css to do it:
.td-header-sp-recs{
float:right!important;
}
Thanks.
Hi,
Please provide a link to your site so we can inspect it to see what header style you use so we can see if a css trick will do it.
Thank you!
I solved the B point with this code:
.td-header-sp-logo img {
margin: 0px;
}
Only missing the A point.
Hi. I followed instructions in another post to align the header´s logo to the left. I used this custom code:
.td-header-style-3 .td-header-sp-logo {
margin-left:0;
}
The problem is that everything is aligned left and now the Ad space is not aligned to the right.
I want to:
A. Have the Ad space aligned completely to the right
B. Align the logo completely to the left. As you can see, using the previous code doesn´t fit the alignment exactly to the Menu extreme.
Any clues?
Thanks!!!
Hello,
In orer to do that you can either use a plugin such as adrotate or you can edit the theme files and add conditions to the ad code. You can find the header ad here: http://screencast.com/t/syA5BkaQsjQ If you have the coding knowledge, you can add an if else statement here and use the is_page function: https://developer.wordpress.org/reference/functions/is_page/
Hope this helps.
Thanks.
Hello Andrei,
I am trying to implement a Wallpaper ad but it seems like my website is hiding the top part:
I took a wallpaper example from: http://sport.sky-host.cu.cc/wp1/
On my site: http://www.glitched.co.uk – you can see that the header of the ad is cut off.
Do you know why this is doing this?
Thanks,