If i put in before >head i got a message: "unknown error"
Here is the code:
<script type="text/javascript" data-cmp-ab="1" src="https://cdn.consentmanager.net/delivery/autoblocking/43be17af6c66.js" data-cmp-host="c.delivery.consentmanager.net" data-cmp-cdn="cdn.consentmanager.net" data-cmp-codesrc="1"></script>
Ok, is one first position.
Then comes:
<?php echo $theme->googleAnalytics(); ?>
on the site:
<script async src='https://www.googletagmanager.com/gtag/js?id=G-B9C1ZTHNZJ'></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-B9C1ZTHNZJ');
</script>
I must change "src=" to "data-cmp-src"
Any idea?
agethemes
POSTED: 2023-01-05
Hello LIEDTKE,
As normally, we place it via Template Settings > Custom Code.
For advantage set up with Google Tags, you should request Google Support Staff, so they can help.
I want to change the volor of the "search" icon in search funktion, like i done it with the "send mail" button.
I need the name of this field. Please let me know.
agethemes
POSTED: 2023-01-09
Hello LIEDTKE,
Please send me direct link to your element such as Search, Send Mail, so I can help.
Get an access to all 211 items designed and developed by Age Themes team plus all the future items
which will be released over the course of your club subscription.
Price starting from $51.75
View History
Here is the code:
<script type="text/javascript" data-cmp-ab="1" src="https://cdn.consentmanager.net/delivery/autoblocking/43be17af6c66.js" data-cmp-host="c.delivery.consentmanager.net" data-cmp-cdn="cdn.consentmanager.net" data-cmp-codesrc="1"></script>
User is still astemplate astemplate
You can try with other fields like JS field.
View History
If so, you can open file 'index.php' located in template AT Construction, so you can place your code on header area (before <head tag)
View History
Then comes:
<?php echo $theme->googleAnalytics(); ?>
on the site:
<script async src='https://www.googletagmanager.com/gtag/js?id=G-B9C1ZTHNZJ'></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-B9C1ZTHNZJ');
</script>
I must change "src=" to "data-cmp-src"
Any idea?
As normally, we place it via Template Settings > Custom Code.
For advantage set up with Google Tags, you should request Google Support Staff, so they can help.
View History
I want to change the volor of the "search" icon in search funktion, like i done it with the "send mail" button.
I need the name of this field. Please let me know.
Please send me direct link to your element such as Search, Send Mail, so I can help.
I checked your page but can't found Search form.
View History
For Search icon, I see you're using this static image https://www.polymersynthese.com/images/Lupe_blau2.jpg
If you mention about Search button, just add more CSS code
.input-group .btn {
background: #000!important;
color: #fff!important;
}
View History
You're welcome!
View History
I have a problem with the view on tablets.
On tablets i cant click on a submenu. The font of the submenu is to small. Where i can change the typografie of the submenus?
Menu Clicks are working.
Do you mean it's dropdown menu sub menu, or sub menu from Offcanvas menu?
View History
Main Menu > home
> in the submenu the character size is too small.
www.polymersynthese.com
Please go to Template Settings, open tab "Custom Code" and add more CSS as below for "Custom CSS code" field
.sp-megamenu-parent .sp-dropdown li.sp-menu-item>a {
font-size: 18px!important;
}
Save and recheck.
View History
Whats about my other problem?
Preset Custom
> Body
> Link Color
I tryed different colors, but its not working.
Can you let me know in details?
View History
I want the fields that have a link to be displayed in a different color. That's what Body Link Color is for, isn't it?
Just go to Template Settings > Custom CSS, add more CSS for "Custom CSS code" field to define global link color
a {
color: #3090c7;
}
or just define link color from component only, by add more code
#sp-component a {
color: #3090c7;
}