hỏi về sharepage

Mình dùng skin trên máy tính, ipad thì nó vẫn hiện share pages ở cuối trang. nhưng trên iphone lại không hiện ( ngay cả vxvn cũng ko hiện )
mình đoán là do Responsive có cách nào chỉnh không ạ

PHP:
<xen:if is="@enableResponsive">
@media (max-width:@maxResponsiveNarrowWidth)
{
    .Responsive .sharePage
    {
        display: none;
    }
}
</xen:if>
 
bạn coi lại phần css coi nào,chiều rộng của nó.
PHP:
.sharePage
{
}

{xen:helper clearfix, '.sharePage'}

    .sharePage .shareControl
    {
        float: left;
    }
  
    .sharePage .tweet
    {
        margin-right: 30px;
    }

    .sharePage .facebookLike .label
    {
        font-size: 11px;
        line-height: 24px;
        float: left;
        margin-right: 7px;
        display: none;
    }
  
    .sharePage iframe
    {
        height: 20px;
    }
  
    .sharePage .facebookLike iframe
    {
        z-index: 52;
    }
  
<xen:if is="{$pageIsRtl}">
    /* G+1 bugs in RTL - they absolutely position on the left which makes a scrollbar */
    iframe[id^="oauth2relay"]
    {
        rtl-raw.left: auto !important;
        rtl-raw.right: -100px !important;
    }
  
    #___plusone_0, #___plusone_1, #___plusone_2
    {
        rtl-raw.left: auto !important;
        rtl-raw.right: -10000px !important;
    }
</xen:if>

<xen:if is="@enableResponsive">
@media (max-width:@maxResponsiveNarrowWidth)
{
    .Responsive .sharePage
    {
        display: none;
    }
}
</xen:if>
bác xem chỉnh ở đâu ạ
 
PHP:
.sharePage
{
}

{xen:helper clearfix, '.sharePage'}

    .sharePage .shareControl
    {
        float: left;
    }
 
    .sharePage .tweet
    {
        margin-right: 30px;
    }

    .sharePage .facebookLike .label
    {
        font-size: 11px;
        line-height: 24px;
        float: left;
        margin-right: 7px;
        display: none;
    }
 
    .sharePage iframe
    {
        height: 20px;
    }
 
    .sharePage .facebookLike iframe
    {
        z-index: 52;
    }
 
<xen:if is="{$pageIsRtl}">
    /* G+1 bugs in RTL - they absolutely position on the left which makes a scrollbar */
    iframe[id^="oauth2relay"]
    {
        rtl-raw.left: auto !important;
        rtl-raw.right: -100px !important;
    }
 
    #___plusone_0, #___plusone_1, #___plusone_2
    {
        rtl-raw.left: auto !important;
        rtl-raw.right: -10000px !important;
    }
</xen:if>

<xen:if is="@enableResponsive">
@media (max-width:@maxResponsiveNarrowWidth)
{
    .Responsive .sharePage
    {
        display: none;
    }
}
</xen:if>
bác xem chỉnh ở đâu ạ
bạn thay :
Mã:
<xen:if is="@enableResponsive">
thành này xem sao.
Mã:
<xen:if is="width < 500">
 
Back
Top