Search Results for 'header'

Results from the Forum
Thisguyhere
Participant
#0

I am getting an error when trying to install plugins from the newspaper plugin area:

The plugin does not have a valid header.

Downloading install package from http://www.mywebsite.com/wp-content/themes/Newspaper/includes/plugins/js_composer.zip…

Download failed. Service Temporarily Unavailable

simchris
tagDiv Member

Hi
it used to be in the header.php file … not sure if that is still where it is.

ptec1
tagDiv Member

Hi,
How do you get the logo closer to the add on the top of website I’ve looked in thrum but those codes don’t work.
Paul..

.td-header-style-1 .td-header-sp-logo {
width: 160px;
height: 120px;

yoluca
tagDiv Member

http://tinypic.com/r/282dnb4/9

the css style i apply , seems to be overwritten by original style for same area ….

.td-boxed-layout .td-header-style-3 .td-header-menu-wrap, .td-boxed-layout .td-header-style-4 .td-header-menu-wrap {
    background-color: #EFEFEF !important;
}

which is from admin panel settings …. overwrites custom code ….

.td-boxed-layout .td-header-style-3 .td-header-menu-wrap, .td-boxed-layout .td-header-style-4 .td-header-menu-wrap {
    background-color: transparent !important;
}

i just need the main menu background to be same width as website contend area ….

thanks

  • This reply was modified 10 years by yoluca.
yoluca
tagDiv Member

this is what i have :

.td-post-template-2 .td-post-featured-image img {
margin: 0 auto;
}

.td-post-template-2 .td-post-featured-image .wp-caption-text {
text-align: center;
}

.td-boxed-layout .td-header-menu-wrap .td-boxed-layout .td-header-menu-wrap {
background-color: transparent;
}

.maincategoryclass {
background: #EFEDE1 none repeat scroll 0% 0%;
}

please advice

studiotopo
tagDiv Member

Sorry, a ; was missing, but still not working.


@media
(max-width: 767px) {
.td-header-sp-top-menu {
display: block !important;
}
.td_data_time {
display: none !important;
}
.td-header-sp-top-menu {
margin-left: 14%;
margin-right: auto;
}
}

studiotopo
tagDiv Member

Thanks Bogdan,

I’ve checked if errors on custom css code, but everything looks fine.

But still not working on mobile.

The code I’ve add is:


@media
(max-width: 767px) {
.td-header-sp-top-menu {
display: block !important;
}
.td_data_time {
display: none !important
}
.td-header-sp-top-menu {
margin-left: 14%;
margin-right: auto;
}
}

Bogdan B.
tagDiv Staff

Hello,
The top menu was not meant to work on the mobile version of the theme. It can be done with css though:
@media (max-width: 767px){
.td-header-sp-top-menu{
display: block !important;}
.td_data_time{
display:none!important}
.td-header-sp-top-menu{
margin-left: 14%;
margin-right: auto;
}
}

Thanks.

Bogdan B.
tagDiv Staff

Hello,
1) You can hide the space with css but now your logo will need adjusting. Please use this code for both:

.td-header-top-menu{
display:none!important;
}
@media (min-width: 1141px){
.td-header-sp-logo img{
bottom: 48px;
}}
@media (min-width: 1018px) and (max-width: 1141px){
.td-header-sp-logo img{
bottom: 28px;
}}
@media (max-width: 1141px){
.td-header-sp-logo img{
bottom: 28px;
}}

2) Use this code:

.menu-item:hover{
background-color:#fa4b2a;
}
.menu-item:hover a{
color:white;
}

3) Unfortunately the big grid relies on a fixed width/size in order to display properly. If you change the size of the grid it will not work as expected anymore. It is never a good idea to change element sizes as it will affect other parts of the layout as well. You can change the height if you want by using this code:
.td_block_big_grid_4 .td-module-thumb {
height: 300px;
}

4) I could not find any ‘—‘ in the article exceprt. Please provide more details.

5)Use this code:
.td_module_14 .td-module-meta-info{
bottom:-60px!important;
}

I hope this helps.
Thank you!

studiotopo
Participant
#0

Hi,

how can I do to display the Top Header Menu on mobile?

My header style is 12 (Top colored menu with logo)

http://jarmusiclive.com/v1

Thanks

Catalin
tagDiv Staff

Hello Mshamza,

I’ve tested again on my side and the code works properly. Please try to use with !important tag, like below:

.header-search-wrap .td-drop-down-search .btn:hover {
background-color:green!important;
}

Hope this helps and let us know how it goes!

Thank you for the message and thank you for purchasing our product!

horsezy
Participant
#0

slow query: SELECT SQL_CALC_FOUND_ROWS wp_posts.ID FROM wp_posts INNER JOIN wp_postmeta ON ( wp_posts.ID = wp_postmeta.post_id ) WHERE 1=1 AND ( ( wp_posts.post_type = ‘post’ AND ( ( 1=1 AND ( ( wp_posts.post_status IN (‘publish’) ) ) ) ) ) ) AND ( \n wp_postmeta.meta_key = ‘post_views_count’\n) AND wp_posts.post_type = ‘post’ AND ((wp_posts.post_status IN (‘publish’,’private’,’member’,’premium’,’staff’))) GROUP BY wp_posts.ID ORDER BY wp_postmeta.meta_value+0 DESC LIMIT 0, 3

