Search Results for 'css'

Results from the Forum
simchris
tagDiv Member

I guess my point was, theme devs not going to make the theme mobile plugin setup for AMP, as this would introduce giant amount of support for people who don’t understand AMP or how it works.

For example the mobile plugin could support non https, and support javascript, and various things which AMP does not support, ad units, TagDiv API, speed booster hooks, etc.

It would be NICE if they had an AMP plugin that works like the mobile plugin, as separate paid product, perhaps, which could replace the one included with theme with specific guidelines on what it does and can never do. Two totally different things.

Making ONE mobile plugin for theme that worked for both mobile/noAMP and mobile/AMP would add huge amount of code bloat, also possible issues with adding the AMP end-points and hooks and all sorts of bizarro potential issues with folks who can’t even clear their caching when updating.

“In a perfect world…” sure, would be nice. But unlikely to happen anytime soon.

Frankly, I believe the “back end” skunkworks plan is more focused on developing a replacement for Visual Composer for their “ION” version and doing sideways dev on that which can be sold outside of ThemeForest as traditional foundry method (“direct sale”).

I got what you were saying about “wouldn’t it be nice if …” — I was just pointing out wasn’t going to happen based on working with them for 3+ years here.

The support overhead for that would be insurmountable from a business case standpoint. Look at all the issues with Facebook (“why doesn’t my photo show up…” or “why isn’t my views incrementing…” “why do I need a Facebook account to use the FB widget …” etc.). So, experienced devs already moving on making their own solution based on the available tools; newbies already confused by what AMP is, and unlikely to get the issues with search/replace of inline styles, ad unit custom inserts, etc.

It’s awesome we have so many active folk here actually “into” this stuff.

My opinions are only my own, so take all with grain of salt — sure you were doing that anyway 😉

But again, to get on with your life you really should consider this the way forward:

a) desktop > theme CSS (main URL)
b-1) mobile > theme CSS responsive (main URL)
b-2) mobile > theme plugin/CSS mobile (optional) with custom settings (main URL)
c) mobile > AMP compatible > AMP plugin + custom template (AMP endpoint)

You can only have 3 of the 4 options as it stands.
In our case we do a, b-1, c.

What you were wanting was a, b-2 – where b-2 has multi-thread option based on visitor including redirect to AMP endpoint vs normal URL.

Betcha box of gingerbread cookies you will have an eternal wait on that!

bemibel
tagDiv Member

Hey Bogdan,

It works, but then the title is not centered on tablets.

Don’t worry, I solved it adding extra css.

You are beeing so patient with me, I did a lot of changes on CSS

Thanks you for your help as always. You do a great job.

Thank you.

simchris
tagDiv Member

Theme doesn’t manage SSL or Facebook counts, technically.

So, when you change your URL, it’s no longer the same URL, as treated by FB. There are some hacks out there, which generally need to be done in the main functions.php file.

Also, you need to ensure
a) you have set the https url explicitly in your wp-config.php file
b) done a search/replace for http/your site to https/your site in yout MySQL dbase
c) setup a redirect in your htacess file for all http requests to > https

Whatever hack you use aside from the above “required” stuff for moving to https, be aware it may not always work as you are tricking FB into seeing the old link as the new link, when technically it’s not the same URL.

Much like adding the new site to your Google search console, they stupidly consider it a new site, and does not replace the original in your search console; also note inbound links will show different, and your indexing may change for up to 3 months with the shift.

It’s very much worth doing and should be considered required to be https these days, but you have run into just one of the many issues in the ‘move.’

Try putting the function into the *main* theme functions file. This is one of the many reasons I never use child themes; makes this kind of thing notably trickier as the child theme is essentially a CSS redirect to over-ride the main theme.

DaveS
tagDiv Member

Hey Catalin,

for some reason the suggested solution is not working.

I added the code to the custom CSS section in the theme panel, but the change is not visible. The lightbox still uses the default black color.

Could you please check?

Thanks

hellomondaythailand
tagDiv Member

Hi,

It’s another css class, but thank you for the suggestion.

Thank you.

Simion C.
tagDiv Staff

Hi,

You could remove the margin bottom set on the gallery, with a code like this – https://www.screencast.com/t/fffqu3P0G just enter it in Theme panel->Custom Css

.vc_custom_1490284451319 {
margin-bottom: 0;
}

Thanks

Simion C.
tagDiv Staff

Hi,

