oddible
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Easy way to create a simple custom block type?Thanks, I’m using Astra.
Yeah, if I’m going to do all the work for a Block Pattern, I’m just going to make a new plugin for a custom block type.
A Reusable Block is ok when I’m starting a page but fixing formatting by just changing a Group to a “Section Group” isn’t really possible with a Reusable – it just gives me the empty pattern, I can’t use it to change a block.
Guess I’m making a new plugin to add 20px to the bottom of a new Group type. :/
- This reply was modified 2 years, 3 months ago by oddible.
Thanks, yeah I’ve seen that video – the problem is that video doesn’t do what I’m trying to do. In that video he stacks everything. I want things to remain side-by-side. I want my Logo and my Hamburger Menu to be on the same line. This seems impossible with Bold Grid and Crio since there is some strange extra padding added to the logo that won’t allow them to occupy the same row.
Awesome, thanks, I really appreciate it. Just changing to Base Styling Only solved the problem.
- This reply was modified 3 years, 6 months ago by oddible.
Here is my form. In the reply to my review I saw a very bare bones form – I’d love that! How do I get rid of all this extra added interation?
https://tangofoods.ca/contact-us/Hmm, guessing it is BoldGrid.
- This reply was modified 3 years, 6 months ago by oddible.
I did here (https://www.ads-software.com/support/topic/how-do-i-make-users-cursor-show-when-they-click-not-when-they-type/). Oddly my form looks nothing like that – mine is encumbered with a whole lot of extra unnecessary interation. I’d love that bare bones form, how do I get that?
Forum: Fixing WordPress
In reply to: Specify Image in Page Edit ScreenWell, not sure if this is elegant but it is working. I am using a custom field called ‘tripimg’ and adding the URL to an image. I then created a new page template and added the following:
<?php if ((get_post_meta($post->ID, "tripimg", true) !== "")){ $my_custom_field = get_post_meta($post->ID, "tripimg", true); echo "<div id='tripimgheader'><img class='tripimg' src='".$my_custom_field."' /></div>"; } ?>