Call from: require(‘wp-blog-header.php’),
require_once(‘wp-includes/template-loader.php’),
include(‘/themes/Newspaper/single_unixdev_1.php’),
get_footer,
locate_template,
load_template,
require_once(‘/themes/Newspaper/footer.php’),
td_api_footer_template::_helper_show_footer,
load_template,
require_once(‘/themes/Newspaper/parts/footer/td_footer_template_5.php’),
dynamic_sidebar,
call_user_func_array, WP_Widget->display_callback, td_block_widget->widget, td_block_7->render, td_block->render, td_data_source::get_wp_query, WP_Query->__construct, WP_Query->query, WP_Query->get_posts

This widget I show a most popular post
I’ve 10000+ posts on my website

please help

Bogdan B.
tagDiv Staff

Hello,

Unfortunately you cannot replicate the current site with just the theme settings. It could be done but with custom work. If you know your way around php and css you can do it. Maybe you can find a few plugins to help out as well. Unfortunately there are features in the site we do not have options for. The header will be the hardest to replicate.
So if you start this project we can only help out so much, as custom work falls beyond what support can offer you.

Good luck on your project and best of wishes!
Bogdan.

Bogdan B.
tagDiv Staff

Hi,
Unfortunately if you are referring to an option to make the content full width, the theme has no such option. The theme relies on a fixed with and all the elements depend on this width to get their styling. As for the headers and footer please provide more details as to how you want them to ‘dynamically expand’. Please provide more details so we can understand better.
Thank you!

securerr
Participant
#0

Hello,

I’ve got a problem with the mobile version of my site:

http://surfsecured.net/

There’s no logo in the header and when I tap on the menu button, I see the message that I need to build the menu – but it’s actually build and set up properly, it works on desktop.

Here are the screenshots from my iPhone:

http://take.ms/KgEgh

http://take.ms/2hOZ5

And yes, I uploaded mobile logos:

http://take.ms/f4gB6

Please help me to fix this.

Thanks.


Alex

Xperten
Participant
#0

Hi,

How do I change the widget headers from black to another color?

See example (sidebar to the right): http://tinypic.com/r/rr8ex5/9

Thanks!

midronepro
tagDiv Member

Thanks for your prompt response. may be I didn’t explain it properly.

I mean I have these issues when I click on social networks in the top header and the footer. I set up them properly from the theme panel but only Facebook and YouTube are working properly. twitter, google plus, vimeo and VK are taking my website url instead of the network url.

thanks for your support.

Bogdan B.
tagDiv Staff

Hello,
The header and footer are full width by default if no background color or image is set. This causes the theme to go into boxed mode and then limit the header and footer in order to display the background. http://screencast.com/t/ADxbMXpHNPkM
If you wish to keep this aspect, then you need to remove any background image or color and then set them with css, not from the theme panel.
Thank you!

Catalin
tagDiv Staff

Hello Mshamza,

Please try the code below if you want to change the color of the search button (and color on hover). Place the code in Theme panel->Custom Css area, like this: http://screencast.com/t/WlEmpdmx

input[type=submit] {
background-color: red;
}
.header-search-wrap .td-drop-down-search .btn:hover {
background-color:green;
}

The result you should see here:
http://screencast.com/t/pYohsB7yhttp://screencast.com/t/fX922Ex98S9

Hope this helps and let us know how it goes!

Thank you for the message!

Catalin
tagDiv Staff

Hello Pc-Drifter,

If you want to increase logo container and decrease ads containers, please try the code below and adjust the values as you wish. Place the code Theme panel->Custom Css area, like this:
http://screencast.com/t/iaXpusdI

If you want to use Adsense, you can change the Ad size from panel, like this: http://screencast.com/t/OtfkQe3MXgd

.td-header-style-3 .td-header-sp-logo {
width: 480px;
}
.td-header-sp-recs {
width: 478px;
}

The result you should see here: http://screencast.com/t/5Ysk4KQGj2

Hope this helps and let us know how it goes!

Thank you for the message!

tropictimes
Participant
#0

Hi, I like the Newspaper 6 theme a lot, but wish there is an option for the header/footer and menu to dynamically stretch the full width of screen. Is there a hack to do this? Will it be in an upcoming version (soon)?

My site is bravenewsworld.com

Thanks.

yoluca
Participant
#0

Hi,

i would like to make main menu background smaller … same with as contend… so i applied this css style to panel custom code

.td-boxed-layout .td-header-style-3 .td-header-menu-wrap, .td-boxed-layout .td-header-style-4 .td-header-menu-wrap {
background-color: transparent !important;
}

for some reason its not working …. in firebug works perfect but not on live site …

for header i use style 3 : boxed dark menu

Thanks

tylertaihk
Participant
#0

my web site: http://shareforhappy.com/, it is Chinese website
but when I click to access index, just show header, why?

Please help, thanks!

meremetia
Participant
#0

Hello,

I was wondering if it is possible to use a full width header and a “boxed” post content.

I am using STYLE 6 for posts and STYLE 5 for the header (after I modified it a bit).

I am comfortable with editing the code so it would be great if you can give me some pointers.

Ideally I want to do something like this:

want

thanks

Pradeep Augustine
tagDiv Member

The code to render the search box in the header menu works perfectly as expected.
Check this now: http://www.getcooltricks.com/wordpress/google-cse-integration-to-newspaper-wordpress-theme/

Viewing 25 results - 25,551 through 25,575 (of 29,850 total)