Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #117767
    Nick Coromelas
    Participant

    I am currently building my site and it is coming together nicely. nickcoromelas.com However, there are a few issues.

    Parallax menu- am not clear how to have it do a single page scroll like the demo. I understand i included items in the drop downs but i believe i should set anchors to positions on a single page.

    I am trying to use the promotion section and there is no place to add my link. the button comes back to your site.

    Portfolio images are extremely big on my screen. The images are created at 200px by 200px.

    Mobile- am not sure how to change the color of the menu button. i believe it is white currently.

    Mobile. the top image is getting cut off by the header bar.

    Ideally i would like to make the header bar transparent.

    Is it possible to switch the location of the logo slider? I see that the feature content had the ability but that is limited as well.

    thank you in advance.

    #117786
    Mahesh
    Participant

    @nickcoromelas: Thank you for using Parallax Frame Pro.
    * Parallax menu- am not clear how to have it do a single page scroll like the demo. I understand i included items in the drop downs but i believe i should set anchors to positions on a single page.
    – Please clarify more on this.

    * I am trying to use the promotion section and there is no place to add my link. the button comes back to your site.
    – There has been a small bug in the theme, this will be fixed in the next update.

    * Portfolio images are extremely big on my screen. The images are created at 200px by 200px.
    – The recommend image size for portfolio is 480*320 pixel. Please check the theme instruction in the link below:
    https://catchthemes.com/theme-instructions/parallax-frame-pro/#featured-image

    * Mobile- am not sure how to change the color of the menu button. i believe it is white currently.
    – Go to Dashboard=> Appearance=> Customize=> Additional CSS and add the following CSS:

    .mobile-menu-anchor a.genericon-menu {
    	color: #ff00ff;
    }

    * Mobile. the top image is getting cut off by the header bar.
    Ideally i would like to make the header bar transparent.
    You are using following CSS, please remove it.

    #masthead {
        background-color: #fff;
    }

    * Is it possible to switch the location of the logo slider? I see that the feature content had the ability but that is limited as well.
    – Where do you what to display it?

    Regards,
    Mahesh

    #117859
    Nick Coromelas
    Participant

    Thank you for the response.

    CSS worked great on both items. I will also try resizing the images and look at the help link.

    However the header logo on mobile is over lapping the slider text making it impossible to read. Is there a way to push content down so it is not blocked by the header or remove logo image just when it responses to mobile?

    Parallax menu. In the desk top version I want a single page scroll. for example: when some one click in the menu item “Power user” i want it to scroll down to the slider bar on the home page instead of a new page.

    I am also confused when I create a new page they show up on the home page. How do I not have pages appear on the home page. Currently at the bottom you will see Nick Coromelas. that is pulling from a page. It looks terrible just floating there. There are some instances i will like a page there. Like contact me or something like that. Same issue with slider, hero etc. how would i change the position on the page of these items.

    As for rearranging the sliders and hero content. I dont have a specific location at this moment but would like the ability to do so. Hero content at the bottom of the page. I am not sure but if there is some basic code to rearrange position that would be helpful.

    #117900
    Mahesh
    Participant

    @nickcoromelas: Remove logo image just when it responses to mobile?
    Add the following CSS:

    @media screen and (max-width: 990px) {
    	#site-branding {
    		display: none;
    	}
    }

    Parallax menu. In the desk top version I want a single page scroll.
    For this you’ll need to use have Custom Links menus. Then use following url for “Power User”
    http://www.nickcoromelas.com/#logo-slider.

    You are using static home page, and currently the Nick Coromelas page is selected as Front page, its from that page. Please select the page which you want to be displayed in homepage. For this, go to Dashboard=> Appearance=> Static Front Page.

    For changing position, you’ll need to create child theme and customize, tell me where exactly you want to shift position, and I’ll provide you with the code. If you are not familiar with programming, I strongly recommend you to hire a customizer.

    You can find more details on creating child theme HERE. Then in your child theme’s functions.php, add the following code:

    function parallax_frame_child_move_to_footer(){
    	remove_action( 'parallax_frame_before_content', 'parallax_frame_hero_content_display', 20 );
    	add_action( 'parallax_frame_after_content', 'parallax_frame_hero_content_display', 40 );
    }
    add_action( 'init', 'parallax_frame_child_move_to_footer' );

    Note: It will move hero content to the bottom, just above the footer.

    Regards,
    Mahesh

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Parallax issues’ is closed to new replies.