- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-23-2023 09:30 AM
I am trying to change color from blue to black and make number thin. My current style declaration is:
<?xml version="1.0" encoding="utf-8" ?>
<j:jelly trim="false" xmlns:j="jelly:core" xmlns:g="glide" xmlns:j2="null" xmlns:g2="null">
<style>
p {
font-family: verdana;
font-size: 50px;
text-align: center;
font-weight: 10px;
color: #141010;
}
</style>
and the code that I am applying the color is:
<!--Passing the tempArr length here-->
<j:set var="jvar_count" value="${count}"/>
<j:set var="jvar_query" value="${query}"/>
<p><a href="${incidentlink}${query}" target="_blank">${jvar_count}</a></p>
<!-- ${jvar_count}-->
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-23-2023 10:04 AM
Hi @Mubashira ,
Try styling the <a> tag instead of <p>.
For quick reference visit https://www.w3schools.com/css/css_link.asp
Anvesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-23-2023 10:04 AM
Hi @Mubashira ,
Try styling the <a> tag instead of <p>.
For quick reference visit https://www.w3schools.com/css/css_link.asp
Anvesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-23-2023 10:25 AM
Thank you so much. It worked!