gdandrija
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Go] Buttons not responsive to screen sizeHi @dr9,
Sure, you can use the following code:
@media (max-width: 767px){ .wp-block-button.is-style-primary { width: 100%; } }
I hope this helps, cheers!
AndrijaForum: Plugins
In reply to: [Page Builder Gutenberg Blocks – CoBlocks] Click and zoom not workingHi @zeddje,
I have just checked your page and I was unable to replicate this issue: https://i.imgur.com/GhtNuD4.jpeg
However, I noticed that the content of page is quite heavy, which could prevent scripts from loading properly on some devices.
Does this issue happen when there are only 2 or 3 images on the page?
Cheers!
AndrijaForum: Themes and Templates
In reply to: [Go] Add 2nd mean to top of pageHi @goldmaster,
I’m afrad that the Go theme does not support a secondary menu, except the menu from the footer.
What you might want to consider is adding icons in place of menu link names, and then linking them to phone or email link.
I hope this helps, have a nice day,
AndrijaForum: Themes and Templates
In reply to: [Go] Spacing of imagesHi @jmp452,
I believe this is due to the padding that has been applied.
You can try using this code:.wp-block-group .wp-block-column { padding-bottom: 10px !important; }
Feel free to adjust the values per your personal preference.
I hope this helps, cheers!
AndrijaHi @towenandersonco, I hope you are doing great,
It appears that sections are affected with a styling issue.
As this is the case, I let our developers know about this issue, you can track its progress on the link below:
https://github.com/godaddy-wordpress/coblocks/issues/2586
Cheers,
AndrijaHi @renathoc,
I was able to replicate the issue in a testing environment. Thanks for providing the details.
We will report this conflict to our developers so they can check it out and see what can be done. You can track the progress on the link below:
https://github.com/godaddy-wordpress/coblocks/issues/2578
Thanks again, cheers!
AndrijaForum: Plugins
In reply to: [Page Builder Gutenberg Blocks – CoBlocks] Counter Block: Text formattingHi @hirnhacke,
By default, you can only make global formatting changes as seen below:
https://i.imgur.com/6ghEIkp.png
That said, it is possible to target the description and the counter/number individually using CSS, however, it would require targeting for the specific page/post
Could you please send us the page link to the counter you would like to modify so we could see if we can generate a CSS code that would work on your end.
Thanks in advance, cheers!
AndrijaHi @mswas, I hope you are doing great.
I have just compared both pages and it appears that the Counter block works properly on both websites. I assume that the latest updates took care of the issue.
Of course, if you are still having issues with animations, please let us know and we will be happy to assist.
Cheers!
AndrijaForum: Plugins
In reply to: [Page Builder Gutenberg Blocks – CoBlocks] Columns in Posts block is brokenHi @marbaque, I hope you are doing great,
The columns on your website appear to be working properly now, presumably due to the fixes in the latest version.
If you are still having issues with columns, please let us know and we will be happy to assist.
Cheers!
AndrijaForum: Themes and Templates
In reply to: [Go] How to change the page title on the Go themeHi @fivebs, I hope you are doing great,
I can see that the code is visible now as seen below:
https://i.imgur.com/22pjN7Z.pngThat said, I assume the changes did not take effect instantly due to cache.
As for the page you provided, if you would like to change color of the “CIF” text, you should use a different selector:
h1.post__title { background-color: #FFFFFF !important; color: #FF0000 !important; }
I hope this helps, cheers!
AndrijaForum: Themes and Templates
In reply to: [Go] Product Category pages product filtersHi @arandomscott, I hope you are doing great.
The default shop layout does not have a widget area which can be used for adding product filters. However, if any of the plugins you plan to use supports Gutenberg, then you can add your products into the main section and product categories or widgets in the sidebar as seen below:
https://i.imgur.com/R6GRsV1.png https://i.imgur.com/PHXBGoX.png
I hope this helps, cheers!
AndrijaForum: Themes and Templates
In reply to: [Mins] Remove/Replace Blog imageHi @gorydetails1, I hope you are doing great,
The image you are referring to is set as a featured image for the blog page. Therefore, you can change it or remove it by opening the WordPress editor on the Blog page and checking the Featured Image option as seen below:
View post on imgur.com
I hope this helps, cheers!
AndrijaForum: Plugins
In reply to: [Page Builder Gutenberg Blocks – CoBlocks] Image lightbox html codeHi @xelenium7000,
First of all, thank you so much for your kind words ??
Regarding your question, yes it is possible. That said, you would need to add some additional HTML and CSS code. Of course, it is possible to create a lightbox using JS as well, however, I believe you will find this solution a bit more lightweight.
Here is a code snippet that you can use as an example:
https://codepen.io/gschier/pen/kyRXVxI hope this helps, have a nice day,
AndrijaForum: Plugins
In reply to: [Page Builder Gutenberg Blocks – CoBlocks] Froms: change hight of fieldsHi @nikist, I hope you are doing great,
Sure, I will be happy to help. The easiest way you can adjust the height of the form fields would be using the height attribute and by targeting the form field classes added by your theme. This CSS code may be handy:
.ticss-379a0627 input { height: 35px; } .ticss-379a0627 textarea { height: 100px; }
Feel free to adjust the height attribute per your needs and personal preference.
I hope this helps, cheers!
AndrijaForum: Plugins
In reply to: [Page Builder Gutenberg Blocks – CoBlocks] Accordion and empty content partHi @jaak69, I hope you are doing great.
Accordion block is designed to be uncollapsed and then collapsed back to their original state. Preventing them from doing this would beat the purpose of using an Accordion block and in that case, a Paragraph block should do the trick.
If for any reason usage of a simple paragraph block is not possible, then you can hide the arrow and content of a specific Accordion block using this CSS code:
#wp-block-themeisle-blocks-accordion-7caacf22 > details > summary::after { display: none; } #wp-block-themeisle-blocks-accordion-7caacf22 > details > div { display: none; }
Note that you would need to replace the ID in this code to match the unique ID of the accordion that you would like to adjust and repeat the process every time you need to adjust a new accordion. This is why if you have the ability to use a Paragraph, I warmly suggest opting for that solution.
I hope this helps, have a nice day,
Andrija