Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hello Jesyna,

    You’ll need to use css functions called media Queries which allows you to make mobile specific styles.

    for you case

    .main-column p {
        text-align: justify;
        font-size: 16px;
        letter-spacing: 0.5px;
    }

    This is the property that making all text justify,

    You need to add following codes to your stylesheets

    /* Portrait and Landscape */
    @media only screen 
      and (min-device-width: 375px) 
      and (max-device-width: 667px) 
      and (-webkit-min-device-pixel-ratio: 2) { 
        .main-column p {
          text-align: left;
        }
    }
    
    /* Portrait */
    @media only screen 
      and (min-device-width: 375px) 
      and (max-device-width: 667px) 
      and (-webkit-min-device-pixel-ratio: 2)
      and (orientation: portrait) { 
      .main-column p {
        text-align: left;
      }
    }

    That is for Iphone 6 , you can get detail media query guide form here Media Query

    if you need any additional clarification, just ask

    Regards
    Dasun

    Hi Nathan, The Quick Solution is

    #main-navigation .sf-menu a span.menu-decsription {
    display: none !important;
    color: #333;
    }

    This will solve your issue.

    You have to apply this code, since you have use display : inline ; It showing, by this, element will hide from that location, to remove this permanently one you need to little dig into super-fish.js and super-fish css files, it seems it’s coming by some jQuery,

    any way you can solve the problem by top css code part.

    HI Nathan, your issue is not clear, can you explain your issue Clearly and paste code snippets here.

    Paste this code in your css file

    h1.entry-title{

    font-size : (add required sise)px
    }

    all this things may be in your css files, try to inspect using firebug or google chrom inspectror and try to search what are the styles. then search those classes in style search and change accordingly. don’t forget to backup all the things before you start the changes

Viewing 4 replies - 1 through 4 (of 4 total)