dazunj
Forum Replies Created
-
Forum: Themes and Templates
In reply to: How to change text alignment on mobile version ONLY?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
DasunForum: Themes and Templates
In reply to: [MesoColumn] Removing description on primary and top menuHi 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.
Forum: Themes and Templates
In reply to: [MesoColumn] Removing description on primary and top menuHI Nathan, your issue is not clear, can you explain your issue Clearly and paste code snippets here.
Forum: Themes and Templates
In reply to: [Decode] Changing Page Title FontPaste 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