Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #1193205

    HI GUYS,

    I have a few issues with my mobile view of my site.
    1, , the top logo view is way to small to read properly. I would like this to be bigger without having the menu bars interfere with it

    2: the buttons on the 3 pages below need to be aligned better. Any ideas ?

    amany thanks

    #1193880

    ANYBODY ? IVE FIXED THE BUTTON ISSUE, BUT STILL HELP WITH THE LOGO ON MOBILE VIEW

    #1193961

    Hi,

    Add this to quick css:

    
    @media only screen and (max-width: 767px)  {
    .container.av-logo-container{
    margin-left:0px!important;
    margin-right:0px!important;
    }
    .logo a img{
    width: 250px!important;
    max-height: 80px!important;
    }}
    

    Best regards,
    Jordan Shannon

    #1194053

    Hi Jourdan, It didnt change a thing. I may have conflicting CCS. Could you check out my css and let us know. Info below. I need it too been seen and have the menu bars far left as to not interfere.

    #1194715

    Hi PositiveChanges,

    1. We can do a CSS technique called Image Replacement, but you will need to have a different logo for mobile devices. Some text in your current logo won’t be readable as it is when shrunk on mobile.

    2. I have added this in Custom CSS Class (Developer Settings of the 1/2 row) btn-column and in Quick CSS, inside this media query:

    @media only screen and (max-width: 767px) {

    I have added this CSS code:

    #top .btn-column {
        text-align: center;
    }
    
    #top .btn-column .avia-button-wrap {
        display: inline-block;
        float: none;
    }

    Also on top of you Quick CSS, I have seen this

    <a href="http://mydomain.com"> Copyright - MyService </a>

    and

    38bbf1

    which I commented out so it won’t be read as it will result to some of your CSS not to work.
    I haven’t thoroughly checked on your Quick CSS, but please check it again as HTML code is not valid, it should be in this format:

    selector {
      property: value;
    }

    Hope this helps.

    Best regards,
    Nikko

    #1194735

    Hi Nikko, thanks for your help mate!
    The first question to #1 : So how do I do an image replacement on mobile only?

    2: is this in relation to the button issue? It was fixed if it was.

    3: that top text was way back at the beginning of building this site and I think it was to do with the logo alignment ??? and I had little experience doing all of this. Either way…………… should I delete or ??????
    The link for the image I want as a mobile logo is below. HOw do I do this ?

    To be honest Im a little confused

    #1195045

    Hi PositiveChanges,

    1. You can use this code and replace https://www.yoursite.com.au/wp-content/uploads/2020/03/image_name.jpg with the url of the new logo:

    @media only screen and (max-width:767px) {
      .responsive #top .logo a {
        background: url(https://www.yoursite.com.au/wp-content/uploads/2020/03/image_name.jpg) right center no-repeat;
      }
    
      .responsive #top .logo img {
        opacity: 0;
      }
    }

    2. I see, the code I applied for changes are those 2 buttons position in mobile so they are both center-aligned and I think it makes it look better.

    3. I’m not really sure what you mean with that top text was way back at the beginning of building this site, can you give us a screenshot on this?
    As for the mobile logo, I think that’s too wide, try using 300px wide and 52px high mobile logo and use the code posted above just replace the url.

    Best regards,
    Nikko

Viewing 7 posts - 1 through 7 (of 7 total)
  • You must be logged in to reply to this topic.