Viewing 22 posts - 1 through 22 (of 22 total)
  • Author
    Posts
  • #491177

    Recently I updated my Enfold theme which caused the following issues:

    1. Header Image overlaps tabs
    2. Social media icon images disappearing when page becomes to small
    3. The lower right widget gets cut off when size of the page decreases

    #491335

    Hi tdproperty!

    Can you please post the link to your page/pages where we can see listed issues?

    Best regards,
    Yigit

    #491570

    Sorry for not posting the url I was very tired after getting my site back online last night. The web site is http://www.austindowntowncondos.com I would suggest shrinking the page width were you will first find that the logo will overlap the tabs. Than you will notice that the email address listed in the lower right widget will overlap the page border. Thank you for your help

    #491993

    Hey!

    1.) Use this to fix the overlap issue:

    @media only screen and (max-width: 989px) {
    .av-main-nav > li > a {
        padding: 0 7px;
        font-size: 12px;
    }}

    2.) Add this to display the social icons on smaller screens:

    @media only screen and (max-width: 767px) {
    .responsive #header .main_menu .social_bookmarks {
        display: block;
        position: absolute;
    }}

    Cheers!
    Ismael

    #493889

    Ismael,

    The main logo still overlaps the tabs and the social media icons still are not showing up correctly. When I added this code it made the social media icons show up on the mobile side as well over the main logo. Any help would be greatly appreciated?

    • This reply was modified 8 years, 8 months ago by tdproperty.
    #494770

    Hi!

    you did not tell us how you want it to look like. Can you provide us screenshots please? then we can provide you some precise CSS code.

    Best regards,
    Andy

    #495426

    Where can I upload the images or email them? Basically if you look at my site you will notice with the site fully expanded it looks great than the following happens as the site gets smaller.

    Full Screen = Site looks great
    Smaller Size 1 = Main logo overlaps tabs
    Smaller Size 2 = Social media icons move into the main page image
    Smaller Size 3/Mobile = Social media icons overlap mobile main logo

    I just need a fix so things do not over lap and a solution for the social media icons while in mobile view so that they do not overlap the main logo? Your help is greatly appreciated!

    #495427

    I have the following quick cc code

    .ui-datepicker-title select { padding-right: 17%; }
    
    @font-face {
      font-family: 'PT Sans';
      font-style: normal;
      font-weight: 400;
      src: local('PT Sans'), local('PTSans-Regular'), url(https://fonts.gstatic.com/s/ptsans/v8/LKf8nhXsWg5ybwEGXk8UBQ.woff) format('woff');
    }
    
    p { font-family: 'PT Sans' !important; }
    
    .grid-entry-title.entry-title {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    }
    
    .content, .sidebar {
    padding-top: 10px;
    padding-bottom: 10px;}
    
    body {
      font-size: 16px;
    }
    
    .phone-info span { font-size: 16px; }
    
    .main_menu .menu ul { width: 235px; }
    
    #top div .avia-gallery img { border-style: none; padding: 0; }
    
    @media only screen and (max-width: 989px) {
    .av-main-nav > li > a {
        padding: 0 7px;
        font-size: 12px;
    }}
    
    @media only screen and (max-width: 767px) {
    .responsive #header .main_menu .social_bookmarks {
        display: block;
        position: absolute;
    }}
    
    #495681

    Hi!

    well there are different ways you could try to achieve what you want. As you did not tell us what exactly you wish to do, I assume a possible solution myself: Try to activate mobile menu if screen is shrinking:

    @media only screen and (min-width: 767px) and (max-width: 1200px) {
    .container #advanced_menu_toggle, #advanced_menu_hide {
    display: block; 
    }
    .main_menu .avia-menu, #header_main_alternate, .fallback_menu {
    display: none;
    }}
    

    Hope this will help.

    Best regards,
    Andy

    #498635

    The last code worked great I just need to fine tune the social media icons in mobile view. Currently you will notice at 1087 width till about 751 width the social media icons overlap the mobile menu container. I would like to have the social media icons show up in between the menu container and the main logo then disappear before they over lap the logo. Do you have a solution for this? Once again your help is greatly appreciated!

    #499169

    Hey!

    use this code to control social icons on mobile:

    @media only screen 
      and (min-width: 751px) 
      and (max-width: 1087px) {
    ul.noLightbox.social_bookmarks.icon_count_4 {
    left: -60px;
    }}
    

    and adjust as needed.

    Best regards,
    Andy

    #499622

    I am very close the mobile media makes a switch at 780pxls that makes the social media icons disappear is there a way to set this to a lower number as the code you provided does not work below 780 pxls. Can you review the current coding that I have provided and let me know if the header looks good in addition to providing the code to make the social media icons appear past a number below 780pxls? Thanks for your help!

    .ui-datepicker-title select { padding-right: 17%; }
    
    @font-face {
      font-family: 'PT Sans';
      font-style: normal;
      font-weight: 400;
      src: local('PT Sans'), local('PTSans-Regular'), url(https://fonts.gstatic.com/s/ptsans/v8/LKf8nhXsWg5ybwEGXk8UBQ.woff) format('woff');
    }
    
    p { font-family: 'PT Sans' !important; }
    
    .grid-entry-title.entry-title {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    }
    
    .content, .sidebar {
    padding-top: 10px;
    padding-bottom: 10px;}
    
    body {
      font-size: 16px;
    }
    
    .phone-info span { font-size: 16px; }
    
    .main_menu .menu ul { width: 235px; }
    
    #top div .avia-gallery img { border-style: none; padding: 0; }
    
    @media only screen and (min-width: 584px) and (max-width: 1200px) {
    .container #advanced_menu_toggle, #advanced_menu_hide {
    display: block;
    }
    .main_menu .avia-menu, #header_main_alternate, .fallback_menu {
    display: none;
    }}
    
    @media only screen
      and (min-width: 584px)
      and (max-width: 1200px) {
    ul.noLightbox.social_bookmarks.icon_count_4 {
    left: -60px;
    }}
    #500109

    Hi!

    add “display: block” into my code:

    @media only screen 
      and (min-width: 751px) 
      and (max-width: 1087px) {
    ul.noLightbox.social_bookmarks.icon_count_4 {
    left: -60px;
    display: block;
    }} 
    

    Best regards,
    Andy

    #503118

    I tried the edit that you mentioned however the social media icons still disappear around 770 pixles and the top content bar with the phone number adjusts to the center. This switch with the top bar text moving to the center and the icons disappearing should take place around 660pixles. Any help cleaning up this code would be greatly appreciated. Thanks

    
    
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    }
    
    .content, .sidebar {
    padding-top: 10px;
    padding-bottom: 10px;}
    body { font-size: 16px; }
    
    .phone-info span { font-size: 16px; }
    
    .main_menu .menu ul { width: 235px; }
    
    #top div .avia-gallery img { border-style: none; padding: 0; }
    
    @media only screen 
     and (min-width: 584px) 
     and (max-width: 1200px) {
    .container #advanced_menu_toggle, #advanced_menu_hide {
    display: block;
    }
    .main_menu .avia-menu, #header_main_alternate, .fallback_menu {
    display: none;
    }}
    
    @media only screen
      and (min-width: 584px)
      and (max-width: 1200px) {
    ul.noLightbox.social_bookmarks.icon_count_4 {
    left: -60px;
    display: block;
    }}
    
    #503406

    Hey!

    I can see this code in your source code:

    @media only screen and (max-width: 767px) {
    .responsive #header .main_menu .social_bookmarks {
    display: none;
    }}
    

    which is preventing social icons to appear. Use this code instead:

    @media only screen and (max-width: 767px) {
    .responsive #header .main_menu .social_bookmarks {
    display: block !important;
    }}
    

    Cheers!
    Andy

    #503671

    Andy,

    That code was for my old code if I revert back to the code you provided it overlaps the main image with the tabs. I have provided all the code listed below that is currently in my quick css

    
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    }
    
    .content, .sidebar {
    padding-top: 10px;
    padding-bottom: 10px;}
    body { font-size: 16px; }
    
    .phone-info span { font-size: 16px; }
    
    .main_menu .menu ul { width: 235px; }
    
    #top div .avia-gallery img { border-style: none; padding: 0; }
    
    @media only screen 
     and (min-width: 584px) 
     and (max-width: 1200px) {
    .container #advanced_menu_toggle, #advanced_menu_hide {
    display: block;
    }
    .main_menu .avia-menu, #header_main_alternate, .fallback_menu {
    display: none;
    }}
    
    @media only screen
      and (min-width: 584px)
      and (max-width: 1200px) {
    ul.noLightbox.social_bookmarks.icon_count_4 {
    left: -60px;
    display: block;
    }}
    
    #503689

    Hey!

    can you show us the overlapping? then we could try to provide you some CSS code for it.

    Cheers!
    Andy

    #503731

    The code that you included for reply #503406 was not relevant as that code was removed in a prior post which corrected my overlapping header issue. All of my current css code is listed in my reply #503671 which does not include the following code that needs to be replaced

    
    @media only screen and (max-width: 767px) {
    .responsive #header .main_menu .social_bookmarks {
    display: none;
    }}
    
    #503871

    Hey!

    not sure what you mean and we really need to see things. Posting your current css code does not help us, so again: please show us the overlapping so we can inspect the elements and provide you some precise CSS code for the issue.

    Best regards,
    Andy

    #504297

    Andy,

    There is no overlapping currently you gave me the code that does not correspond with my current code. If you look what you wrote

    I can see this code in your source code:

    
    @media only screen and (max-width: 767px) {
    .responsive #header .main_menu .social_bookmarks {
    display: none;
    }}
    

    which is preventing social icons to appear. Use this code instead:

    
    @media only screen and (max-width: 767px) {
    .responsive #header .main_menu .social_bookmarks {
    display: block !important;
    }}
    

    Cheers!
    Andy

    You will notice that the above code is not found in my current code

    
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    }
    
    .content, .sidebar {
    padding-top: 10px;
    padding-bottom: 10px;}
    body { font-size: 16px; }
    
    .phone-info span { font-size: 16px; }
    
    .main_menu .menu ul { width: 235px; }
    
    #top div .avia-gallery img { border-style: none; padding: 0; }
    
    @media only screen 
     and (min-width: 584px) 
     and (max-width: 1200px) {
    .container #advanced_menu_toggle, #advanced_menu_hide {
    display: block;
    }
    .main_menu .avia-menu, #header_main_alternate, .fallback_menu {
    display: none;
    }}
    
    @media only screen
      and (min-width: 584px)
      and (max-width: 1200px) {
    ul.noLightbox.social_bookmarks.icon_count_4 {
    left: -60px;
    display: block;
    }}
    

    I value your alls time however I have explained this 3 times in past posts. Can you please review the code and help me correct the problem of the social media icons disappearing around 770 pixels. So once again please view my code and you will notice that what you wrote above does not include that code in my most recent code. Thank you for your time and make it a great day!

    #504300

    Ismael can you please help me?

    #504687

    Hi!

    send us admin access and we check it. Post login details here as private reply. Also include a precise link showing us the issue, so we can see what’s going on.

    Cheers!
    Andy

    • This reply was modified 8 years, 7 months ago by Andy.
Viewing 22 posts - 1 through 22 (of 22 total)
  • You must be logged in to reply to this topic.