hi
i'm looking for text-decoration: none for text link..how?
where is "text-decoration: none" ?
Forum rules
PLEASE READ THE FORUM RULES BEFORE YOU POST:
viewtopic.php?f=12&t=1901
MUST READ:
http://www.wysiwygwebbuilder.com/links.html
PLEASE READ THE FORUM RULES BEFORE YOU POST:
viewtopic.php?f=12&t=1901
MUST READ:
http://www.wysiwygwebbuilder.com/links.html
-
-
- Posts: 220
- Joined: Tue May 30, 2017 8:47 pm
Re: where is "text-decoration: none" ?
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
- 1 file external name: hello.css
- 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
- 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?
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;
}
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;
}
<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;
}
<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" ?
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
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
-
-
- Posts: 220
- Joined: Tue May 30, 2017 8:47 pm
Re: where is "text-decoration: none" ?
thank you!