Search Results for 'css'

Results from the Forum
Alin [tagDiv]
tagDiv Staff

Hi,

I have checked your site on mobile and Big Grid looks fine on mobile – http://screencast.com/t/KMbi8sQIg

1. I have checked you header add and found that you use Ad rotate so the option from Theme Panel > Ads to hide it on mobile will not work as you don’t use the adsense code directly there. You can hide it via custom css: http://screencast.com/t/rMVWKxY7ILe

@media only screen and (max-width: 767px){
.td-a-rec-id-header .g-single {
display: none !important;
}
}

2. The Big Grid cannot be displayed like on desktop because of size of the screen on mobiles, so the small thumbnails of Big Grid will slide on mobile, this is not an issue Big Grid was designed like that: http://screencast.com/t/tnEjKPJFhttp://screencast.com/t/TahlBJNM

3. Theme cannot change yor logo color so you can upload a different logo for mobile or change the mobile menu color using this solution – https://forum.tagdiv.com/topic/how-to-change-mobile-header-color/#post-54699 We will add an option in Theme Panel to change color of the mobile menu in a future update.

4. Not sure what you mean, I have checked and you don’t have any Big Grid above footer, please clear cache.

Thanks!

Lucian
tagDiv Staff

Hi,

Edit the blocks and check the block title background color: http://screencast.com/t/CcXkQwaB and changed it other than white as the post titles on hover are set to use the color you set there and tehre is no other option so you can change the hover color there. You could do it via custom css though and set the hover color manually, like this: http://screencast.com/t/r1IxM5MB

Add the below custom css code in theme panel > custom css section an change the color as you wish.

.td_module_wrap:hover .td-module-title a{
color: red !important;
}

Thanks

Emil G
tagDiv Staff

Hi,

The best solution would be to create custom css for the elements you want to modify. Just use the browser inspector to check the structure, classes and the current css on the element you want to change. Then create a custom css and add it in Theme Panel -> Custom CSS. This ensures that you can update the theme and you don’t have to edit the files after each update.

Thank you, Emil G.

Alin [tagDiv]
tagDiv Staff

Hi,

Theme doesn’t have an option to disable more from author, but you can hide it using custom csshttp://screencast.com/t/OPfLLMowFK3M

.td_block_related_posts .td-related-right {
display: none;
}

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

I have checked your site and you have to many menu items there. You can try to use this custom css in Theme Panel > Custom Css and apply this only for tablets – http://screencast.com/t/8Eu3obo5

@media(min-width: 768px) and (max-width: 1018px) {
.sf-menu > li > a {
padding-right: 0px !important;
}
.sf-menu > .td-menu-item > a {
font-size: 20px !important;
}
.td-header-main-menu {
padding-right: 0px !important;
}
}

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

Please check this topic as reference if you want to remove zoom effect – https://forum.tagdiv.com/topic/dark-pictures/#post-54266
If you want to apply this only for small thumbs from Big Grid please try this custom css in Theme Panel > Custom Css: http://screencast.com/t/mkbPbNGBXQ

.td-hover-1 .td-small-thumb:hover .td-module-thumb .entry-thumb {
transform: none !important;
-webkit-transform: none !important;
-moz-transform: none !important;
}

Thanks!

barelliluca
Participant
#0

I’ve decided to open this thread to help the devs to spot bugs and usability lacks since I love this theme, especially the new version. Here it comes:

1. Missing an option to set mobile header and icons
a. The only workaround is a manual CSS fix

2. Missing an option to style the extended footer (ABOUT US and FOLLOW US)
b. Actually is complicated to manually fix it since DIVs are wrappers and can’t put, for example, a different color on the background without making it uglier than it is. Only thing achievable is text-align:center for titles.

3. Social icons
c. They come in only one flavor and size. Too few to work with

4. Social icons on the extended footer
d. Have to change color and :hover manually but it’s a pain

5. Big slider (the one from v4 theme)
e. It is possible to achieve the same behavior on mobile view (images shown vertically and not horizontally with a bottom scroller) only if “posts to show” is set to 8 (or 12 or 16…). Should be advertised somewhere.

6. Sliders
f. We need an option to turn off the overlay gradient (images are too dark) and another to disable the ugly zoom in picture, please.

7. Translations
g. Are cool! But if you use two (or more) languages don’t mess with the TRANSLATIONS panel! Use Loco Translate plugin instead.

Others will come as soon as I’ll find them.
Keep up the good work!

Alin [tagDiv]
tagDiv Staff

Buna,

2. Eu am testat link-ul autorului cu Seo by Yoast activ si nu am gasit nici o problema. Poti verifica setarile pe care le ai in Yoast si de asemenea te poti adresa la suportul plugin-ului.
3. Adauga inca o clasa div-ului de mai sus si foloseste custom css sa-l customizezi – http://screencast.com/t/2juLb5RU

<div class="td-container test">
    <?php echo do_shortcode('[td_block_trending_now limit="5"]');?>
</div>
.test {
margin-top: 20px;
margin-bottom: 20px;
}

5. Article top este creat sa apara pe toate template-urile, pe viitor o sa imbunatatim si aceasta.

1. Uite aici raspunsul lui Radu – https://forum.tagdiv.com/topic/speedbooster-not-moving-all-the-files-to-the-footer/#post-55023

