Giorgio25b
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Hueman] Select dropdown with IMAGE optionHey Dario,
first good luck with this new line of work, second it’s not so hard!
The first 2 points are normally out-of-the-box with Poly-lang plugin.
Different backgrounds seems to me a simple php case/break structure.
I can help you with the setup of a simple js enqueue into your child-theme:
WP SnippetsBye for now
- This reply was modified 6 years, 11 months ago by Giorgio25b. Reason: Add resource link
Forum: Themes and Templates
In reply to: [Hueman] Select dropdown with IMAGE optionBefore we dive into this, can you tell how do you create that dropdown menu for the language?
There are many possible solutions, but probably with more details we could narrow it down to a simple css injection.
There are tons of solutions out there, but not all might be good for you:https://codepen.io/brapastor/pen/BWyomB
- This reply was modified 7 years ago by Giorgio25b. Reason: Add resource link
Forum: Themes and Templates
In reply to: [Customizr] Error: `Failed to load content cssHello members that can not afford a new license (this is one of those cases where the unlimited plan would have been worth each penny);
I’m about to suggest a solution that would make developers puking on the keyboard:
Just hide the message via PHP function
/********************************************************/ /* Apply Custom CSS to Admin Area /********************************************************/ add_action('admin_head', 'custom_remove_error_message'); function custom_remove_error_message() { echo '<style> .mce-widget.mce-notification.mce-notification-error.mce-has-close { display: none; } </style>'; } // https://css-tricks.com/snippets/wordpress/apply-custom-css-to-admin-area/
that’s it.! Paste it into your child-theme/function.php.
Hope this helps
Giorgio- This reply was modified 7 years, 3 months ago by Giorgio25b.
- This reply was modified 7 years, 3 months ago by Giorgio25b. Reason: The first suggestion was a css trick that would not override WP core style.css, via php function we can do it!
- This reply was modified 7 years, 3 months ago by Giorgio25b.
Forum: Plugins
In reply to: [Contact Form 7] CF7 causing PHP Fatal errors and not workingHi all,
is this topic marked as resolved because of the suggested fix?Try switching to the default theme and deactivating all other plugins.
Thanks
Forum: Themes and Templates
In reply to: [Gateway] How to remove site header from posts (Gateway theme)you can try different things:
.bg-image-header .site-branding h1 a, .home-header-bg .site-branding h1 a { color: transparent !important; color: rgba(255, 255, 255, 0) !important; }
or you can actually hide the title, but you’d loose the link to the home page.
So you could try with that solution up here first and see how it goes.
Forum: Themes and Templates
In reply to: [Hueman] Mobile Menu TextI’m not sure that nav_text is a filter, but that’s not the point.
Use this snippet here:/* add "Menu" to mobile menu icon */ .nav-toggle .fa-bars:before{ position: absolute; content: "Menu \f0c9"; right: 10px; }
this solution works and was originally posted here:
https://www.ads-software.com/support/topic/text-menu-displayed-on-mobile-version/
If it solves your issue, please mark this topic as resolved.
Thanks
G.Forum: Themes and Templates
In reply to: [Gateway] Home Content Not Showinghere is the thing!
After trying to achieve a similar result like yours, the theme stopped working properly.
An option menu from the customizr disappeared so I’m assuming there is a bug somewhere and that you did as well something (like I did) that triggered this error.I’ll have to start fresh from scratch and with the debugging mode enabled to figure out what went wrong.
If I’ll find something I’ll notify the author, but for now I’m not able to help you out.Cheers,
GiorgioForum: Themes and Templates
In reply to: [Gateway] Home Content Not ShowingHi Andy,
I’m not sure I understand your request.
If you have the blog posts on a page, unless you have a custom index.php, you can’t display page content and a list of blogs.
On another line, without seeing anything is quite hard to guess.
Maybe you can share a screenshot or 2Depending on what you want to do there are a couple of ways:
.home .blog_page_titles { display: none; }
or
.blog .blog_page_titles { margin-bottom: 0; }
This solutions assume that this is only for the home page and/or for the blog page, in your case right now is both since you are displaying the blog on the home page. The bottom line is that you can exchange .home and .blog in this particular case but if you go for the display: none; you gain more space than just reducing to 0 the margin-bottom.
If solution 2 does not work try to add !important between 0 and ;Hope it helps
G..bg-image-header .site-branding, .home-header-bg .site-branding { padding-bottom: 0; }
if it does not work put !important after the 0 and before the ;
Hope it helps
Forum: Themes and Templates
In reply to: [Gateway] Empty space in homeageThe gap below the 3 boxes is due to the line or horizontal ruler <hr> between the content and the text box below.
Now you could change that space to what you prefer with this code:.page-template-template-home-php .site-content hr { margin-top: 4em; }
if it does not work, try to add 4em !important;. Though I must say that the 8em original gap above and below each section of the page is consistent. If you take a look around you’ll notice that the footer has the same space around, the same for the title above the 3 boxes and so on.
Your call, design it as you like it, but I can see the point of the developer in wanting to give consistency all across the page.
BTW, Nice work you have done on the site.
Cheers- This reply was modified 8 years ago by Giorgio25b.
Forum: Themes and Templates
In reply to: [Gateway] Images header articlesHi,
your English is just fine, don’t worry about that. English is the official language of this forum and it violates the guidelines using other languages such as Italian, so…Anyway, from what I can see it seems that you have to set a general background image for the pages.
Go into the customizer of the theme, select header and select “Inner pages header background”.
Doing so, with your tall transparent logo, you’ll be able to have the same image bg all across the website. I think the homepage can be customized, but I’m not sure; unfortunately I don’t use this theme and I’m not really familiar with its settings.Hope it helps,
ciaoForum: Themes and Templates
In reply to: [Gateway] Images header articles@supervale
You are pointing 2 different things here. The big grey gap on top of your logo is because your logo (at least in FireFox) renders the full image https://www.mvphotographers.it/wp-content/uploads/2016/11/testata_logo-3.gifThe second request is “how to put another image in the article header other than the featured image?”
If you want more than 1 image you have to create some php filters/actions to allow something extra, but it might not be simple.
You can work around the featured image with css if you need something different.Try to explain in details what you want to achieve if you need further help.
ThanksForum: Themes and Templates
In reply to: [Gateway] Dropdown menu issueAnyway, some of your menu items are really a sentence and that is not really common.
You can shorten up the name for the menu item and still keep the page/post title that long.
In the menu settings you can change the label of the menu item, so it fits and it is also more user friendly on mobile.Bye
Forum: Themes and Templates
In reply to: [Gateway] Dropdown menu issuetry this code into your child-theme folder style.css
nav.top-bar .sub-menu li > a { box-sizing: content-box; }
there is a way to break words into the menu items but it requires some work and maybe it gives side-effects.
I don’t know this theme, I don’t even know why I receive notifications about it.Hope it helps
- This reply was modified 8 years, 1 month ago by Giorgio25b. Reason: code typo