jazzu
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Cart icon shifts search barHi!
Thank you for your reply.
Yes, I want it to show total cart price.I managed to fix the problem, so it’s fine. I changed the search box’s position to absolute and now it stays where it’s supposed to.
The code I used:
@media screen and (min-width : 1001px) { .thaps-search-box { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); } }
Forum: Fixing WordPress
In reply to: Redirect Account iconHi!
Thank you for your feedback. However I don’t want to remove the icon, only to change it’s URL when you’re logged out. Couldn’t find the code in the files though.
Added the .showme div.elementor-icon and .opened div.elementor-icon and it works now.
Code:<style> .showme a, .showme svg, .showme i, .showme img, .showme div.elementor-icon, .closebutton a, .closebutton i, .closebutton img, .closebutton div.elementor-icon,{ cursor: pointer; -webkit-transition: transform 0.34s ease; transition : transform 0.34s ease; } .opened i, .opened img,.opened svg, .opened div.elementor-icon{ transform: rotate(180deg); } </style>
Forum: Plugins
In reply to: [Max Mega Menu] How to make a menu show up below main menu on every pageHi @megamenu !
I really appreciate you sending me the link to that guide, because it seems I was using wrong words for searching (how to add an extra menu, etc.)
This solved the problem that I had.
Thank you very much for taking the time to answer.
Kind regards
I fixed it by adding .single-product.
Here’s the code I added:
@media screen and (max-width : 1000px) { .single-product .tinv-wraper.tinv-wishlist { font-size: 15px; margin-top: 7px; text-align: left; width: 100%; margin-left: 5px; } }
Hope it helps someone ??
Forum: Fixing WordPress
In reply to: @Media screen not doing anythingHello again,
I managed to fix it, and the only problem was that I wrote font: instead of font-size:.
New code that’s working now is below.
@media screen and (max-width : 480px) { .tinv-wraper.tinv-wishlist { font-size: 0; margin-top: 7px; } } @media screen and (min-width : 481px) { .tinv-wraper.tinv-wishlist { font-size: 15px; margin-top: -7px; } }
Hope this helps if anyone else has this question.
- This reply was modified 3 years, 4 months ago by jazzu.
Forum: Fixing WordPress
In reply to: BreakpointsHi, @gappiah !
Thank you for your feedback, I’ll try to change minimum and maximum width.
The reason I’m trying to distinguish the two is because the sidebar on the page doesn’t show up correctly. I’ll add two screenshots so you can see exactly the problem that I’m having.
PC Screenshot (How I want it to look):
PC ScreenshotLaptop Screenshot:
Laptop ScreenshotThank you for your time!
Forum: Fixing WordPress
In reply to: Sidebar PositionHi @mhosseini80 !
Thank you for your feedback. I removed the float part from the code and the sidebar stayed the way it was. If I edit the “right” part of the code to for example 0%, the sidebar goes to the original position. If I leave it at -111.5%, it still only works on certain display resolutions, so that doesn’t solve the problem.
The width and everything of the sidebar is okay, I just want it to stick to the right side of the website on any device.
Thank you for your time!
Forum: Themes and Templates
In reply to: [Big Store] SidebarI managed to fix it.
If anyone needs help with it, here’s how I did it:
Go to inspect element, fiddle with it until you find div.sidebar-main, go to the style.css, and it should show
.sidebar-content-area {
.I added
.sidebar-main {
above it, and then (with the borders of the sidebar box showing) played around with width. Sidebar-main controls the right side of the sidebar and.sidebar-content-area {
controls the left side.In my case, I used this:
.sidebar-main { position:absolute; float: left; width: 33.3%; } .sidebar-content-area { width: 5%; box-sizing: border-box; float: right; }
Hope this helps.
- This reply was modified 3 years, 4 months ago by jazzu.
Forum: Plugins
In reply to: [YITH WooCommerce Wishlist] Problem with translationHi @therock130 !
I tried looking in WooCommerce plugin, theme and YITH WooCommerce Wishlist. I’ve translated every “Wishlist” I could find, but I’ve had no luck.
Thanks for your feedback
Forum: Plugins
In reply to: [WooCommerce] Custom My Account siteHey @rainfallnixfig
Thank you for your response. I’m new to WordPress and all of this. I didn’t know, sorry.
Thank you for your time
Forum: Plugins
In reply to: [WooCommerce] Custom My Account siteEDIT:
I solved my problem with the logout part, however other links are still a mess. I’m currently trying to edit the Addresses site (I made a new site, added an icon, header and the [woo_address] shortcode. Now it shows to add an address and delivery address, but when I click “Add”, nothing happens.
Thanks for your help.
Forum: Fixing WordPress
In reply to: Editing Homepage breadcrumbsHello, Steve.
Thank you for taking your time to give me feedback. I’ll ask at the theme’s support page.
Kind regards