- NewspaperModules Builder in Newspaper Theme
- NewspaperIntroduction to CPT and ACF with Newspaper Theme
- NewspaperHow to edit modules for Flex Block X
- NewspaperStripe Setup
- NewspaperPayPal Setup
- NewspaperAdd Cryptocurrency Price Ticker Widget
- NewspapertagDiv Shop
- NewspaperDesign your post pages using the Default Templates
- NewspaperTheme modules and blocks
- NewspaperUsing the Theme Translations with WPML
- NewspaperHow to Set the Image Avatar
- NewspaperNewspaper theme documentation
- NewspaperSmart Sidebar
- NewspaperBreadcrumbs
- NewspaperFooter Builder
- NewspaperMain Menu
- NewspaperInstalling Pre-built Websites
- NewspaperPre-built Websites: Introduction
- NewspaperWhat’s Included in the Newspaper Theme Package
Hello
How can i add the Letterboard 728 x 90 on the home page as it is on the demo theme..
Hello @Lucian How can i close all the spaces on the home page..You can see my home page here http://www.latestnaija.com.
2. How can i add the Letterboard ad on the home page as in the demo?
You need to *decide* what fonts you wish to use for the theme.
If all of this is beyond you, then you can simply stick with the standard font usage as most sites do. What we’re talking about here is somewhat advanced; and if it doesn’t make sense, then you should likely skip this and worry about other necessary site optimizations.
If you look at my code from functions.php in 4.4 version of theme, you will also need to comment out the line that calls the Google fonts (using // ):
/* ----------------------------------------------------------------------------
CSS - front end
*/
function td_load_css() {
//google fonts
if ((defined('TD_DEPLOY_MODE') and (TD_DEPLOY_MODE == 'demo' /*or TD_DEPLOY_MODE == 'dev' */)) or defined('TD_SPEED_BOOSTER')) { //on demo and dev we load only the latin fonts
//modify this collection if you want to optimize the fonts loaded
//collection url -> : http://www.google.com/fonts#ReviewPlace:refine/Collection:PT+Sans:400,700,400italic|Ubuntu:400,400italic|Open+Sans:400italic,400|Oswald:400,700|Roboto+Condensed:400italic,700italic,400,700
//wp_enqueue_style('google-font-rest', td_global::$http_or_https . '://fonts.googleapis.com/css?family=PT+Sans:400,700,400italic|Ubuntu:400,400italic|Open+Sans:400italic,400|Oswald:400,700|Roboto+Condensed:400italic,700italic,400,700'); //used on menus/small text
}
and I deleted this
$td_user_fonts_list = array();
$td_user_fonts_db = td_util::get_option('td_fonts');
if(!empty($td_user_fonts_db)) {
foreach($td_user_fonts_db as $td_font_setting_key => $td_font_setting_val) {
if(!empty($td_font_setting_val) and !empty($td_font_setting_val['font_family'])) {
$td_user_fonts_list[] = $td_font_setting_val['font_family'];
}
}
}
if(!in_array('g_438', $td_user_fonts_list)) {//'g_438', //Open Sans
wp_enqueue_style('google-font-opensans', td_global::$http_or_https . '://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700&subset=latin,cyrillic-ext,greek-ext,greek,vietnamese,latin-ext,cyrillic'); //used on menus/small text
}
if(!in_array('g_617', $td_user_fonts_list)) {//'g_617', //Ubuntu
wp_enqueue_style('google-font-ubuntu', td_global::$http_or_https . '://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700,300italic,400italic,500italic,700italic&subset=latin,cyrillic-ext,greek-ext,greek,latin-ext,cyrillic'); //used on content
}
if(!in_array('g_453', $td_user_fonts_list)) {//'g_453', //PT Sans
wp_enqueue_style('google-font-pt-sans', td_global::$http_or_https . '://fonts.googleapis.com/css?family=PT+Sans:400,700,400italic&subset=latin,cyrillic-ext,latin-ext,cyrillic'); //used on content
}
if(!in_array('g_445', $td_user_fonts_list)) {//'g_445', //Oswald
wp_enqueue_style('google-font-oswald', td_global::$http_or_https . '://fonts.googleapis.com/css?family=Oswald:400,300,700&subset=latin,latin-ext'); //used on content
}
if(!in_array('g_521', $td_user_fonts_list)) {//'g_521', //Roboto
wp_enqueue_style('google-roboto-cond', td_global::$http_or_https . '://fonts.googleapis.com/css?family=Roboto+Condensed:300italic,400italic,700italic,400,300,700&subset=latin,cyrillic-ext,greek-ext,greek,vietnamese,latin-ext,cyrillic'); //used on content
}
if(!in_array('g_639', $td_user_fonts_list)) {//'g_639', //Vollkorn
wp_enqueue_style('google-vollkorn', td_global::$http_or_https . '://fonts.googleapis.com/css?family=Vollkorn:400italic,700italic,400,700'); //used on quoates classic
}
}
You would still need to search/replace all instances of Google fonts in your style.css as I stated to replace all font stacks with the Google fonts you wish to use. Or, you’d need to look at the fonts in there to use for grabbing the CSS from Google Fonts to put at bottom of your style.css file.
we have created taxonomies with the following plugin
https://wordpress.org/plugins/simple-taxonomy/
Demo Post : @ http://www.tollywoodfans.in/wordpress/legend-200-days-function-in-yemmiganur/
when we tried to browsed through taxonomies its redirecting to 404 page …Can you suggest me how to navigate through this taxonomies
Hi,
Unfortunately module 7, as an extension of module 1, can’t be used as a block and you will need custom modifications to it so it can be used as a block. At this post module 1 and 7 can be used only on loop templates.
Unfortunately we cannot offer custom work as we work hard on the development, updates, fixes and support. You can always get a freelancer from sites like: http://studio.envato.com/ if you don’t know how to do it yourself.
@mike
You can achieve a similar result with for this using block 3 on 2 columns: http://screencast.com/t/ebPjKaqT6ld6
You can see this on our demo: http://demo.tagdiv.com/newspaper/block-3/
Thanks
-
This reply was modified 11 years by
Lucian.
How do I know what font I am using ?
I found the code. What to do here, to remove the fonts I don’t use ?
/* ----------------------------------------------------------------------------
CSS - front end
*/
function td_load_css() {
//google fonts
if ((defined('TD_DEPLOY_MODE') and (TD_DEPLOY_MODE == 'demo' /*or TD_DEPLOY_MODE == 'dev' */)) or defined('TD_SPEED_BOOSTER')) { //on demo and dev we load only the latin fonts
//modify this collection if you want to optimize the fonts loaded
//collection url -> : http://www.google.com/fonts#ReviewPlace:refine/Collection:PT+Sans:400,700,400italic|Ubuntu:400,400italic|Open+Sans:400italic,400|Oswald:400,700|Roboto+Condensed:400italic,700italic,400,700
wp_enqueue_style('google-font-rest', td_global::$http_or_https . '://fonts.googleapis.com/css?family=PT+Sans:400,700,400italic|Ubuntu:400,400italic|Open+Sans:400italic,400|Oswald:400,700|Roboto+Condensed:400italic,700italic,400,700'); //used on menus/small text
} else {
$td_user_fonts_list = array();
$td_user_fonts_db = td_util::get_option('td_fonts');
if(!empty($td_user_fonts_db)) {
foreach($td_user_fonts_db as $td_font_setting_key => $td_font_setting_val) {
if(!empty($td_font_setting_val) and !empty($td_font_setting_val['font_family'])) {
$td_user_fonts_list[] = $td_font_setting_val['font_family'];
}
}
}
if(!in_array('g_438', $td_user_fonts_list)) {//'g_438', //Open Sans
wp_enqueue_style('google-font-opensans', td_global::$http_or_https . '://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700&subset=latin,cyrillic-ext,greek-ext,greek,vietnamese,latin-ext,cyrillic'); //used on menus/small text
}
if(!in_array('g_617', $td_user_fonts_list)) {//'g_617', //Ubuntu
wp_enqueue_style('google-font-ubuntu', td_global::$http_or_https . '://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700,300italic,400italic,500italic,700italic&subset=latin,cyrillic-ext,greek-ext,greek,latin-ext,cyrillic'); //used on content
}
if(!in_array('g_453', $td_user_fonts_list)) {//'g_453', //PT Sans
wp_enqueue_style('google-font-pt-sans', td_global::$http_or_https . '://fonts.googleapis.com/css?family=PT+Sans:400,700,400italic&subset=latin,cyrillic-ext,latin-ext,cyrillic'); //used on content
}
if(!in_array('g_445', $td_user_fonts_list)) {//'g_445', //Oswald
wp_enqueue_style('google-font-oswald', td_global::$http_or_https . '://fonts.googleapis.com/css?family=Oswald:400,300,700&subset=latin,latin-ext'); //used on content
}
if(!in_array('g_521', $td_user_fonts_list)) {//'g_521', //Roboto
wp_enqueue_style('google-roboto-cond', td_global::$http_or_https . '://fonts.googleapis.com/css?family=Roboto+Condensed:300italic,400italic,700italic,400,300,700&subset=latin,cyrillic-ext,greek-ext,greek,vietnamese,latin-ext,cyrillic'); //used on content
}
if(!in_array('g_639', $td_user_fonts_list)) {//'g_639', //Vollkorn
wp_enqueue_style('google-vollkorn', td_global::$http_or_https . '://fonts.googleapis.com/css?family=Vollkorn:400italic,700italic,400,700'); //used on quoates classic
}
}
//add the google style link for fonts used by user
$td_fonts_css_files = td_util::get_option('td_fonts_css_files');
if(!empty($td_fonts_css_files)) {
wp_enqueue_style('google-fonts-style', td_global::$http_or_https . $td_fonts_css_files);
}
//bootstrap - custom built - it was generated via compilation of /external/bootstrap-master/less/bootstrap.less
wp_enqueue_style('td-bootstrap', get_template_directory_uri() . '/includes/wp_booster/external/bootstrap/td-bootstrap.css', '', TD_THEME_VERSION, 'all' );
//main theme style - set the TD_DEBUG_USE_LESS flag in /includes/app/td_config.php and the theme will load the less files and compile them for you
if (TD_DEBUG_USE_LESS) {
wp_enqueue_style('td-theme', get_template_directory_uri() . '/td_less_style.css.php', array('td-bootstrap'), TD_THEME_VERSION, 'all' );
//wp_enqueue_style('td-theme', get_template_directory_uri() . '/style.less', array('td-bootstrap'), TD_THEME_VERSION, 'all' );
} else {
wp_enqueue_style('td-theme', get_stylesheet_uri(), array('td-bootstrap'), TD_THEME_VERSION, 'all' );
}
}
add_action('wp_enqueue_scripts', 'td_load_css');
Try using the stock wordpress theme to debug the issue.
also remember if using demo content to setup theme, that is really only to help with setup and not for actual production site, so you obviously need real content to populate feed.
Try testing feed with cache off. You should only use cache once everything else is working.
Hello,
I don’t know why this is happening, but website is very slow. I’m not using lots of plugins and I have deleted most of them, but still, problem continues to exist.
You can see even in GTMetrix that it is very slow, sometimes it even takes 7 seconds to start loading website: http://gtmetrix.com/reports/www.ideahub.ge/BnU0bS4A
and here are results of your demo websites analysis:
http://gtmetrix.com/reports/demo.tagdiv.com/hNttQgev
You can see that they are totally different.
Can you please somehow help me to fix this. And please don’t tell me to enable Cache, as I tried it and everything messed up for visitors.
We have run in to a few issues with the Newspaper theme, I don’t know if it is our fault or if they are bugs.
1. The arrows on the big slide and blocks do not work, even through there are more articles than can be viewed. Also the child categories on the blocks take you to the category page rather than just bringing up content from those categories, like your demo site does.
2. The main nav bar does not stick to the top of the page, even though I set that options in the Theme Panel.
3. Our Facebook fans count does not show up on our site, but it does link to our Facebook page.
Our website is http://www.kstatecollegian.com, hopefully we can get this resolved ASAP. Thank you.
Hi,
You can check our demo page, you will notice there that this should not happen, when there are no posts to display anymore the arrow should become opaque and unclickable, like this: http://screencast.com/t/poCedgTNqVX
In your case I also noticed that this happens with blocks also, the arrow point’s that posts are still available but nothing loads: http://screencast.com/t/JGJIhtiHNqf
As there aren’t any errors in your console you might wanna deactivate all plugins, empty cache, purge files if you use nay cache or CDN plugins and check for this again.
Hope this helps!
Thanks
Replied via e-mail!
Thanks!
I have sent a mail for demo xml please send all demo xml files to contact@rootpost.com
thanks for great support.
Hi,
Thanks Christopher!
@rootpost As Christopher wrote you can set this from theme panel: http://screencast.com/t/Gx9K7UIm
You can also send an e-mail at contact@tagdiv.com and make a request for the xml file if you also need it.
Thanks
Hello Sirs,
you have this great Demo of several Shortcodes like here:
http://demo.tagdiv.com/newspaper/grid-columns/
http://demo.tagdiv.com/newspaper/blockquotes-pullquotes/
but I was not able to find the documentation of theres shortcodes. They must be somethin link this [xxxxx].
Please Provide a Link to the documentation for these Shortcodes, so I can use them.
Most important for me are at the moment the Grid Layout Shortcodes.
Thanks very much!
You simply need to select it from the theme panel, at bottom of main screen — import styles.
How can i set my theme as Classic Blog style as in demo.
Can you provide xml file for that demo to import.
Thanks
Not simply since the javascript is loaded from Google from the code they provide you and messing with that can run into license issues.
I know one person (friend) using this, but I have *not* tested, and might not work with the built in optimizations of the theme for loading the AdSense code. Might work if loading the ads in your own widgets, like sidebar box.
http://www.itthinx.com/plugins/itthinx-lazyloader-demo
I have read many topics in the forum on thumbnails , seen what sizes the blocks are supposed to have and still have trouble in getting consistent images across the site. Thumbnails are either different in size from one another or cut the original image – so I get faces of people with head cut off or similar. Would appreciate if anyone could provide an advice how to deal with that. Adore the clean look of the demo and feel quite silly for reading so much and not being able to simulate it myself.
My site is http://www.theskykid.com. With our editor we decided to have just one featured article from each category and I would be so happy if I get them to display consistently .
Thank you in advance ,
Georgi
Hi, sorry for my english,
I bought Newspaper 4 and my url is http://www.fancityacireale.it/wordpress2/
I inserted the module big slide in my home page but when i click on the article title the link not open the destination page
can you help?
I have already asked the support VisulaComposer and their response was:
Hi davide,
Most likely the “Big slide” module/element is coded by the theme author as we do not have it in our standard package. You can check our standard package elements by logging in here: demo.wpbakery.com/vc/wp-admin/
I would suggest you to get in touch with the theme author, for any issues related to this element as we are not aware of the code that is being used in it.
thanks and sorry
Davide
COPYING THIS FROM OTHER THREAD FOR THOSE WHO HAVE ASKED ME COUPLE OF TIMES ABOUT REMOVING GOOGLE FONTS FROM FUNCTIONS.php … ref: Newspaper 4.2/4.2.2 — not tested with 4.3, but presumably same idea:
————copied from other thread ————–
Hi,
okay I think in 4.2 here is what my edited functions.php looks like
lines 38 -> 59
/* ----------------------------------------------------------------------------
CSS - front end
*/
function td_load_css() {
//google fonts
if ((defined('TD_DEPLOY_MODE') and (TD_DEPLOY_MODE == 'demo' /*or TD_DEPLOY_MODE == 'dev' */)) or defined('TD_SPEED_BOOSTER')) { //on demo and dev we load only the latin fonts
//modify this collection if you want to optimize the fonts loaded
//collection url -> : http://www.google.com/fonts#ReviewPlace:refine/Collection:PT+Sans:400,700,400italic|Ubuntu:400,400italic|Open+Sans:400italic,400|Oswald:400,700|Roboto+Condensed:400italic,700italic,400,700
//wp_enqueue_style('google-font-rest', td_global::$http_or_https . '://fonts.googleapis.com/css?family=PT+Sans:400,700,400italic|Ubuntu:400,400italic|Open+Sans:400italic,400|Oswald:400,700|Roboto+Condensed:400italic,700italic,400,700'); //used on menus/small text
}
//add the google style link for fonts used by user
$td_fonts_css_files = td_util::get_option('td_fonts_css_files');
if(!empty($td_fonts_css_files)) {
wp_enqueue_style('google-fonts-style', td_global::$http_or_https . $td_fonts_css_files);
}
//bootstrap - custom built - it was generated via compilation of /external/bootstrap-master/less/bootstrap.less
You will note I didn’t remove 44-49, I commented it out with //
I did not remove the code which is there *if* somebody selects fonts from the admin panel, which I think is what you were doing; and then it would crash.
And I DELETED this
$td_user_fonts_list = array();
$td_user_fonts_db = td_util::get_option('td_fonts');
if(!empty($td_user_fonts_db)) {
foreach($td_user_fonts_db as $td_font_setting_key => $td_font_setting_val) {
if(!empty($td_font_setting_val) and !empty($td_font_setting_val['font_family'])) {
$td_user_fonts_list[] = $td_font_setting_val['font_family'];
}
}
}
if(!in_array('g_438', $td_user_fonts_list)) {//'g_438', //Open Sans
wp_enqueue_style('google-font-opensans', td_global::$http_or_https . '://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700&subset=latin,cyrillic-ext,greek-ext,greek,vietnamese,latin-ext,cyrillic'); //used on menus/small text
}
if(!in_array('g_617', $td_user_fonts_list)) {//'g_617', //Ubuntu
wp_enqueue_style('google-font-ubuntu', td_global::$http_or_https . '://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700,300italic,400italic,500italic,700italic&subset=latin,cyrillic-ext,greek-ext,greek,latin-ext,cyrillic'); //used on content
}
if(!in_array('g_453', $td_user_fonts_list)) {//'g_453', //PT Sans
wp_enqueue_style('google-font-pt-sans', td_global::$http_or_https . '://fonts.googleapis.com/css?family=PT+Sans:400,700,400italic&subset=latin,cyrillic-ext,latin-ext,cyrillic'); //used on content
}
if(!in_array('g_445', $td_user_fonts_list)) {//'g_445', //Oswald
wp_enqueue_style('google-font-oswald', td_global::$http_or_https . '://fonts.googleapis.com/css?family=Oswald:400,300,700&subset=latin,latin-ext'); //used on content
}
if(!in_array('g_521', $td_user_fonts_list)) {//'g_521', //Roboto
wp_enqueue_style('google-roboto-cond', td_global::$http_or_https . '://fonts.googleapis.com/css?family=Roboto+Condensed:300italic,400italic,700italic,400,300,700&subset=latin,cyrillic-ext,greek-ext,greek,vietnamese,latin-ext,cyrillic'); //used on content
}
if(!in_array('g_639', $td_user_fonts_list)) {//'g_639', //Vollkorn
wp_enqueue_style('google-vollkorn', td_global::$http_or_https . '://fonts.googleapis.com/css?family=Vollkorn:400italic,700italic,400,700'); //used on quoates classic
}
}
Hi,
okay I think in 4.2 here is what my edited functions.php looks like
lines 38 -> 59
/* ----------------------------------------------------------------------------
CSS - front end
*/
function td_load_css() {
//google fonts
if ((defined('TD_DEPLOY_MODE') and (TD_DEPLOY_MODE == 'demo' /*or TD_DEPLOY_MODE == 'dev' */)) or defined('TD_SPEED_BOOSTER')) { //on demo and dev we load only the latin fonts
//modify this collection if you want to optimize the fonts loaded
//collection url -> : http://www.google.com/fonts#ReviewPlace:refine/Collection:PT+Sans:400,700,400italic|Ubuntu:400,400italic|Open+Sans:400italic,400|Oswald:400,700|Roboto+Condensed:400italic,700italic,400,700
//wp_enqueue_style('google-font-rest', td_global::$http_or_https . '://fonts.googleapis.com/css?family=PT+Sans:400,700,400italic|Ubuntu:400,400italic|Open+Sans:400italic,400|Oswald:400,700|Roboto+Condensed:400italic,700italic,400,700'); //used on menus/small text
}
//add the google style link for fonts used by user
$td_fonts_css_files = td_util::get_option('td_fonts_css_files');
if(!empty($td_fonts_css_files)) {
wp_enqueue_style('google-fonts-style', td_global::$http_or_https . $td_fonts_css_files);
}
//bootstrap - custom built - it was generated via compilation of /external/bootstrap-master/less/bootstrap.less
You will note I didn’t remove 44-49, I commented it out with //
I did not remove the code which is there *if* somebody selects fonts from the admin panel, which I think is what you were doing; and then it would crash.
And I DELETED this
$td_user_fonts_list = array();
$td_user_fonts_db = td_util::get_option('td_fonts');
if(!empty($td_user_fonts_db)) {
foreach($td_user_fonts_db as $td_font_setting_key => $td_font_setting_val) {
if(!empty($td_font_setting_val) and !empty($td_font_setting_val['font_family'])) {
$td_user_fonts_list[] = $td_font_setting_val['font_family'];
}
}
}
if(!in_array('g_438', $td_user_fonts_list)) {//'g_438', //Open Sans
wp_enqueue_style('google-font-opensans', td_global::$http_or_https . '://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700&subset=latin,cyrillic-ext,greek-ext,greek,vietnamese,latin-ext,cyrillic'); //used on menus/small text
}
if(!in_array('g_617', $td_user_fonts_list)) {//'g_617', //Ubuntu
wp_enqueue_style('google-font-ubuntu', td_global::$http_or_https . '://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700,300italic,400italic,500italic,700italic&subset=latin,cyrillic-ext,greek-ext,greek,latin-ext,cyrillic'); //used on content
}
if(!in_array('g_453', $td_user_fonts_list)) {//'g_453', //PT Sans
wp_enqueue_style('google-font-pt-sans', td_global::$http_or_https . '://fonts.googleapis.com/css?family=PT+Sans:400,700,400italic&subset=latin,cyrillic-ext,latin-ext,cyrillic'); //used on content
}
if(!in_array('g_445', $td_user_fonts_list)) {//'g_445', //Oswald
wp_enqueue_style('google-font-oswald', td_global::$http_or_https . '://fonts.googleapis.com/css?family=Oswald:400,300,700&subset=latin,latin-ext'); //used on content
}
if(!in_array('g_521', $td_user_fonts_list)) {//'g_521', //Roboto
wp_enqueue_style('google-roboto-cond', td_global::$http_or_https . '://fonts.googleapis.com/css?family=Roboto+Condensed:300italic,400italic,700italic,400,300,700&subset=latin,cyrillic-ext,greek-ext,greek,vietnamese,latin-ext,cyrillic'); //used on content
}
if(!in_array('g_639', $td_user_fonts_list)) {//'g_639', //Vollkorn
wp_enqueue_style('google-vollkorn', td_global::$http_or_https . '://fonts.googleapis.com/css?family=Vollkorn:400italic,700italic,400,700'); //used on quoates classic
}
}
-
This reply was modified 11 years by
simchris.
Hi,
If the “events notices” are represented of an image you can simply use the ad boxes from theme panel and place there the image, like this:
<div class="td-visible-desktop">
desktop ad code
</div>
<div class="td-visible-tablet-l">
tablet landscape ad code
</div>
<div class="td-visible-tablet-tp">
tablet portrait ad code
</div>
<div class="td-visible-phone">
phones ad code
</div>
Place your image in the div tags, like this:
Example:
<div class="td-visible-desktop">
<a href="http://google.com" target="_blank">
<img src="http://demo.tagdiv.com/newspaper/wp-content/uploads/2013/08/ads-728.jpg">
</a>
</div>
<div class="td-visible-tablet-l">
<a href="http://google.com" target="_blank">
<img src="http://demo.tagdiv.com/newspaper/wp-content/uploads/2013/08/ads-468.jpg">
</a>
</div>
<div class="td-visible-tablet-tp">
<a href="http://google.com" target="_blank">
<img src="http://demo.tagdiv.com/newspaper/wp-content/uploads/2013/08/ads-468.jpg">
</a>
</div>
<div class="td-visible-phone">
<a href="http://google.com" target="_blank">
<img src="http://demo.tagdiv.com/newspaper/wp-content/uploads/2013/08/ads-300.jpg">
</a>
</div>
Note:
Instead of http:google.com add the link to the desired location.
You can read more about this here.
If you want different type of content there you can managed, depending of the header style you use, from here: http://screencast.com/t/0TEZo1Uhn
Hope this helps!
Thanks
I have used custom post type to create 1 module products. And I want to display the article on which product module with POST TEMPLATE SITE is STYLE 2. So I have to edit somewhere?
In Post setting have 6 style: Default, style 1-5 –> I’d just created Module Products SITE TEMPLATE there is POST STYLE 2
This is the code I add product modules (functions.php):
This is demo: http://www.screencast.com/t/xYlFqL6I
function Creat_custom_post_type()
{
$label = array(
‘name’ => ‘Products’,
‘singular_name’ => ‘Product’
);
$args = array(
‘labels’ => $label,
‘description’ => ‘Post type add product’,
‘supports’ => array(
‘title’,
‘editor’,
‘excerpt’,
‘author’,
‘thumbnail’,
‘comments’,
‘trackbacks’,
‘revisions’,
‘custom-fields’
),
‘taxonomies’ => array( ‘category’, ‘post_tag’ ),
‘hierarchical’ => false,
‘public’ => true,
‘show_ui’ => true,
‘show_in_menu’ => true,
‘show_in_nav_menus’ => true,
‘show_in_admin_bar’ => true,
‘menu_position’ => 5,
‘menu_icon’ => ”,
‘can_export’ => true,
‘has_archive’ => true,
‘exclude_from_search’ => false,
‘publicly_queryable’ => true,
‘capability_type’ => ‘post’
);
register_post_type(‘product’, $args);
}
add_action(‘init’, ‘creat_custom_post_type’);
Hi,
The lines appear because you are using the “Blog style” header style, you can change it from theme panel > header > header style http://screencast.com/t/6nMiErBKpArI
Use another header style, the menu items are centered all the same reason the demo uses header style 1, you will get the the line underneath the menu items when hovering also if you change the header style.
I have checked your site and found this errors in the console, this is why the parallax images don’t work: http://screencast.com/t/W1xEwv93I
Please make sure you deactivate all plugins and check Agana also empty cache files if you use any. Regarding the space between menu and feature image that will disappear if you change the header style.
Please let me know what you find.
Thanks
Hi,
I have a few problems with the menu:
1. I have the boxed layout, but there are white lines extending from the menu both sides over the bg.
2. The menu items are centered. I have no idea how this happened, but ever since I installed the theme, the items were centered. I would like to have these left aligned.
3. The line underneath the menu items when hovering over an item, is not appearing.
Screenshot of problems: http://prntscr.com/4opmo4
My website: http://www.nonstopdestination.com
I would like to have the menu look like this demo page, boxed, left aligned and line underneath items: http://themeforest.net/item/newspaper/full_screen_preview/5489609
Another problem I’m having is the parallax is not working on the big feature images. Also on the pages where I have the big feature image, there is a space between the menu and the image.
Screenshot of problems: http://prntscr.com/4opmo4
Example page: http://www.nonstopdestination.com/amsterdam-photo-essay/
Any help is greatly appreciated.
Thanks!