The current menu item background color is linked to the theme accent color – https://www.screencast.com/t/yzpEtCvFTYZ and it is the same for all of the menu items. It would be difficult to set a current menu item for each of the menu items. You could use a different color for this state – https://www.screencast.com/t/gMbB0yNZ or do something like this – https://www.screencast.com/t/hXTHYW9iL for each of the menu items.
You can make another code like the one provided above and replace the a:hover with a:visited for all the menu items and use the same colors, then add it after that code in theme panel. It could work this way, give it a try. If a delay is visible between the color change, try adding the codes directly in the theme style.css found in the theme folder, at the end of the file.

Thanks

Catalin
tagDiv Staff

Hello MrOrsh,

Use only the .td-main-content-wrap. Try the code below and place it in Theme panel->Custom CSS area.

The code is ->

.td-main-content-wrap {
-webkit-box-shadow: 0 0 20px 0 rgba(0,0,0,.1);
-moz-box-shadow: 0 0 20px 0 rgba(0,0,0,.1);
box-shadow: 0 0 61px 0 rgba(0,0,0,1.1);
}

Thanks.

Simion C.
tagDiv Staff

Hi,

Please specify where would you like to make these changes to the links so I can provide a better answer. For example in the post content you can achieve this like here – https://www.screencast.com/t/3kXS93sTI for every link inserted. Or you could use some css to style them all at once – https://www.screencast.com/t/mFUSsxrJbdac for the post content.
These are all the theme options regarding fonts – https://forum.tagdiv.com/font-customization/

Thanks

MrOrsh
tagDiv Member

That works, sort of 🙂

Like you can see in the screenshot the top-menu gets the shadow-effect too.

The divider lines I can probably solve myself through some CSS, however the menu I don´t know how to keep as it is (just white).

Catalin
tagDiv Staff

Hello MrOrsh,

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

The code is ->

.td-container-wrap {
-webkit-box-shadow: 0 0 20px 0 rgba(0,0,0,.1);
-moz-box-shadow: 0 0 20px 0 rgba(0,0,0,.1);
box-shadow: 0 0 61px 0 rgba(0,0,0,1.1);
}

The result is here -> https://www.screencast.com/t/3VhjKFO1Ynfr

Thanks for your understanding!

Catalin
tagDiv Staff

Hello Owlcomics,

Try the theme panel settings from here -> https://www.screencast.com/t/hGhnU5gjMXK or also, you can use the code below and place it in Theme panel->Custom CSS code.

The code is ->

.td-post-template-3 .td-post-header .entry-title{
color:green!important;
}

Thanks for the message!

Bogdan B.
tagDiv Staff

Hello,

Thank you for your appreciation.

1) I have tested your site on mac but could not see the line you mention. https://www.screencast.com/t/kHdvVpdbcJUN

2) Our theme has a custom login already which can be accessed on the front-end: https://forum.tagdiv.com/login-how-to-enable-user-registration/https://www.screencast.com/t/D0BiMNXRTqyG

3) sorry but there is no gradient color section for the header and footer but you can add a footer background image: https://www.screencast.com/t/rKgVA4TL
For the header it can only be done with custom css.

4) Sorry but only by using the obile theme can you have a separate menu for mobile devices.

5) The quotes can be changed from the fonts option: https://www.screencast.com/t/tcwLRz4daHU

6) and 7) It is ok as there are no restrictions in this regard. It will load all of the elements, yes, but you should not experience drastic loading speed drops. It is recommended to increase your overall loading speed by using this guide: https://forum.tagdiv.com/how-to-make-the-site-faster/ and increase your system status parameters like so: https://forum.tagdiv.com/system-status-parameters-guide/
lease only use wp super cache and these settings: https://forum.tagdiv.com/cache-plugin-install-and-configure/ if you plan on using a cdn server: https://forum.tagdiv.com/cloudflare-cdn/

8) This topic explains how to use speedbooster together with other plugins: https://forum.tagdiv.com/topic/tinymce-advanced-and-other-various-disabling-speed-boster/

9) Please provide an example as the image is not working

10) The validator also provides errors for ALL of the well known sites including google, facebook, Amazon, Yahoo, etc. We have stopped trusting it 🙂

Thanks

Simion C.
tagDiv Staff

Hi,

You can use a code like in this example this – https://www.screencast.com/t/eUlSNk8urJ based on the menu item ID’s. The custom colors will show when the menu item is hovered. This is the code used in the example, you can change the colors to your liking, and enter it in Theme panel->Custom Css

.menu-item-63 a:hover {
background-color: red!important;
}
.menu-item-22 a:hover {
background-color: blue!important;
}
.menu-item-21 a:hover {
background-color: green!important;
}
.menu-item-20 a:hover {
background-color: pink!important;
}
.menu-item-715 a:hover {
background-color: brown!important;
}

Thanks

Bogdan B.
tagDiv Staff

Hello,

