• Resolved andybarton

    (@andybarton)


    Good Evening,

    I have been running the SquareX theme for a couple of weeks now and love it. I have had on-going problems with my previous theme (Hamilton/Minimalist) so jumped ship to SquareX.

    I have only one reservation about the theme. When the cursor hovers over the blog posts on the landing page the opacity of the white while hovering is too great, I would like to lower it. At the same time while viewing in the mobile mode the black opacity is too high resulting in the images being too dark.

    Any help in regards to changing this would be a great help. Thanks in advance,

    Kind Regards,

    Andy.

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Theme Author Dinev Dmitry

    (@dimadinev)

    Hi Andy,

    .innerBox:hover .titleBox {
    	background: rgba(255, 255, 255, 0.5); /* where 0.5 is your transparency value between 0 and 1. */
    }

    for mobile:

    @media (max-width: 650px) { /* where 650 is your pixel value between 1024 and 480. */
    .innerBox .titleBox {
        background: rgba(0, 0, 0, 0.2); /* where 0.2 is your transparency value between 0 and 1. */
    }
    }
    Thread Starter andybarton

    (@andybarton)

    Hey Dinev,

    Thank-you so much for replying and giving this issue some time. It has worked great on the desktop but still super dark on the @media. I really appreciate your time.

    Kind Regards,

    Andy.

    Theme Author Dinev Dmitry

    (@dimadinev)

    Hi Andy,

    Try this (add this line to your custom css):

    @media (max-width: 650px) {
    .innerBox .titleBox {
    background: rgba(0, 0, 0, 0.2) !important;
    }
    }

    Thread Starter andybarton

    (@andybarton)

    Good Morning,

    That worked perfectly, I can now say I have the best theme running on WordPress after three failed themes previously. I am really happy with the clean and minimalist look of this theme, especially for my documentary photography.

    Keep up the good work dude and thanks again.

    Kind Regards,

    Andy.

    Thread Starter andybarton

    (@andybarton)

    Hey Dinev,

    A serious issue has happened with my Squarex theme. My featured images are not loading to the correct image size as they seem distorted. When I looked at other posts the images are not loading within the blog posts are not loading at all.

    Kind Regards,

    Andy.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Opacity’ is closed to new replies.