Mersi!

Alin [tagDiv]
tagDiv Staff

Hi,

Please try this custom css for post style 8 (width and background) – http://screencast.com/t/Vvf1RelEPPB

.td-post-template-8 .td-post-title {
width: 100%;
}
.td-post-template-8 .td-post-header .entry-title {
background-color: rgba(0, 0, 0, 0.5);
}

Thanks!

wpfan3751
Participant
#0

Hi,

1) Is there a way to change the color of links in posts content? I saw the css for changing the hover color for links in another post.

2) How can I change the font for titles on pages that will be different from the font on category pages? Or is there a way to hide the titles on category pages?

Many thanks for any assistance in solving this….:)

YourPitStop
tagDiv Member

@Ing Geek:

Thank you, I think minifying style.css was the problem.

Alin [tagDiv]
tagDiv Staff

Hi,

I see that you use version 4 of Newspaper, please try this custom css in Theme Panel > Custom Csshttp://screencast.com/t/O92vBpma

.header-logo-wrap img {
max-height: 100px;
}
.header-logo-wrap {
margin-bottom: 20px;
}

Hope this helps!

Alin [tagDiv]
tagDiv Staff

Hi,

1. There is an option in Theme Panel > Theme Fonts – http://screencast.com/t/f34Q1hepnH
2. Please try this custom css in Theme Panel > Custom Csshttp://screencast.com/t/gsIX2hWDV

.logo-text-container .td-tagline-text {
font-size: 15px;
color: red;
}

4. Try this css code – http://screencast.com/t/wIIE6naA8ro

.td-next-prev-wrap a {
color: red;
}

5. Please check Theme Fonts – http://screencast.com/t/LVW7XSIl
6. You need to set it for each module – http://screencast.com/t/JzuUQpkeG
7. You can try this custom css in theme Panel > Custom Csshttp://screencast.com/t/6rJPaCakmN

.widget_recent_entries a {
font-weight: normal;
}

8. You will have to target text blocks using custom css to change the font size – http://screencast.com/t/NCRbWJzOHqmS

.home .wpb_text_column p {
font-size: 13px;
line-height: 26px;
}

Please check documentation – https://forum.tagdiv.com/wordpress-information/

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

Unfortunately we did not change anything regarding this, so when you use a background image the site will automatically switch to boxed version, this is how the theme was designed. You will need custom work to change this, so I suggest to get someone to help you achieve this if you don’t have basic html/css experience as we cannot provide any type of custom work at this time, sorry.

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

We know about this error it will be fixed as soon as possible. Anyway this error doesn’t affect how Big grid is displayed in frontpage. Please make sure that you have disable css minifications and try only with Visual Composer active, you should not have this issue with 6.1 version of the theme. If you use child theme try also with the main theme and see if it works.
If you still have this issue please send an email at contact@tagdiv.com and provide wp-access so we can take a look and also paste a link to this topic so we can know who you are.

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

Thanks for reporting this, I have added it on our list and will be fixed in the next update. You can paste this custom css in Theme Panel > Custom Css to fix it till then – http://screencast.com/t/uKWnBQeyYEP
Here is the css code – http://pastebin.com/4sRJDdpe

Thanks!

Ing Geek
tagDiv Member

Yourpitstop, you need to exclude style.css from minify.

Alin [tagDiv]
tagDiv Staff

Hi,

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

.td-footer-wrapper {
padding-top: 0px;
}
.td-footer-bottom-full {
margin-top: 12px;
padding-top: 30px;
}

Thanks!

flcahill
tagDiv Member

but it did work by deactivating and then reactivating custom css in jetpack. thank you.

ilyas
tagDiv Member

hey guys i tried this css code it fixed. add to
Theme Panel > Custom CSS

@media (max-width: 767px) {
/* container */
.td-pb-row {
width: 100%;
margin-left: auto !important;
margin-right: auto !important;
}

elvinf
Participant
#0

Hi,

I am following the tutorial here: But can’t get the ad to show. All I see on the footer is [td_ad_box spot_id=”custom_ad_1″]. Can someone take a look? http://tinyurl.com/footer-ad-css

I also like to know how do I add it above the footer across the entire site.

Also, the top menu and sidebar color seems to revert to an old setting then jumps to my current setting. Why does it do this? I made the color selections through the theme panel not custom css.

Thanks..

Arafat
Blocked
#0

How to fixed Eliminate render-blocking JavaScript and CSS in above-the-fold content. See this Image : http://prntscr.com/7jqgau


PageSpeed Insights
: https://developers.google.com/speed/pagespeed/insights/?url=http%3A%2F%2Famazinghealthplan.com%2F&tab=mobile

simchris
tagDiv Member

You can edit the template files in the root of your theme folder, simply look for the template number you want to change. However that does require both CSS and WordPress coding knowledge of course.

simchris
tagDiv Member

So you turned OFF the “date” option in the post settings?

No custom CSS is needed. Just click the on/off toggle; boom date won’t be shown on the post page.

Might want to read through the docs at some point for V6:
https://forum.tagdiv.com/general-settings/

bgo
tagDiv Member

I had this problem before See this post. But after adding this custom css it’s not going away.

  • This reply was modified 11 years by bgo.
Viewing 25 results - 28,051 through 28,075 (of 33,436 total)