You can add a custom link with a link to none. this is done by linking it to # like so: https://www.screencast.com/t/Q1TfUkLh
The you can use a css to remove the mouse events for that menu item (you will need the menu item id):
.menu-item-4067{
pointer-events:none;
}

Ad the code in the theme panel-> custom css box
4067 is my menu item number. Yours will be different. You can inspect the menu with the browser inspector to see the menu item corresponding to it or https://www.screencast.com/t/YrYgwPody

Thank you!

Simion C.
tagDiv Staff

Hi,

It seems there is a problem with the breadcrumbs not displaying on the post page in this particular demo, and this combined with some header style is causing this issue. I have added this on our fix list and it will get resolved as soon as possible. Please try and use the code provided below as a quick fix for you to use in the meantime, with this result – https://www.screencast.com/t/lfHHGhBGb3jc

.td-blog-beauty .td-post-template-default
.td-crumb-container {
display: block;
}

The code must be entered in Theme panel->Custom Csshttps://www.screencast.com/t/Sxtr3nhrnnHd
Thank you for understanding!

Bogdan B.
tagDiv Staff

Hello,

Please remove this custom css from your theme panel: https://www.screencast.com/t/dNON5LZ3H25m

Thank you!

Catalin
tagDiv Staff

Hello HIGHLIFE,

The call button is named Whats’up ->https://www.screencast.com/t/mISJ3JYwR0ta. Do you know what is Whatsup? So, if you want to hide one of the icons you can do it with a bit of CSS code. If you want this, let me know which you want to disable so I can provide a more accurate code/response.

Thanks for your message!

floranto22
Participant
#0

ÂżCĂłmo reemplazo los textos de las categorĂ­as que se encuentran al final de las entradas? Son los siguientes:
• “RECOMENDACIONES DEL EDITOR” por “NOTICIAS”
• “MENSAJES POPULARES” por “MÁS VISTAS”
• “CATEGORIA POPULAR” por “CATEGORÍAS MÁS VISITADAS”
Y también, “SÍGUENOS” por “Seguinos”

No sĂŠ como acceder o que archivos tocar para corregirlo. Tengo conocimientos de html, css, jquery y php muy bĂĄsico.
Gracias

Catalin
tagDiv Staff

Hello STEFEN1,

As a quick solution, you should use a bit of CSS code to do this effect. Try the code below and place it in Theme panel->Custom CSS area.

The code is ->

#rev_slider_23_1_wrapper{
margin-bottom:40px!important;
}
.td-container{
background-color:transparent!important;
}
.wpb_wrapper{
background-color: white!important;
}
.vc_custom_1490605951655 {
margin-top: 2px !important;
margin-bottom: 0px!important;
}

The result is here -> https://www.screencast.com/t/ERksG68t

If is not what you mean and if you want any other customizations, please consider hiring a freelancer/developer to help you because we cannot provide custom work at the moment, sorry!

Thanks for your understanding!

Simion C.
tagDiv Staff

Hi,

If you mean the titles alignment here – https://www.screencast.com/t/GZK378OOSv7e you could do it with a code like this – https://www.screencast.com/t/2uj1KfLmfKz5
This is the code used, just enter it in Theme panel->Custom Csshttps://www.screencast.com/t/dmO09DR8zc9x

.td-footer-wrapper .block-title span {
padding-left: 0;
}

Thanks

Simion C.
tagDiv Staff

Hi,

It seems the code displays right after the inline ad, so you could use that and create a code like this – https://www.screencast.com/t/91CEUMPZUQ that removes the paragraph immediately after that class. I have tested this with some of your other posts containing galleries and it seems to work properly
https://www.screencast.com/t/e4twHjCuPa
https://www.screencast.com/t/EIOObSIby
https://www.screencast.com/t/jAiBHstS
Maybe there is another way of achieving this, but you should try this quick fix for the moment. The code must be entered in Theme panel->Custom Css

.td-post-content
.td-g-rec-id-content_inline + p {
display: none;
}

Thanks

Simion C.
tagDiv Staff

Hi,

The easiest way to do it, without modifying the theme files would be to hide the header and footer entirely with css on that specific page, based on that page ID like in this example
https://www.screencast.com/t/CXpWLaRkzfK2https://www.screencast.com/t/a2OMaduLO

Thanks

Bogdan B.
tagDiv Staff

Hello,

The category tags can be removed from particular modules and blocks from the theme panel: https://www.screencast.com/t/oRn1wt1rBt
If you want to remove the tag only on mobile I can provide a css code for it but I will need a link to your site so I can see what modules and blocks you use as the code must be added for each block in particular.

Thank you!

visioneer
tagDiv Member

ok found my mistake myself and put the same code to the mobile theme custom css.

works

Viewing 25 results - 18,426 through 18,450 (of 33,436 total)