• Resolved skoczyi

    (@skoczyi)


    Hello

    What i suppose to do?
    I’ve put a shortcode inside a frame to create a hover effect with one size on every mobile devices. without this a width is always 100%

    i used for that this code

    <table style="height: 321px; width: 320px;" border="0" align="center">
    <tbody>
    <tr>
    <td>[ichcpt id="429"]</td>
    </tr>
    </tbody>
    </table>
    &nbsp;

    If you go to this link you can see a borders arround hover on sidebar.
    http://www.iz53.pl
    How to remove that!!??

    Please.
    Thanks.
    Peter

Viewing 4 replies - 1 through 4 (of 4 total)
  • Both your <table> and <td> have borders set in CSS.

    You can either add style="border:0;" to <table> and <td>, or you can get rid of the borders by placing a snippet in stylesheet:

    .textwidget table, .textwidget table > tbody > tr > td{
    border: 0;
    }

    If it’s not working still, try forcing it with !important.

    ^V

    Thread Starter skoczyi

    (@skoczyi)

    Thanks

    this css if work perfect.

    You helped me very!!!

    
    .textwidget table, .textwidget table > tbody > tr > td{
    border: 0;
    }
    Thread Starter skoczyi

    (@skoczyi)

    Thanks

    this css is working perfect.

    You helped me very!!!

    
    .textwidget table, .textwidget table > tbody > tr > td{
    border: 0;
    }
    • This reply was modified 7 years, 9 months ago by skoczyi.

    Happy I could help!

    ^V

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘border on frame in sidebar’ is closed to new replies.