Forum Replies Created
-
AuthorPosts
-
Sure. Check out the bxslider documentation here: http://bxslider.com/options (select autoStart in “Quick options reference” menu to go straight to the option you need)
You will have to modify custom.js. The bxslider options start on line 72:
$('#slider-clients').bxSlider({ controls: false, minSlides: 1, maxSlides: 5, slideWidth: 200, slideMargin: 10 });
Add
autoStart: true
so that you will have this:$('#slider-clients').bxSlider({ controls: false, minSlides: 1, maxSlides: 5, slideWidth: 200, slideMargin: 10, autoStart: true });
Hi. I’m sorry but this is not an issue for support, as it is not an issue with the project. For handling/learning Photoshop, please use the Adobe tutorials on their website. I can only say this: You just have to use the slice tool and “Save for web” the slice for both retina and non-retina psds.
The best way is to use the translation files included (.mo and .pot), to translate the text with poEdit or an appropriate WordPress plugin like WPML. Otherwise, if you want to manually modify each file where the “Read more” text is present, you will have to modify in 12 files:
blog.php - line 59 content-sidebar-half-page.php - line 44 content-sidebar-page.php - line 44 full-width-page.php - line 44 image.php - line 36 functions.php - line 331, line 334 and line 347 index.php - line 39 landing-page.php - line 34 page.php line 43 sidebar-content-half-page.php - line 48 sidebar-content-page.php - line 48 single.php - line 44
I have attached a screenshot with details.
Attachments:
You must be logged in to view attached files.Hi,
If you want to change how the button looks you only have to modify style.css (line 1163):
.read-more { clear: both; display: inline-block; font-weight: 700; padding: 1px 5px; border-radius: 3px; background: #f3ece1; color: #515151; text-shadow: 0 1px 0 #fff; border-bottom: 1px solid #c6c6c6; font: 0.9em 'PT Sans', Arial, sans-serif; }
Or more simple, add your custom css styles in dashboard in Appearance > Theme Options > CSS Styles, like this (example):
.read-more { color: #00b2df; font: 1em Georgia, serif; }
Hi, please provide a link to your website and access to dashboard so I can take a look.
Don’t forget to check “Set as private reply” whenever sending such sensitive data.Hello. Moustache & Pipe is not a WordPress theme, it’s a HTML template. We are considering a WordPress version for the future, but at this point is too soon to have a definite deadline or even be sure if we will release such a version.
You’re welcome.
The countdown doesn’t use the cursive font by default, so I cannot change the theme for everybody.
If you want to change it, you can change it from Theme Options. Just go to Appearance > Theme Options > CSS Styles and write there the following text:
.top-widget .widget-title { font-family: 'Marck Script', cursive; font-size: 2.8em; font-weight: 300; margin-bottom: 20px; }
The theme update was just approved at ThemeForest. You can download the theme now and the new font will look like here in the demo: http://ithemewordpress.com/vintage-wedding-theme/2013/04/27/nam-lorem-urna-vestibulum-vitae-ultrices-ac/
You’re welcome.
The page in your screenshot is not Latest News, it’s just the blog page with the blog posts.
If you want all the pages and posts from the demo, the .xml file is included with the theme. You will find it in the xml-dummy-data folder. Just import it and all the pages and blog posts will be there.Or if you just want just the blog page, create a page and name it Blog (or whatever you like) and choose as template “Blog” or “Blog Excerpt”.
Hi,
Yes, I reviewed again now the discussion we had on the comments section of the theme.
To answer points 1) and 2):
There are 2 problems with what you provided:
– There is no working website. The link (http://27tamada.ru) is a suspended domain and it shows a default page from the hosting company.
– I cannot use the font you attached (GoodVibesCyr), because it’s not a webfont. The normal desktop installable font cannot be used for web. When you search for a font, please make sure it has “webfont” option with all the necessary formats (.svg, .eot, .ttf and .woff).So I will use the other font you provided (Marck Script from Google Fonts). Since I cannot make modifications on your website, I will modify (today) the theme and submit the update for approval at ThemeForest. You should receive an automatic email from ThemeForest when it will be approved, but nevertheless I will also notify you here, just to be sure. The approval usually takes about 24 hours, but it could take up to a few days, depending on how busy the reviewers are. After approval, just re-download the Vintage Wedding Theme from your ThemeForest account and the new font will show wherever it’s necessary (names, titles etc.)
To answer point 3):
There is no Latest News section in the theme. If you meant the “Recent from our Blog” section, is just the default WordPress widget with the latest blog posts.
Have a great day!
You’re welcome. I hope your friends have a great wedding.
The problem is you only loaded the italic variant for the Libre Baskerville font, but in the css you have not put
font-style: italic;
You can either load all the styles for Libre Baskerville like this:
//fonts.googleapis.com/css?family=PT+Sans:400,700,400italic,700italic|Libre+Baskerville:400,700,400italic|Great+Vibes'
or add
font-style: italic;
everywhere you used Libre Baskerville.That’s because you just loaded the fonts, but you have not used them. You have to change the fonts in style.css too. For example the font used for bride and groom name is in style.css on line 894:
font-family: 'Great Vibes', 'PT Sans', sans-serif;
Hi,
The fonts are not loaded in header.php. It is WordPress, and Vintage Wedding Theme follows the correct procedure and loads them in functions.php.
You can find the functions.php file in the includes folder. Fonts are loaded on line 816:
wp_enqueue_style('vw-googlefonts', "//fonts.googleapis.com/css?family=PT+Sans:400,700,400italic,700italic|Great+Vibes&subset=latin,latin-ext,cyrillic", array(), '1.0');
Hi,
This is not an issue with the theme (so not a support issue), it’s WordPress, so it’s for the WordPress Codex and forums. I will, however, offer help. And because this question was asked before, in another forum thread, I added the answer in the Frequently Asked Question forum here: http://craftedpixels.net/support/forums/topic/how-do-i-remove-comments-on-posts-and-pages/
-
AuthorPosts