Module + font = HELP |
![]() ![]() |
Module + font = HELP |
![]()
Post
#1
|
|
Newbie ![]() Group: Member Posts: 6 Joined: May 2007 Member No: 523,775 ![]() |
whenever i put custom right modules on a layout the bold and italic and underline styles that apply for the rest of the layout dont carry over onto the custom moduels...does any one know why or how to fix it?????????
thanks! |
|
|
*digitalfragrance* |
![]()
Post
#2
|
Guest ![]() |
Can we see your coding?
|
|
|
![]()
Post
#3
|
|
Newbie ![]() Group: Member Posts: 6 Joined: May 2007 Member No: 523,775 ![]() |
Sure sorry
<!-- Script by Paul Chen --><td id="customRight" style="display:none" vAlign="top" width="200"> <!-- module:start --> <table class="left" cellSpacing="0" cellPadding="4" width="100%" border="1"> <tr><th class="left" vAlign="top" align="center"> <b>The Model</B> </th></tr> <tr><td class="left" vAlign="top"> <img src="http://i28.photobucket.com/albums/c243/foxxiegirlie/th_victoriasecret2.png"><br> <b>name</b> <u> age</u> <i>where</i><br><br> You can say <b>anything</b> you want here. Talk it up...what you <i>like</i> or <s>hate</s> or whatever. Remember to use <b>bold</b>, <i>italics</i>, <u>underline</u>, and <s>strike out</s>! </td></tr> </table> <br/> <!-- module:end --> </td> <script> extra=false; j=document.getElementById('MoreoverModule1_lblModuleTitle') if(j){extra=true} index=0; var mytds = document.getElementsByTagName('td'); var i = 0; for(i=0;i<mytds.length-1;i++){ if(mytds[i].width=="200"){ index++; if(index==(extra ? 2 : 1)){break;}} } var sidebar = (extra ? mytds[i]: mytds[i].parentNode) var tsibpc = document.getElementById('customRight'); var rightSide = tsibpc.cloneNode(true); rightSide.style.display = "block"; sidebar.appendChild(rightSide); </script> |
|
|
*digitalfragrance* |
![]()
Post
#4
|
Guest ![]() |
Okay, here's what I suggest. Add this to your code, and edit the styles, colors, and fonts as you wish:
CODE <style="text/css">
b, strong { /* edits all the bolded words */ color: #000000; font-weight: bold; letter-spacing:0px; font-size: 11px; font-face: verdana; text-transform: none; } I, EM { /* edits all the italic words */ color: #27408B; letter-spacing:0px; font-size:11px; text-transform:none; font-style:none; background-color:none; } u { /* edits all the underlined words */ color: #000000; letter-spacing:0px; font-size: 11px; text-transform:none; font-style:none; background-color:none; } </style> |
|
|
![]() ![]() |