GavickPro
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Perfetta] Linking Header image to a different pageHello,
I suppose that you mean the logo as link in the header. In this case you should modify (or override in the child theme) file header.php – exactly the following line:
<a class="home-link" href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home">
the link for the logo is generated by the following fragment:
<?php echo esc_url( home_url( '/' ) ); ?>
Forum: Reviews
In reply to: [GK Portfolio] Nice and cleanstyle.css – around line 444. there is the following code:
#primary { background: #fff; -webkit-box-shadow: 0 0 13px rgba(0, 0, 0, .07); -moz-box-shadow: 0 0 13px rgba(0, 0, 0, .07); -ms-box-shadow: 0 0 13px rgba(0, 0, 0, .07); box-shadow: 0 0 13px rgba(0, 0, 0, .07); margin: 0 auto; padding: 0 0 30px 0; width: 700px; }
Forum: Reviews
In reply to: [GK Portfolio] Nice and clean@mismyl1 – currently you can change the width property for the #primary selector under the style.css file. In the next version we will add an option to control the page width.
Forum: Themes and Templates
In reply to: [GK Portfolio] FaviconHello,
For changing favicon please use a dedicated plugin like this: https://www.ads-software.com/plugins/all-in-one-favicon/
Currently there is no widget area over the content – I will add it in the next update.
Forum: Themes and Templates
In reply to: [GK Portfolio] wp-config-sample.php fileHello,
The theme package doesn’t contain this file – it is a part of the wordpress installation package not of the theme package.
Forum: Themes and Templates
In reply to: [GK Portfolio] Custom Header Size on GK PortfolioIt is exactly as @axel13 mentioned – there is no header image in this template.
Hello,
Do you want to achieve this effect on the portfolio page or on the post page?
Forum: Themes and Templates
In reply to: [GK Portfolio] Image problem w/GK PortfolioHello,
Did you solved your issue by yourself? Because now I don’t see a described issue on the linked website.
Forum: Themes and Templates
In reply to: [Perfetta] Missing Footer menu?Did you refreshed your browser cache after the changes? For me your main menu appears correctly.
Forum: Themes and Templates
In reply to: [Perfetta] Missing Footer menu?Hello,
The footer menu was designed for social icons – in the next version we will add a built-in possibility to use it also as a normal menu. For current case please add the following CSS code:
body .social-menu li { width: auto; } body .social-menu li > a { font-size: 14px; text-indent: 0; top: 0; width: auto; }
Forum: Reviews
In reply to: [GK Portfolio] Nice and cleanThank you for your review – we will consider to add few more options for display in the next version of the theme ??
Forum: Themes and Templates
In reply to: [Perfetta] Previous & Next Post Links in single.phpHello,
I suggest you to implement your pagination in the same way as the posts pagination is implemented:
https://github.com/GavickPro/Portfolio-Free-WordPress-Theme/blob/master/functions.php#L292-L318
Then you will get a proper styling.
Forum: Themes and Templates
In reply to: [Perfetta] Change user avatar sizeHello,
Yes, it is possible by the following filters:
* for meta-info: perfetta_author_avatar_size (default size is 32px)
* for author bio under the post: perfetta_author_bio_avatar_size (default size is 80px)Forum: Themes and Templates
In reply to: [Perfetta] Add author avatarHello again,
Please apply the following changes: https://github.com/GavickPro/Perfetta-Free-WordPress-Theme/commit/6c36a8b31cd4bfd95c8003556507294bdf1d4964 – it will add an option “Show author avatar” in the features section in the theme customizer and additionally it will fix an issue with long author names
Forum: Themes and Templates
In reply to: [Perfetta] Loading posts on start- and category-pages earlierHello,
This feature is connected with using the scrollreveal.js library – you can disable this behaviour in the theme settings under the “Features” section.