Carolina Nymark
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Aaron] Image header responive problemGreat!
Forum: Themes and Templates
In reply to: [Aaron] Image header responive problemHi, the header image is designed to cover the viewport.
Find this part in functions.php, line 298:
.site-header { background: url(<?php header_image(); ?>) no-repeat center center; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; }
And replace center or cover with your preferred position.
Forum: Themes and Templates
In reply to: [Aaron] Header: image size?The header uses javascript to make sure that it covers the height of the view port even if the Call to Action and Highlights are hidden. You can edit or remove this script at the bottom of the navigation.js file.
Remember to create a child theme so that you don’t loose your changes when the theme is updated.
Forum: Themes and Templates
In reply to: [Aaron] how to add highlightsThe only current options are show none of the highlights or to show all 3 of them.
You will find these options in the customizer.
Forum: Themes and Templates
In reply to: [Aaron] How to make the logo larger?Assuming you are adding the logo with the help of Jetpack,
please find this on line 20 of jetpack.php and change the numbers:
add_image_size( ‘aaron-jetpack-logo’, 200, 200 );Forum: Themes and Templates
In reply to: [Aaron] Add vertical main menu?Hi, there is currently no option for a vertical menu in the theme.
Forum: Themes and Templates
In reply to: [Aaron] Customize Frontpage Highlights IconsHi guys,
– I appreciate your feedback but I will need a little more time to implement and test these options before I can update the theme.Forum: Themes and Templates
In reply to: [Aaron] Aaron theme and Jetpack compatibility issueI will mark this as resolved then, thank you for the review ??
And thank you Yogi aswell.Forum: Themes and Templates
In reply to: [Aaron] Header: image size?Hi!
The image just needs to be big enough to cover the view port. If it is not, it will be stretched. So perhaps 2000px wide.
(Don’t make it too big or it will take too long to load… ?? )
I’m not sure if I understood the issue right, can you give me any more details?
Try opening functions.php and find line 284. Replace center center
with for example center top and see if that helps. It moves the focus from the center of the image to the top center.Forum: Fixing WordPress
In reply to: 404 Error at the bottom of every pageHi!
It looks like you have already made sure that footer.php is in the folder.
My next step would be to remove all widgets in the footer and see if it makes any difference. Next, deactivate all plugins, check the site, and then activate them one by one and check if it makes any difference.
If none of the above works, open index.php in the editor under the appearance menu. Find this line get_footer(); at the very bottom of the file. Add // infront of this line like this:
//get_footer(); . Save and check your frontpage.- If you have a frontpage template then you might have to reset it to “show posts on front” in the customizer.Does this solve the error?
Forum: Themes and Templates
In reply to: One full post and rest as excerptsHi! As you know Kvarken has not been updated for more than a year. To fix this issue and to follow the latest theme guidelines and best practices, the theme would need a complete rewrite. Unfortunately I don’t have that kind of time at the moment.
To show some posts as full posts and some as excepts you would need a custom query.
Forum: Themes and Templates
In reply to: [Musik] disable "view all post by"There is an option for this in the customizer.
Forum: Themes and Templates
In reply to: [Musik] W3C validate ?I’ve fixed two html errors and uploaded a new version, it will probably be live in 2-3 days. Meanwhile it is available on https://github.com/carolinan/Musik
But I could not replicate the unclosed div ( wrapper).
Forum: Themes and Templates
In reply to: [Musik] Problem with the lightbox pluginI’m sorry I’ve had no luck with this.
I’ve tested the Simple-Lightbox plugin and received 119 php errors, none of them related to the theme.
I tested 3 more but neither of them worked with gallery images, only one, “lightbox”, worked with normal images, but threw javascript errors instead.The thing is, the theme doesn’t actually do anything with the images, besides configuring a thumbnail size. I will try adding theme support for html5 and see if it makes any difference.
add_theme_support( 'html5', array( 'comment-list', 'comment-form', 'search-form', 'gallery', 'caption' ) );
Forum: Themes and Templates
In reply to: [Musik] W3C validate ?Thank you for reporting this, I will look at it right away.