Forum Replies Created

Viewing 20 posts - 4,421 through 4,440 (of 4,908 total)
  • Author
    Posts
  • in reply to: Featured Content also Showing up on main page #85385
    Mahesh
    Participant

    Hi @connectionspgh,

    For this, create a new category Featured(example) and then assign the category to the posts in the Featured Content. Then go to “Dashboard=> Appearance=> Customize=> Theme Options=> Frontpage/Homepage Settings” and select categories except “Featured” in Homepage posts categories

    Regards,
    Mahesh

    in reply to: Featured content, Text widget, Promoheadline, Languages #85274
    Mahesh
    Participant

    Hi @scubafreak,

    Thank you for your appreciation.
    I’ll try to make the steps simpler.

    1. Link to category in featured content image.
    I assume you’ve managed to put the images in featured content. For make the image link to selected category, go to “Dashboard=> Appearance=> Customize=> Featured Content=> Featured Content Settings” then scroll to “Link URL” and put the link of your desired category in the input box (example: http://yoursite/category/some-category). Repeat this as per the items in the featured content and the click save.

    2. I guess you’ve put an img tag in text widget to display image in the sidebar.
    <img src="link of some image" alt="your-image" />
    Change it to look as follows:

    <a href="your-desired-url" title="title-for-link">
    <img src="link of some image" alt="your-image" />
    </a>

    3. This is not possible through options. You’ll need to hire a customizer.

    4. We cannot say one particular plugin is best. Please visit this LINK and search for the appropriate plugin to handle email automation.

    5. The theme is translation ready and support translations plugin such as WPML, Qtranslate. You can use those from WordPress.org repository.

    6. You can use Qtranslate for this.

    Regards,
    Mahesh

    in reply to: Pro Upgrade #85269
    Mahesh
    Participant

    Hi @husker,

    Generally, the future year cost stays the same.
    But, as per my knowledge, on the basis of loyal customer, you may contact us HERE for the coupon with which you can get certain percentage discounts(30%, 40% may not be accurate).

    Regards,
    Mahesh

    in reply to: Pro Upgrade #85267
    Mahesh
    Participant

    Hi @husker,

    No, it won’t effect the changes. And the setting in free version will be retained in Pro version as well.

    Regards,
    Mahesh

    in reply to: Add additional field to header #85266
    Mahesh
    Participant

    Hi @ogremhdw,

    Please post in your site url.

    Regards,
    Mahesh

    in reply to: Featured Content also Showing up on main page #85265
    Mahesh
    Participant

    Hi @connectionspgh,

    Please post in your site url and show what you want to change as for an example.

    Regards,
    Mahesh

    in reply to: Is Full-Width possible? #85264
    Mahesh
    Participant

    Hi connectionspgh,

    No, Adventurous Pro doesn’t have such feature. For this feature you’ll need to do it with Custom CSS. Please follow the link.
    https://gist.github.com/mahesh247/727b652086537eed87bb
    Then go to “Dashboard=> Appearance=> Theme Options=> Custom CSS” box and add the CSS from the above link.
    Hope it works as you desired, if not, you’ll need to do hire a customizer.

    Regards,
    Mahesh

    in reply to: Featured Image Resizing #85259
    Mahesh
    Participant

    Hi @connectionspgh,

    The featured image is resized into three sizes, featured post slider(1600×600), featured image(800×324) and small image(400×267). Which image is one causing the issue. And what size do you want to change the image to?
    You can use the large image or the size mentioned above.
    Let me know further.

    Regards,
    Mahesh

    in reply to: Breadcrumbs color #85204
    Mahesh
    Participant

    Hi @nancyjas,

    Please add the following CSS for the change.
    1. arrange that it has the same color #f2f2f2

    #breadcrumb-list {
        background-color: #f2f2f2;
    }

    2. same color as the normal tekst #5a5a5a

    #breadcrumb-list a, #breadcrumb-list a span {
        color: #5a5a5a;
    }

    3. footer widget straight in the middle

    #supplementary .wrapper {
        text-align: center;
    }

    4. make footer a little bit less high

    #supplementary{
        padding-top: 0;
    }
    #supplementary .widget {
        margin-bottom: 0;
    }

    5. I guess you need to hire a customizer for this.

    Hope this helps.

    Regards,
    Mahesh

    in reply to: Home Page Image Slider #85190
    Mahesh
    Participant

    Hi pizzadude007,

    The one you’ve mentioned above is the demo slider. I recommend you to upgrade to Adventurous Pro as the feature you are seeking is available in it. You can use post, page, category or image slider in Pro version while free version is limited demo slider(content cannot be changed), post and category slider.

    Regards,
    Mahesh

    in reply to: How to change spacing between primary menu items #85189
    Mahesh
    Participant

    Hi @pete-guttenberggmail-com,

    Thank you for using Catch Responsive Pro.
    Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS.

    .menu.catchresponsive-nav-menu {
        width: 95%;
    }
    .menu-item {
        width: 20%;
    }
    .menu-item a {
        text-align: center;
    }

    Hope this helps you to solve the issue.

    Regards,
    Mahesh

    in reply to: to change an area above footer #85185
    Mahesh
    Participant

    Hi @katonov,

    Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS.

    #content .wrapper {
        padding-bottom: 0;
    }
    .page.hentry {
        padding-bottom: 0;
        margin-bottom: 0;
    }

    This will reduce the space you’ve mentioned to some extent, however, still some space left is because of the visual-composer plugin you are using, which if decreased will create issues in other sections.

    Regards,
    Mahesh

    in reply to: add background image to header title #85180
    Mahesh
    Participant

    Hi @dsommer,

    For the above changes, go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS.

    /* Add background to Header */
    #branding {
        background-image: url('Put Your Image Link Here');
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    /* Change site title's color */
    #site-title a {
        color: #0000ff;
    }
    /* Change site description's color */
    #site-description {
        color: #0000ff;
    }

    Note: Replace Put Your Image Link Here with your desired image link. Replace the color hex with your desired color.

    Regards,
    Mahesh

    in reply to: Menu bar #85178
    Mahesh
    Participant

    Hi @maeva,

    This can be achieved with Custom CSS. Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS.

    .nav-primary {
        background-color: #00ff00;
    }
    
    .catchresponsive-nav-menu .sub-menu li a:hover,
    .catchresponsive-nav-menu .sub-menu li a:focus {
        background-color: #00ff00;
    }

    Note: Please change the colors as desired.

    Regards,
    Mahesh

    in reply to: Changing page title and content font #85177
    Mahesh
    Participant

    Hi @adunning,

    For this you can use the heading tags in content for those titles. I hope you understand what I mean.
    Please do no use temporary domain url as it will be put into spam. Either use google shorturl or bit.ly for such urls.

    Regards,
    Mahesh

    in reply to: Menu Hover Color – Sub-Pages #85174
    Mahesh
    Participant

    Hi @adunning,

    Thank you for your appreciation.
    Have a nice day.

    Regards,
    Mahesh

    in reply to: How to change footer text size? #85173
    Mahesh
    Participant

    Hi @americaontwowheels,

    Thank you for your appreciation.
    Have a nice day.

    Regards,
    Mahesh

    in reply to: Change title fonttype #85172
    Mahesh
    Participant

    Hi @Micke,

    If you want it on homepage only, please use the following CSS.

    .home #content .entry-title > a {
        font-family: Times New Roman;
    }

    Regards,
    Mahesh

    in reply to: Problem with responsive on iPhone #85171
    Mahesh
    Participant

    Hi @mescomptoirs,

    Yes, the website is reduced to 720px which makes the menu bugging due to the media queries. You do have to manage it properly for all breaking points.
    Yes, you do have to use the media queries. Please use the following CSS. I assume, adding this to theme’s Custom CSS won’t work as Jetpack’s Custom CSS executes at the last. Add it to the jetpack custom css hope it helps.

    @media screen and (max-width: 1024px) {
        .one-column .site {
            width: 960px;
        }
    }
    
    @media screen and (max-width: 990px) {
        .one-column .site {
            width: 910px;
        }
    }
    
    @media screen and (max-width: 960px) {
        .one-column .site {
            width: 720px;
        }
    }
    
    @media screen and (max-width: 767px) {
        .one-column .site {
            width: 600px;
        }
    }
    
    @media screen and (max-width: 640px) {
        .site, .one-column .site {
            width: 460px;
        }
    }
    
    @media screen and (max-width: 479px) {
        .site, .one-column .site {
            width: 100%;
        }
    }

    Note: This will make your hope page responsive, however, the slider may seem a bit odd, because of max-height defined for the slider.

    Regards,
    Mahesh

    in reply to: Adding Login/Logout Links to Footer #85089
    Mahesh
    Participant

    Hi @andrewf90,

    Oh that’s great.
    Glad to know that you’ve managed to make it work now.

    Regards,
    Mahesh

Viewing 20 posts - 4,421 through 4,440 (of 4,908 total)