Umesh Gupta
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Align menu logos with textHi @misterplum
Please add this css
#top-menu { display: -webkit-box;display: -ms-flexbox;display: flex;-webkit-box-align: center;-ms-flex-align: center;align-items: center; }
Forum: Fixing WordPress
In reply to: Align menu logos with texthello @misterplum
Please add the following CSS in that your style.css#top-menu-nav .nav { display: -webkit-box;display: -ms-flexbox;display: flex;-webkit-box-align: center;-ms-flex-align: center;align-items: center; }
Forum: Fixing WordPress
In reply to: Headings disappearing on mobile screenHi @seandoylie
Please add the following CSS in that your CSS file.
@media only screen and (max-width: 667px) { .fusion-layout-column .title-heading-center.fusion-responsive-typography-calculated { display: block; } }
Thanks
Forum: Fixing WordPress
In reply to: social icons blockHi @ethangreen
1st question: Please replace the below CSS with the current CSS
#secondary .sidebar-main li { margin-bottom: 0; }
2nd question: The issue is also there in the larger size but due to the size the effect is not visible as compared to smaller icons.
Forum: Fixing WordPress
In reply to: social icons blockHello @ethangreen
Please add the following CSS in that your CSS file.
#secondary li { margin-bottom: 0; }
Thanks
- This reply was modified 2 years, 10 months ago by Umesh Gupta.
Forum: Fixing WordPress
In reply to: Error with some screen sizes and css codeHi @dardel
Please add the following CSS in that your CSS file.
@media (min-width: 600px) and (max-width: 781px){ #tjanster .wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column:not(:only-child) { flex-basis: calc(100% - var(--wp--style--block-gap, 2em)/2)!important; } }
Forum: Fixing WordPress
In reply to: BIO text issueHi @msound81
You have to remove that from the file, not from the inspector. As the inspector is the temporary representation of the web page so on refresh it will again go back to the default state. you need to change the file from the code editor.
Forum: Fixing WordPress
In reply to: BIO text issueHi @jyoti1998
Please add the following CSS in that your CSS file.
.wb-posted_in { float: left; width: auto; } .woocommerce-product-rating { display: inline-block; margin: 4px 0 0 4px; }
after added above css in your css file review & star rating displayed with the brand name like this screenshot
Thanks
Forum: Fixing WordPress
In reply to: Remove Menu Cart Shadow/BlurHi @livinglifenaturallyorganics
Please add the following CSS in that your style.css:
.elementor-menu-cart__toggle_wrapper .elementor-menu-cart__toggle .elementor-menu-cart__toggle_button { text-shadow: none; }
Forum: Fixing WordPress
In reply to: link colors not workingHi @nussel
Please add this class has-luminous-vivid-orange-color in a tagsee screenshot: https://prnt.sc/nHzTsd4X3ysV
- This reply was modified 2 years, 11 months ago by Umesh Gupta.
- This reply was modified 2 years, 11 months ago by Umesh Gupta.
Forum: Fixing WordPress
In reply to: link colors not workingHi @nussel
Please add the following CSS in that your style.css
.has-luminous-vivid-orange-color a { color:#FF6900; }
Forum: Fixing WordPress
In reply to: CSS font change is messing with line spacingHello @kelemvor
Please add line height to the parent P tag as according your requirements.
p { line-height: 24px; }
screenshot: https://prnt.sc/pxTlwGoswDeI
Forum: Fixing WordPress
In reply to: Page blocks not alignedPlease add the following CSS in that your style.css:
ul.product .item-img { height: 150px; } ul.product .item-img .product-image { height: 100%; } ul.product .item-img .product-image img { object-fit: cover; height: 100%; }
- This reply was modified 2 years, 11 months ago by Umesh Gupta.
Forum: Fixing WordPress
In reply to: How to change link color in posts?Hi @calebellis
Add this below CSS in your site and it will reflect to all post link
.entry-content a { color: #e67e22; }
Thanks