Forum Replies Created
-
AuthorPosts
-
sandrasParticipant
Thank you for your reply and code for functions!
Regarding slider – I modified mobile screen view with css by decreasing font size and margin between titles and buttons. Works for now for usand does not too much space for the image (853px height would be too much for us)sandrasParticipantHello,
Still waiting your reply to my question: What would be the perfect dimension for the slider from theme perspective?
frontpage slider is not mobile responsive – text is not resized properly and also image does not look good.
Thanks
sandrasParticipantThank you, your advice regarding the mobile menu helped me to solve the issue!
Unfortunately, if I add a bigger image for the slider (I tried same then in event star demo has: 1280×610), it will display too high image on the desktop, all feature information section will be out of the viewport but mobile version is still a bit out of proportion and slider buttons are also out of the view partly. What would be the perfect dimension for the slider from theme perspective? And would it be possible to set a mobile version slider size in css?sandrasParticipantHello!
I´m still struggling to get 1) slider image responsive mode to the normal size – it is currently tiny if looking in mobile, if changing from customizer “full” size, then it is enormous also in desktop size. How could I make it a bit bigger in mobile version if I selected from settings responsive mode?
2) Hamburger menu if looking on mobile does not open list of the links properly, it just shows it for half secondI have tried deactivate plugins, does not affect those issues.
sandrasParticipantIs there any news about the issue? I really need now to go live with the short url..
sandrasParticipantThank you! You can see the site from that link.
For now I removed from wp-config that part of the code which is showing the short home url, if needed to test, I can put it back for certain time
Here is also screenshot as an example and screenshot from the error I gotsandrasParticipantWhile site home url is changed also customizer does not work, I managed to get there fatal error that something is wrong in file event star – class-at-theme.info.php
in row 63. I tested that row in php validator, there were no errors according to that. However, only option to get site back was to deactivate event star theme, change urls back and deactivate troubleshooting plugin I was using to test.
Also – if the site`s home url is different, also admin bar disappears when I´m in a page view. I have another site (with other themes) set up like that and there is no errors like that. Any response from author would be much appreciated!sandrasParticipantHello!
Is there any advice regarding that responsivness problem? Childtheme is created as I mention before according wordpress descriptions. I have tested to switch off all plugins and one by one – the problem is still there and it seems to not caused by plugin.
sandrasParticipantI switched off all plugins one by one, same problem appeared every time.
Child theme is done according WordPress.org descriptions (https://developer.wordpress.org/themes/advanced-topics/child-themes/).
My functions.php file is following:
<?php
function my_theme_enqueue_styles() {$parent_style = ‘event-star-style’; // This is ‘evemt-star-style’ theme
wp_enqueue_style( $parent_style, get_template_directory_uri() . ‘/style.css’ );
wp_enqueue_style( ‘child-style’,
get_stylesheet_directory_uri() . ‘/style.css’,
array( $parent_style ),
wp_get_theme()->get(‘Version’)
);
}
add_action( ‘wp_enqueue_scripts’, ‘my_theme_enqueue_styles’ );
remove_filter(‘widget_text_content’, ‘wpautop’);
?>I realised menu is working for 768px screen size if I remove that last part:
add_action( ‘wp_enqueue_scripts’, ‘my_theme_enqueue_styles’ );
remove_filter(‘widget_text_content’, ‘wpautop’);
But then all thedesign is messed up.sandrasParticipantMy site is not public yet, so I can`t share it. However meanwhile I added that to my css:
.at-sticky {
width: 100%;
position: fixed;
left: 0;
top: 0;
z-index: 999;
border-bottom: 1px solid #e6e6e6;
-webkit-animation: navigationFlipIn 0.5s;
animation: navigationFlipIn 0.5s;
}
and that did the trick and it works now!
Another question is that info-icon-box is displayed here https://demo.acmethemes.com/event-star/ on top of the slider image, on my site it is in below. I tried to add
.image-slider-wrapper > .info-icon-box-wrapper {
position: absolute;} But that does not help. What could be the problem?Here (https://www.acmethemes.com/freevspro/event-star-free-vs-pro/) it looks that free version shall have google fonts to choose but in customizer there is no such thing as Font options.
-
AuthorPosts