Search Results for 'css'

Results from the Forum
Alin [tagDiv]
tagDiv Staff

Hi,

Please provide a link so we can inspect this and see if we can provide some css to adjust the block 15 design.

Or if you want to change the Related Articles functionality, you can change the code something like this – http://screencast.com/t/jZPjDC4ukr

'category_id' => '1'

Add your own category ID to the above code(1 is just an example). Also you can control the articles number from Theme Panel > Post Settings – http://screencast.com/t/v4rIDtWKVycH
I recommend to backup your file before any change, so you can revert in case that something goes wrong.

Thanks!

Simion C.
tagDiv Staff

Hi,

1. A. Open your homepage in the Edit Page section like this – http://prntscr.com/djak7x
B. Scroll down to the Visual Composer editor and select the row containing the Big grid block http://prntscr.com/dk2msh
C. In Row Settings -> General -> Row Stretch, select Stretch row. Then, just bellow check the Full height row box – http://prntscr.com/djan7m
D. Go to Design Options, next to the General tab and choose the color you want for your background – http://prntscr.com/djao7x
The result is like this http://prntscr.com/dk2nfm

2. Newspaper theme has a fixed width of 1068 pixels(content), that was the way it was designed.

3. When you set a background color or image, the theme automaticaly becomes boxed https://forum.tagdiv.com/background-introduction/. The only way is to remove your background and
choose a Full Header style – http://prntscr.com/dk317u
4. Add this code(edit the padding and font size as you like) in the Theme panel->Custom Css

.td-load-more-wrap a {
padding: 20px;
font-size: 20px;
}

Thanks

theasder
Participant
#0

Hey there,

I have popular articles on my website, but widget which sorts them looks very weird. I mean that, for instance, this article going down in rating, though it is very popular. How does it works?

Catalin
tagDiv Staff

Hello devkabir,

If you do not want to use the header ad, you should use a bit of CSS code to do that. Try the code below and place it in Theme panel->Custom CSS area.

.td-header-container{
display:none;
}

The result is here -> http://screencast.com/t/JsztP4Ao4VaZ

Thanks for the message!

Alin [tagDiv]
tagDiv Staff

Hi,

The avatar is used in multiple places(post’s author box, comments…). I’m not really sure whre would you like to change, but I supposes you want to do this for author box on post page. Here you can find the code in this case – http://screencast.com/t/7rMq9jKw but you also need to use custom csshttp://screencast.com/t/Qr5zDhttzet

.single .author-box-wrap .avatar {
width: 150px;
}
.single .author-box-wrap .desc {
margin-left: 167px;
}

Thanks!

chrismorda
tagDiv Member

Hi,

I’m not sure if you understood my question, i’d actually like to remove that section. Is there a setting for that or should i just use the following css:

.td-mobile-footer-wrap {
display: none;
}

thanks

Catalin
tagDiv Staff

Hello RichardU,

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

input[type="submit"]{
background-color:red;
}
.block-title > a, .block-title > span {
font-family: 'Open Sans', arial, sans-serif;
background-color:red;
}

The result -> http://screencast.com/t/6N4yOyPvP

Thanks.

Catalin
tagDiv Staff

Hello cloin1,

If you want to move to the left the Sign in the feature, you should use a bit of CSS code to do that. Try the code below and place it in Theme panel->Custom CSS area.

.td_ul_login li a {
margin-right: 620px;
}

The result is here -> http://screencast.com/t/LDI8fRF2JDr

Thanks for the message!

diablo7
Participant
#0

I have a page made with visual composer for PS vita, it appears as a subcategory in the header. But in the articles the tag has the url of the page of the category, it is possible to replace that url by which the page has.

Site: leveltoday.com

Some CSS code for this?

nakosar
Participant
#0

Hi. I followed instructions on a previous Newspaper Forum post but still have a problem. As you can see in the link below, the sub-footer text on my site is not perfectly centered – it is a little to the right of center. When I reduce the size of the screen to tablet/smartphone size, the text then is centered perfectly. I’ve tried many solutions but still cannot solve this.

Screenshot of problem: https://www.screencast.com/t/F6VkejmjczKw

Below are the instructions I followed from a previous post (deleting some code in the footer.php file and adding some CSS). I appreciate your help on this – thanks!! – Nick

