Themonic-Support

Forum Replies Created

Viewing 10 posts - 141 through 150 (of 1,486 total)
  • Author
    Posts
  • in reply to: Ad management is not working #6115

    I can see the media.net ads on your site at the front end, please check your browser Ad block to see if it is blocking the ads.

    in reply to: cannot edit links after update #6098

    Hi,

    Theme doesn’t interfere with WordPress editor, just checked again to be sure. It must be a plugin. To check, disable all plugins and try. Enable one by one to find the plugin conflict.

    in reply to: change pages format #6096

    You can target the widget area like below:

    
    .widget-area .widget a {
        color: #0099ff;
    }
    
    .widget-area .widget a:hover {
        color: #59d600;
    }
    in reply to: change pages format #6094

    Hi,

    You already have that at this ..

    This page .. is a custom built page, you can change its title color by using the followin CSS in Customizer -> additional CSS

    
    .entry-content a {
        color: #0099ff;
    }
    .entry-content a:hover {
        color: #59d600;
    }
    in reply to: Author Page options #6086

    Hi,

    It could be done with a new page template, we will add this one in the next release.

    in reply to: How to show author box on home page? #6080

    Hi,

    We have just released a new version 2.9.9.4

    It comes with a new page template that includes Author box.

    ————– June 09 2020 —————-

    – Version 2.9.9.4

    — New: Page template: Full width with Author Bio
    — Woocommerce cart button style fix
    — Author bio – added padding to social icons
    — Added Japanese, German, Chinese and Russian .po and .mo files

    To upgrade, follow this guide.

    in reply to: Hide Theme Name and Screenshot #6059

    Hi,

    The solution was already provided to you via email support, please do not create multiple support requests for the same question.

    in reply to: How to Change Logo font color & mouse hover color #6050

    Thank you for the link.

    Your site is using a page template for home page. Use like this:

    
    .top-header a {
        color: #0099ff;
    }

    and for hover

    
    .top-header a:hover {
        color: #cb6df2;
    }
    in reply to: How to Change Logo font color & mouse hover color #6048

    Code updated. If still not working, then, empty browser cache and check again. Please provide live link for further inspection.

    in reply to: How to Change Logo font color & mouse hover color #6044

    You can paste the following in Customizer -> Additional CSS:

    For text based logo:

    
    .site-header h1 a {
        color: #0099ff;
    }
    a.site-description {
        color: #0099ff;
    }

    For hover

    
    .site-header h1 a:hover {
        color: #ffffff;
    }
    .top-header .site-description:hover {
    color: #ffffff;
    }

    Change the hex colors as per your choice.

    Note: hover code updated

Viewing 10 posts - 141 through 150 (of 1,486 total)