Forum Replies Created

Viewing 13 replies - 166 through 178 (of 178 total)
  • Thread Starter jazzu

    (@jazzu)

    Hi!

    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%);
    	}
    }
    Thread Starter jazzu

    (@jazzu)

    Hi!

    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.

    Thread Starter jazzu

    (@jazzu)

    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>
    Thread Starter jazzu

    (@jazzu)

    Hi @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

    Thread Starter jazzu

    (@jazzu)

    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 🙂

    Thread Starter jazzu

    (@jazzu)

    Hello 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 2 years, 8 months ago by jazzu.
    Forum: Fixing WordPress
    In reply to: Breakpoints
    Thread Starter jazzu

    (@jazzu)

    Hi, @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 Screenshot

    Laptop Screenshot:
    Laptop Screenshot

    Thank you for your time!

    Forum: Fixing WordPress
    In reply to: Sidebar Position
    Thread Starter jazzu

    (@jazzu)

    Hi @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!

    Thread Starter jazzu

    (@jazzu)

    I 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 2 years, 8 months ago by jazzu.
    Thread Starter jazzu

    (@jazzu)

    Hi @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

    Thread Starter jazzu

    (@jazzu)

    Hey @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

    Thread Starter jazzu

    (@jazzu)

    EDIT:

    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.

    Thread Starter jazzu

    (@jazzu)

    Hello, Steve.

    Thank you for taking your time to give me feedback. I’ll ask at the theme’s support page.

    Kind regards

Viewing 13 replies - 166 through 178 (of 178 total)