Previous forum post (#104687; advice from Bogdan):

Hello,
Unfortunately this will not be so easy as the sub-footer is divided in 2 sections. 1 for the copyright and the other for the sub-footer menu. The copyright can be centered but only by altering the theme files and removing the container needed for the menu and then using css to position the copyright text.
You first need to remove this part: http://screencast.com/t/pCzg2vn8

Then use this css code in the theme panel for positioning:

.td-sub-footer-copy{
display: table;
margin-left: auto;
margin-right: auto;
float: none!important;
}

Thank you!

m0re
tagDiv Member

I tried the following in CSS and it seems to work for now.

.td-page-title {
display: none;
}

is it a good way to do it?

whereislarry
Participant
#0

Hello: I’m sure this has been asked many times, and I know there is a tutorial available on Child Themes.

I made a child theme and all the CSS is working fine. The only issue is that the black header bar doesn’t have my category menu. It simply has an non-working link to customize it. Is there a simple way to import my header menu from the parent theme, or does this involve a lot of steps and rewriting of PHP files? Thank you. — Larry

Catalin
tagDiv Staff

Hello madox56,

I have inspected your website and I saw that your frames have width fix and that’s why you cannot see all the elements. Try the code below and place it in Theme panel->Custom CSS area.

iframe{
width:100%!important;
}

Thanks for the message!

svharishtech
Participant
#0

Hi,

At the bottom of each post there is two links that points to the previous and next post. I want to change the color of these links so that they become more prominent. I was able to figure out that the css class name of that entity is .td-post-next-prev-content, but if i change the color attribute of this class, the color does not change.

can you please help me with this.

Catalin
tagDiv Staff

Hello rehanahmadjamal,

If you want to increase the size of excerpts only for mobile devices you should use a bit of CSS code to do that. Try the code below and place it in Theme panel->Custom CSS area.

@media (max-width:767px){
.td-excerpt, .td-module-excerpt {
font-size: 20px;
}

The result is here -> http://screencast.com/t/ykLhslpN

Thanks for the message!

Catalin
tagDiv Staff

Hello datomnz,

Please notice that this is the natural theme behavior as you can see here -> http://screencast.com/t/nr91qin3Vd If you will add some custom CSS code the elements will change its structure. If you want to disp[lay more levels in our theme and if 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 custom work at the moment, sorry!

Thanks for the message!

Catalin
tagDiv Staff

Hello fderooy,

I have noticed that you are using the Header Style 10 as header template which will display the full logo on top. If you want to achieve better results in this regard, you need to add a bigger logo. Regarding on this image -> https://postimg.org/image/id9534rcf/, here is talking about retina display which only Apple devices have and that’s why the logo is sharper than the normal devices. As you can see, the theme has an option for retina display where to add a larger image (for better quality).

If you want to add that border bottom, try the code below and place it in Theme panel->Custom CSS area.

The code is ->

.td-header-wrap .td-header-top-menu-full{
border-bottom: 1px solid black;
}

The result is here -> http://screencast.com/t/OZkKiX2GTJ

Thanks.

Catalin
tagDiv Staff

Hello John,

Please provide more details about what kind of images you are referring to, featured image which is presented on modules and blocks or over the images from the post content? It is vital to specify these details because in our theme were made some changes only over the featured images and no for images in post content. Keep in mind that the theme does not affect the image from the post content. So, all of these will be displayed in its natural size. Please provide your website URL, also, provide some useful screenshots to identify where you see this problem so precisely, I will be able to provide a more accurate response, after a deeper investigation. It is likely to be a CSS code to stretch the image and that’s why to appear in blurry mode.

Thanks for your understanding!

Alin [tagDiv]
tagDiv Staff

Hi,

1. If you want full header/footer display, do not set a background color or image. When you set a background the theme will automatically transform the site into a boxed version.
2. I guess you could use box-shadow effect – http://screencast.com/t/Nk6Slh0g4Kvv

.td-header-style-2 .td-banner-wrap-full {
padding-bottom: 20px;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

3. You can easily set a featured image also for your pages, then it will appear there.
4. Exactly like I said above. Just change the page template to Default and set a block with infinite load pagination to display your Latest Articles – http://screencast.com/t/Ns18mEZCVhttp://screencast.com/t/4se2LI9ruZ3
5. The modules are used to create blocks and also on loop templates. You cannot design your search template using Visual Composer and you cannot add blocks there. You can only change the module to display your articles – http://screencast.com/t/Rw3tAqoYj
6. Try this custom css:

@media(max-width: 767px){
.td-footer-wrapper .td_block_widget {
text-align: center;
}
}

7. Noted, I have added your request on our list.

Thanks!

nakosar
Participant
#0

Hi. I want to change the mobile menu colors (both background/gradient and text/icon color) so that I have a blue text/icons on a white background (see link below). I installed the Mobile Theme plugin and was able to do this. However, because the Mobile Theme does not allow me to customize the homepage, I must delete the Mobile Theme plugin (my website is based on a customized homepage so I cannot use the Mobile Theme).

So, my question: How do I change the mobile menu CSS colors?

This is the old (default) version which I do NOT want: https://www.screencast.com/t/An5zPt7TZY
This is the version that I DO want (but could only make this work using the Mobile Theme): https://www.screencast.com/t/lSVTOcfaNAEx

It looks like I can change the background/gradient in this CSS code by changing the two default colors to white #ffffff. Is this correct?

.td-menu-background:before {
content: ”;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
opacity: 0.98;
background: #333145;
background: -moz-linear-gradient(top, #333145 0%, #b8333e 100%);
background: -webkit-gradient(left top, left bottom, color-stop(0%, #333145), color-stop(100%, #b8333e));
background: -webkit-linear-gradient(top, #333145 0%, #b8333e 100%);
background: -o-linear-gradient(top, #333145 0%, #b8333e 100%);
background: -ms-linear-gradient(top, #333145 0%, #b8333e 100%);
background: linear-gradient(to bottom, #333145 0%, #b8333e 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=’#333145′, endColorstr=’#b8333e’, GradientType=0);
}

Where do I find the code/CSS to change the text/icon colors from the default white to my blue color?

Many thanks. I am enjoying using your theme so far.

Pierreto
Participant
#0

Hi,

I have problem with wpforo on mobile, sometime i can see it, sometime no, and i ask help to the WPforo support and they ask me to change template :

we just checked and found the main reason of mobile issues are these theme components, they still exist. The wpForo is super responsive and works very well on mobile. To make sure wpForo works fine please change the theme, delete cache and check it again.

Problem causers:

https://toutelathailande.fr/…hemes/Newspaper/style.css&ver=1481714312
https://fonts.googleapis.com/css?family=Roboto…
https://fonts.googleapis.com/css?family=Open+Sans…
https://toutelathailande.fr/wp-content/plugins/bwp-minify/min/?f=…/jetpack/css/jetpack.css…

Also please deactivate the minify function of BWP Minify plugin, the one of problem maker is BWP Minify plugin (red marked).

I think many wordpress user who use bbpress before, now change for wpforo, the best forum for wordpress, and it’s can be interesting to make Newspaper working with WPforo.

I love your template and will no change, hope you can find solution.

Simion C.
tagDiv Staff

Hi,

Glad to help, to remove the top margin go to the same Row Settings -> Design Options and in the CSS box top margin type: -48 like this – http://prntscr.com/djbst9
Be sure to save.

Before: http://prntscr.com/djbrqr
After: http://prntscr.com/djbs2d

Thanks

robbie
tagDiv Member

1. To make you better understand, how u r getting these 2 templates, check wide header and footer.

http://demo.tagdiv.com/newspaper_local_news/

http://demo.tagdiv.com/newspaper_what/

2. Yes, to have a border line below logo and ad.

3. My mistake that should be search page not ‘404’, have a look at this.

http://prnt.sc/djanio

4. Is it possible to design a homepage without ‘post loop’ section, seems the default template includes ‘latest articles’ with numeric pagination only. How to get a homepage like this…

http://demo.tagdiv.com/newspaper/homepage-infinite-scroll/

5. I think ‘search page’ template is designed with blocks only, why can’t we have a different pagination.

6. Using style 9, 3 widgets. Any generalized css code available for aligning footer widgets, to center align instead of left.

7. Regarding this, i could understand the concept, but if i mention 5 and by chance if a post has only 4 , then where goes the ad. Since this is a global setting, would be a mess for publishers. Normally ad plugins provide an option for this, to show the ad on last para if the specified para not exists. I am not reporting this as a bug, but a feature to be implemented. After getting impressed with the ad settings, i deleted by ad plugin and had to install it again.

sebdicam
tagDiv Member

and colors dépend of your theme! It’s a very nice theme, but if support was more careful about our questions it’ll be better.
It’s wrote your theme works with woocommerce. Colors font depend of you. Sorry to be stupid and unknowledge about css.

Edward
tagDiv Member

https://forum.tagdiv.com/topic/need-to-change-to-right-to-left/#post-146519

Please keep in mind that our theme has no RTL support because it has been designed to be used in this layout, sorry!

Unfortunately, we have no plan on implementing it in the near future. Implementing RTL support in our theme will require 2 style.css files and it will add significant “weight” to the theme. Using the RTL mode means that lots of elements have to be adjusted and this thing involves custom work and we cannot provide this at the moment!

Please try to do a simple search of our forum and you will see that our team offers support only for theme related problems and which not require additional customizations. Please check again our support policy here -> https://forum.tagdiv.com/support-policy-2/

Thanks for your understanding!

  • This reply was modified 9 years by Edward.
Viewing 25 results - 19,776 through 19,800 (of 33,436 total)