Page 1 of 1

where is "text-decoration: none" ?

Posted: Mon Apr 07, 2025 6:56 am
by manuel_songokuh
hi

i'm looking for text-decoration: none for text link..how?

Re: where is "text-decoration: none" ?

Posted: Mon Apr 07, 2025 7:41 am
by manuel_songokuh
for
text-decoration: none
WWB result:

WBS: test.wbs (project)
1--create style link: text-decoration-none2, and text link has 4 states:
2--• linked --->color
3--• visited --->color
4--• active --->color
5--• hover --->color
6--save name: text-decoration-none2
7--go to text
8--click LINKS
9--appearance
10--select: text-decoration-none2
11--OK
this is huge ...or no?

WWB makes generare
- 1 file external name : test.css

Code: Select all

    a.text-decoration-none2
{
   color: #9400D3;
   text-decoration: none;
}
a.text-decoration-none2:visited
{
   color: #9400D3;
   text-decoration: none;
}
a.text-decoration-none2:active
{
   color: #9400D3;
   text-decoration: none;
}
a.text-decoration-none2:hover
{
   color: #9400D3;
   text-decoration: none;
}
- 1 file external name: hello.css

Code: Select all

#wb_Text1 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0;
   margin: 0;
   text-align: center;
}
#wb_Text1 div
{
   text-align: center;
}
- 1 file hello.html, inline code :
<div id="wb_Text1">
<span style="color:#000000;font-family:Nunito;font-size:12px;"><a href="hello" class="text-decoration-none2">HELLO</a></span>
</div>

this is long time and more file external..for me this is very resources ..?

better other new mode:
1--go to text
2--click LINKS
3--click text-decoration: none
4--OK
WWB makes generare
- 1 file external name : hello.css

Code: Select all

#wb_Text1 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0;
   margin: 0;
   text-align: center;
}
#wb_Text1 div
{
   text-align: center;
}
.wb_text1 a {
  color: #9400D3;
  text-decoration:
none;
}
- 1 file hello.html, inline code :
<div id="wb_Text1" class="wb_text1">
<span><a href="hello">HELLO</a></span>
</div>


this is lightweight and low resource and clean or not?

Re: where is "text-decoration: none" ?

Posted: Mon Apr 07, 2025 9:15 am
by Pablo
You can create hyperlink styles in the Style Manager.
If you uncheck the 'underline' option the text-decoration will be 'none'
https://wysiwygwebbuilder.com/link_color.html

Also, you can set the default link style in the Page Properties -> Style -> Underline -> none

Re: where is "text-decoration: none" ?

Posted: Mon Apr 07, 2025 1:27 pm
by manuel_songokuh
thank you!