Okay
  Public Ticket #818116
Small issues
Closed

Comments

  • Alex started the conversation

    Hi,  I am having some small issues with my site. If you can help me solve them I'd appreciate. Great theme by the way,

    My site: http://www.tropic-online.com/ 

    1. In the homepage, there is an unwanted extra gap between elements. I have 4 masonry portfolio elements, with 0px bottom gap, but as you can see, the space between them is bigger than the space between portfolio items. How can I unify all spaces?  tried to use the "no bottom margin" option under Row Settings but that feature is missing!

    2. At the bottom of each portfolio page there is a icon made of little squares, how can I remove it? If that is not possible, can I link it to the homepage?

    3. In the portfolio pages, I would like the heading to be aligned with the project description (right now the heading is above the description). I figured out a solution that works: delete the page title and put it in a heading element in the same row as the description (row layout 1/2 +  1/2). The problem with this solution is that it is difficult to organize the site because pages have no titles, this can be counterproductive when the number of portfolio pages grows in time.

    4. I would like to add one more item to the main menu, but I want it to be aligned to the right while keeping the other menu items in place. Is this possible?

    5. The "About" and "Contact" menu tems are linked to the same page, but I want the Contact link to scroll automatically to the bottom of the page so the contact information is visible at once. How can I do i? 

    4. In the porfolio pages, can I change the Next-Prev navigation to arrows or some other icon instead of text?

    5. In the homepage, can I reduce the hover text size for all thumbnails?

    6. I want to prevent the images from being saved or downloaded. Do you recommend any plugin that works flawlessly with your theme?

    Thank you!

  • [deleted] replied

    Hi Alex,

    Thanks for your kind words :)

    1— That is happening because those elements don't have titles. To remove that space you need to apply this CSS code on your Custom CSS area.

    body.home .wpb_wrapper .lab-portfolio-items .portfolio-title-holder {
    margin-bottom: 0px !important;
    }

    2— That is a back to portfolio button, you can remove that button with this CSS
    body.single-portfolio .back-to-portfolio {
    display: none !important;
    }

    or you can set an URL to that button so when user clicks it can send to a specific URL, such as homepage on your case.


    (view large version)


    3—I don't think that we have a solution for this for the moment.

    4— Hmm this is very tricky question, but can you please add that menu and then i will see if we can do something with Custom CSS. Please note that this is a custom question and we are not allowed to help you, but i will try to help you this time if there is any alternative.

    5—Can you please try to be very specific about the question and explain it more to us, in this way we can easily understand you and give you the proper answer.

    6— I think that this plugin can help you Content Copy Protection & Prevent Image Save.

  • Alex replied

    Hi Ylli, thanks for you reply, very useful help. 

    Regarding issue #4, I just added the additional menu item, so now I have 4 menu items. Ideally, "Contact" should be aligned to the right. 

    Regarding question #5, sorry I wasn't clear, here it is: In the homepage, can I reduce the hover text size for all thumbnails?

    Thanks again!


  • [deleted] replied

    Hi Alex,

    — Can you please add the code below to Custom CSS

    @media screen and (min-width: 991px) {
        .menu-item.menu-item-type-post_type.menu-item-object-page.menu-item-4308 {
            float: right !important;
        }
    }

    — Custom CSS again:


    .portfolio-holder .thumb .hover-state .info h3 {
    font-size: 18px !important; }
  • Alex replied

    Wonderful. 
    Thanks again for your support!

  •   [deleted] replied privately