• Skip to main content
  • Skip to forum navigation

StudioPress

  • Shop for Themes
  • My StudioPress

Forum navigation

  • Home
  • General Genesis Discussions
  • StudioPress Themes
  • Genesis Blocks
    • Genesis Blocks
    • Genesis Custom Blocks
  • Retired Themes
  • FAQs
  • Forum Rules
  • Internationalization and Translations
  • Forum Bugs and Suggestions
  • Forum Log In

Are You Using The WordPress Block Editor?

Genesis now offers plugins that help you build better sites faster with the WordPress block editor (Gutenberg). Try the feature-rich free versions of each plugin for yourself!

Genesis Blocks Genesis Custom Blocks

Vasilis

Welcome!

These forums are for general discussion on WordPress and Genesis. Official support for StudioPress themes is offered exclusively at My StudioPress. Responses in this forum are not guaranteed. Please note that this forum will require a new username, separate from the one used for My.StudioPress.

Log In
Register Lost Password
  • Profile
  • Topics Started
  • Replies Created
  • Engagements
  • Favorites

Forum Replies Created

Viewing 20 posts - 1 through 20 (of 95 total)
1 2 3 4 5 →
  • Author
    Posts
  • January 10, 2019 at 4:18 am in reply to: RSS excerpt tooooo long (not obeying WP settings) #244520
    Vasilis
    Member

    Victor thank you very much.

    The problem is not originating from there.

    As you might have guessed that was the first thing I checked. I've also checked the WP RSS PHP code and it's the same with every other template...

    Any other recommendation?

    Thank you very much


    Marketing & Business Development Consultant Located in Bangkok, Thailand @ PowerHouse Consulting Group

    May 10, 2018 at 3:19 am in reply to: Adding the default comment policy under comments…not showing up on Academy Pro #219703
    Vasilis
    Member

    Brad thank you very much for your help

    Tried most of these hooks already...either it appears before the whole comment form or after the comment form.

    Is there a chance I can edit the text exactly under where it says "Leave your comment" or add the Comment Policy text exactly before the Submit Comment button?

    Thank you beforehand


    Marketing & Business Development Consultant Located in Bangkok, Thailand @ PowerHouse Consulting Group

    October 2, 2017 at 8:24 pm in reply to: Remove Sidebar in Genesis Pro Portfolio Plugin Single Page #212108
    Vasilis
    Member

    Victor thank you very much

    Is this going to allow me the template option in Portfolio type of pages?

    Because at the moment I have no template option in the single portfolio page.

    Kindly appreciated


    Marketing & Business Development Consultant Located in Bangkok, Thailand @ PowerHouse Consulting Group

    March 10, 2017 at 10:35 pm in reply to: Brian Gardner's Custom Theme Edits on Minimalist-Pro Template #202863
    Vasilis
    Member

    Victor thank you very much , however I'm asking a different question.

    Given the fact that I can't seem to be able to find BG Boxshadow template I'm trying to recreate some parts of it.

    If it can be done I would like to know how , if not - no problem.

    Cheers.


    Marketing & Business Development Consultant Located in Bangkok, Thailand @ PowerHouse Consulting Group

    March 10, 2017 at 7:03 am in reply to: Brian Gardner's Custom Theme Edits on Minimalist-Pro Template #202809
    Vasilis
    Member

    Thank you very much Victor

    I understand the can't fit part because it is too tight.

    How does it work here? => http://briangardner.com

    Is it possible to use it exactly as Brian Gardner is using it on his theme?

    1) Would require the menu items to float left and the search bar to float right.

    2) Would require the search bar to expand on click and the search button to be inside , ALSO the search bar would need to have smaller width in characters.

    What do you think about this?

    Can it be done or should I forget it?

    Thank you very much


    Marketing & Business Development Consultant Located in Bangkok, Thailand @ PowerHouse Consulting Group

    March 10, 2017 at 4:06 am in reply to: Brian Gardner's Custom Theme Edits on Minimalist-Pro Template #202795
    Vasilis
    Member

    Thanks Victor!

    Did this already as you suggested.

    Now how can we put the search form in the nav bar AND remove the search button?

    Also customize it with the CSS in the example?

    Appreciate it.


    Marketing & Business Development Consultant Located in Bangkok, Thailand @ PowerHouse Consulting Group

    March 8, 2017 at 8:44 pm in reply to: Brian Gardner's Custom Theme Edits on Minimalist-Pro Template #202735
    Vasilis
    Member

    Bumping this post up.

    Any suggestions?

    Thanks


    Marketing & Business Development Consultant Located in Bangkok, Thailand @ PowerHouse Consulting Group

    March 6, 2017 at 10:31 pm in reply to: Brian Gardner's Custom Theme Edits on Minimalist-Pro Template #202613
    Vasilis
    Member

    Victor thank you very much

    Now minify is disabled , CloudFlare minify is disabled also and cache purged from CloudFlare.

    Any suggestions?

    Appreciate it


    Marketing & Business Development Consultant Located in Bangkok, Thailand @ PowerHouse Consulting Group

    March 1, 2017 at 11:43 pm in reply to: Brian Gardner's Custom Theme Edits on Minimalist-Pro Template #202311
    Vasilis
    Member

    Dear awesome people

    I recently installed Minimalist-Pro on my website (after using Genesis Simple a couple of years) and having a couple of questions.

    1. Trying to customize a menu search bar following Brian Gardner's website search bar appearance

    Followed the StudioPress guide to add the search bar on my navigation bar like this:

    //* Add Navigation Menu Extras
    add_filter( 'wp_nav_menu_items', 'theme_menu_extras', 10, 2 );
    function theme_menu_extras( $menu, $args ) {
    
    	if ( 'primary' !== $args->theme_location )
    		return $menu;
    		ob_start();
    	get_search_form();
    	$search = ob_get_clean();
    	$menu  .= '<li class="right search">' . $search . '</li>';
            return $menu;
    }

    And after copied Brian Gardner's custom CSS from the "Search Form" area .CSS file - using this:

    /* Search Form
    ---------------------------------------------------------------------------------------------------- */
    
    .site-header .search {
    	float: right;
    }
    
    .search-form:before {
    	color: #000;
    	content: "\f4a5";
    	font-family: 'Cormorant Garamond', serif;
    	font-size: 16px;
    	right: 15px;
    	position: absolute;
    	top: 7px;
    }
    
    .entry-content .search-form {
    	margin-bottom: 40px;
    	width: 50%;
    }
    
    .site-header .search-form {
    	margin-top: 4px;
    }
    
    .site-header .search-form input[type="search"] {
    	background-color: transparent;
    	border: none;
    	border-radius: 0;
    	font-size: 12px;
    	font-weight: 400;
    	letter-spacing: 1px;
    	padding: 5px 0 5px 10px;
    	padding-right: 35px;
    	text-transform: uppercase;
    	transition: width .15s ease-in-out;
    	width: 100px;
    }
    
    .site-header .search-form input:focus[type="search"] {
    	background-color: #f5f5f5;
    	transition: width .15s ease-in-out;
    	width: 200px;
    }
    
    .widget_search input[type="submit"] {
    	border: 0;
    	clip: rect(0, 0, 0, 0);
    	height: 1px;
    	margin: -1px;
    	padding: 0;
    	position: absolute;
    	width: 1px;
    }
    

    Is there something I'm doing wrong and it won't appear like it is supposed to?

    2. I would like to add the left from navigation menu scrolling down logo graphic on my website.

    Is there a specific suggestion for this (creating a new widget area?) or should I just copy the CSS and it will work?

    Your response and time is much appreciated


    Marketing & Business Development Consultant Located in Bangkok, Thailand @ PowerHouse Consulting Group

    December 11, 2016 at 2:27 am in reply to: Altitude Pro Navigation Bar Remains Transparent? #197420
    Vasilis
    Member

    Anyone can give me an idea why the navigation bar is miss behaving on the homepage?

    Thank you 🙂


    Marketing & Business Development Consultant Located in Bangkok, Thailand @ PowerHouse Consulting Group

    November 14, 2016 at 8:45 am in reply to: Altitude Pro Navigation Bar Remains Transparent? #196134
    Vasilis
    Member

    Bumping this post

    Any ideas?

    Thanks


    Marketing & Business Development Consultant Located in Bangkok, Thailand @ PowerHouse Consulting Group

    October 28, 2016 at 7:49 am in reply to: Altitude Pro Navigation Bar Remains Transparent? #195430
    Vasilis
    Member

    Hello there

    After some time passing by...this bug continues to exist.

    Disabled Cloudflare minifying option....disabled BWP plugin...

    Still the same problem.

    Any ideas?

    Thank you


    Marketing & Business Development Consultant Located in Bangkok, Thailand @ PowerHouse Consulting Group

    September 29, 2016 at 7:35 am in reply to: Altitude Pro Navigation Bar Remains Transparent? #193885
    Vasilis
    Member

    Thanks Vic!

    Will try this and let you know...might be the CloudFlare minifying option

    Just disabled the BWP plugin and waiting for cache.


    Marketing & Business Development Consultant Located in Bangkok, Thailand @ PowerHouse Consulting Group

    September 23, 2016 at 5:51 am in reply to: Altitude Front Page 4-5 Misbehaving… [CSS Fix] #193581
    Vasilis
    Member

    Ok got it....

    Thanks Christoph


    Marketing & Business Development Consultant Located in Bangkok, Thailand @ PowerHouse Consulting Group

    August 9, 2016 at 9:43 am in reply to: Simple CSS Fix #190971
    Vasilis
    Member

    Hey Victor...

    After double checking the code , in 3 different browsers...I still get the same mis-alignment problem.

    Any ideas?

    Thank you


    Marketing & Business Development Consultant Located in Bangkok, Thailand @ PowerHouse Consulting Group

    August 8, 2016 at 8:55 am in reply to: Simple CSS Fix #190918
    Vasilis
    Member

    Thank you very much Victor

    Appreciate it


    Marketing & Business Development Consultant Located in Bangkok, Thailand @ PowerHouse Consulting Group

    February 18, 2016 at 10:29 pm in reply to: Genesis Plugins NOT Appearing on Translated Pages (WPML) #179359
    Vasilis
    Member

    Here is the full solution from WPML support with the link to the thread

    https://wpml.org/forums/topic/genesis-featured-pages-plugin-not-appearing-on-other-languages/

    Thank you for your support.


    Marketing & Business Development Consultant Located in Bangkok, Thailand @ PowerHouse Consulting Group

    February 5, 2016 at 7:47 am in reply to: Minor CSS Fix (Full width widget not working) #178378
    Vasilis
    Member

    FYI

    The Genesis Child Theme is drawing it's CSS for Genesis Enews Extended plugin directly from the Genesis Parent (Framework)

    I don't know who thought to add this CSS code in the parent theme...

    To make it work in the child theme I had to delete the CSS code from the parent theme.

    Weird.....anyway now it's almost working how I want it to.


    Marketing & Business Development Consultant Located in Bangkok, Thailand @ PowerHouse Consulting Group

    February 3, 2016 at 3:03 am in reply to: Minor CSS Fix (Full width widget not working) #178227
    Vasilis
    Member

    Hello ,

    So I did change my optin form and using Genesis eNews Extended now.

    Here are some totally weird (according to my tiny knowledge) CSS problems....

    1. The plugin does not seem to read my CSS code...it renders totally different stuff on the widget...

    CSS I'm using is this

    .enews-widget {
            background-color: #4099FF !important;
    }
    
    .enews-widget .widget-title .h3 .h4 .body {
    	color: #fff;
            margin-top: 10px;
    }
    
    .enews-widget input {
    	color: #fff;
    	font-size: 16px;
            font-color: #000;
    	margin-bottom: 5px;
            margin-right: 5px;
            margin-left: 100px;
    	text-transform: capitalize;
            width: 35%;
    }
    
    .enews-widget input[type="submit"] {
    	background-color: #fff !important;
            font-color: #4099FF !important;
    	font-size: 18px;
            font-weight: 500;
    	margin-bottom: 5px;
    	text-transform: capitalize;
    	width: 35%;
    }
    
    .enews-widget input:hover[type="submit"] {
    	background-color: #4099FF;
    	color: #fff;
    }
    
    .enews form + p {
    	margin-top: 5px;
            font-size: 12px;
    }
    

    And before going on let me tell you I tried to disable CloudFlare , disable my caching plugin and purge everything...delete browser cookies etc...

    It just doesn't want to read the CSS....

    Very weird...

    2. The before-footer widget is still 1200px wide although I have this CSS code to make it full width

    
    .site-inner .widget-area .before-footer {
            width: 100%;
    }
    
    .site-inner .wrap .before-footer {
            width: 100%;
    }
    

    I'm breaking my head here...Can't find what is wrong...

    Any ideaS?


    Marketing & Business Development Consultant Located in Bangkok, Thailand @ PowerHouse Consulting Group

    January 29, 2016 at 10:00 pm in reply to: Genesis Plugins NOT Appearing on Translated Pages (WPML) #177886
    Vasilis
    Member

    I wished it worked like this Morten

    Tried it , created 3 translated pages and followed your directions exactly.

    At the moment is not working...

    It just breaks the main language (English) so although you can see the translated versions in the widget and choose the second language, saving the options and returning back to English version breaks everything...

    Any ideas for this?

    I could give you editor access to check this out by yourself.

    Kind Regards


    Marketing & Business Development Consultant Located in Bangkok, Thailand @ PowerHouse Consulting Group

  • Author
    Posts
Viewing 20 posts - 1 through 20 (of 95 total)
1 2 3 4 5 →

CTA

Ready to get started? Create a site or shop for themes.

Create a site with WP EngineShop for Themes

Footer

StudioPress

© 2025 WPEngine, Inc.

Products
  • Create a Site with WP Engine
  • Shop for Themes
  • Theme Features
  • Get Started
  • Showcase
Company
  • Brand Assets
  • Terms of Service
  • Accptable Usse Policy
  • Privacy Policy
  • Refund Policy
  • Contact Us
Community
  • Find Developers
  • Forums
  • Facebook Group
  • #GenesisWP
  • Showcase
Resources
  • StudioPress Blog
  • Help & Documentation
  • FAQs
  • Code Snippets
  • Affiliates
Connect
  • StudioPress Live
  • StudioPress FM
  • Facebook
  • Twitter
  • Dribbble