-
Posted in : Responsy WP
-
How To Change Slide Order?
To change slide order, change slide date or time.When Defining New Values For Image Cropping?
After defining re upload featured image.How To Display Homepage Modules?
Homepage modules are widget, so go to widgets page and use homepage widgets for homepage widgets area.How To Change Fonts?
1 – select your font from google web fonts: http://www.google.com/webfonts/
2 – click “Quick-use” link,
3 – find ”@import” tab and copy @import code like this:
@import url(http://fonts.googleapis.com/css?family=Cuprum);
4 – find “Integrate the fonts into your CSS :” title and copy font-family code like this:
font-family: ‘Cuprum’, sans-serif;
5 – go to responsy settings > style tab, find “Custom CSS ” text box and paste your codes like this:firstly paste this code:
@import url(http://fonts.googleapis.com/css?family=Cuprum);
for h1 heading paste this code:
h1 { font-family: ‘Cuprum’, sans-serif; }
for h2 heading paste this code:
h2 { font-family: ‘Cuprum’, sans-serif; }
for h3 heading paste this code:
h3 { font-family: ‘Cuprum’, sans-serif; }
for h4 heading paste this code:
h4 { font-family: ‘Cuprum’, sans-serif; }
for h5 heading paste this code:
h5 { font-family: ‘Cuprum’, sans-serif; }
for h6 heading paste this code:
h6 { font-family: ‘Cuprum’, sans-serif; }How To Translate?
Go to documentation > localization and learn step by step.How To Make Longer Your Custom Logo If It Has Long Width?
1 – go to Appearance > Editor,
2 – find header.php file name on the right hand side and click to open for editing,
3 – in the header.php file find this line:
div id=”logo” class=”span4″4 – change it right this:
div id=”logo” class=”span5″5 – and also in the header.php file find this line:
nav class=”span8″6 – change it right this:
nav class=”span7″7 – press Update File button to save changes,
Summary:
Default: span4 – span8
Longer: span5 – span7
Extra longer: span6 – span6
The topic ‘FAQ: Responsy WP’ is closed to new replies.