Forum Replies Created

Viewing 15 replies - 151 through 165 (of 186 total)
  • Hi @jdkapp1s,

    The code I gave you doesn’t go into the CSS box, it goes into the Advanced area (where it says Google Analytics Code). Wrap it into <script> </script> tags.

    Please, let me know if you need any further assistance.
    Kind regards,
    Diego

    Hello @thepanickedfoodie,

    Hope you are having a great day and thanks for contacting us!

    Please go to WP Admin > Appearance > Customize > Additional CSS and inside that box, add the following code:

    .entry-meta a, .entry-meta a:visited, .entry-meta a:focus, .entry-meta a:active {
        color: blue;
    }

    ​Try it and let me know how it worked.
    Please, let me know if you need any further assistance.
    Kind regards,
    Diego

    • This reply was modified 8 years, 2 months ago by corewpress.

    Hi

    It is not possible to add a link to the image within the theme’s features, but you could add some jQuery code snippet in order to do so. Here is how:

    jQuery(document).ready(function($) {
    	jQuery(".frontpage-banner > img").wrap(jQuery('<a>',{href: 'https://google.com'}));
    });

    And replace the “https://google.com&#8221; URL to the link you want to send users.

    You could be able to add it in the Pro version in a specific field (like the additional css), but in the free one, there is no such a field. You’ll need to add that code to a child theme (https://codex.wordpress.org/Child_Themes), so you don’t loose the changes when you upgrade your theme.

    Please, let me know if you need any further assistance.
    Kind regards,
    Diego

    • This reply was modified 8 years, 2 months ago by corewpress.

    Sorry I forgot to answer your previous question. In order to make it bold, Please go to WP Admin > Appearance > Customize > Additional CSS and inside that box, add the following code:

    .navbar-nav > li > a {
        font-size: 13px;
        font-weight: bold;
    }

    ​Try it and let me know how it worked.
    Kind regards,
    Diego

    Hi Alex,

    Hope you are having a great day and thanks for contacting us!
    Do you want to have your menu bar on the same line as the logo? Logo floating left and menu on the right of it?

    Let me know so I can give you the right code.
    Kind regards,
    Diego

    Hi @jdkapp1s,

    Hope you are having a great day and thanks for contacting us!

    The easiest way to do so, is to hide the caption using some CSS code snippet. I was browsing your site and couldn’t find where you’ve added. Could you share your URL so I can see this first hand?

    Thanks!
    Kind regards,
    Diego

    Hello Kirsten,

    Hope you are having a great day and thanks for contacting us!

    Please go to WP Admin > Appearance > Customize > Additional CSS and inside that box, add the following code:

    .single-content a {
        color: red;
    }

    Of course you can change the ‘red’ color to anything else you want.

    ​Try it and let me know how it worked.
    Kind regards,
    Diego

    Hi @livhatt,

    Hope you are having a great day and thanks for contacting us!

    Depending on what result you are looking for, you’ll find different ways to do it. The more invasive to the theme, would be to create a child theme (https://codex.wordpress.org/Child_Themes) and modify each template on the navigation area. But as a previous alternative, you could try using a plugin.

    Check this one: https://wordpress.org/plugins/wp-pagenavi/ as it is very popular and widely used.

    Please, let me know if you need any further assistance.
    Kind regards,
    Diego

    Hello

    Hope you are having a great day and thanks for contacting us!

    Please go to WP Admin > Appearance > Customize > Additional CSS and inside that box, add the following code:

    .frontpage-banner .caption h2 a {
        font-family: Arial;
    }

    Of course change the “Arial” text for the font of your choice.
    Please, let me know if you need any further assistance.
    Kind regards,
    Diego

    Hi Anna-Marie,

    It’s easy to remove it, just use this code:

    .blog-feed > h2:after {
        content: ""; } 

    Please, let me know if you need any further assistance.
    Kind regards,
    Diego

    • This reply was modified 8 years, 2 months ago by corewpress.

    Not a problem!

    Use this instead:

    h3.entry-title > a:hover {
        color: #010C46;
        text-decoration: none;
    }
    
    h3.entry-title > a { color: #010C46; }

    Please, let me know if you need any further assistance.
    Kind regards,
    Diego

    Hi again!

    Please go to WP Admin > Appearance > Customize > Additional CSS and inside that box, add the following code:

    .single-content p {
        font-family: 'Century Gothic';
    }

    Try using that instead and let me know if worked.

    Kind regards,
    Diego

    Hello @mummyheartsyou,

    Please, let me know if you need any further assistance.

    h3.entry-title > a:hover {
        color: black;
        text-decoration: none;
    }

    This should remove the blur and underlined effect on hover. ​Try it and let me know how it worked.

    Please, let me know if you need any further assistance.
    Kind regards,
    Diego

    Hello Jenni,

    Hope you are having a great day and thanks for contacting us!

    In order to change the color on the selected item menu, please go to WP Admin > Appearance > Customize > Additional CSS and inside that box, add the following code:

    .current_page_item > a {
        color: red !important;
        font-weight: bold !important;
    }

    This will make it also bold text, but you can remove the second line if you don’t want that. For the color, just change the “red” text for any other color you want to use.

    Regarding the Raleway font, you want all the texts in that font, or just the titles?

    Let me know.
    Kind regards,
    Diego

    Hello @mummyheartsyou,

    Hope you are having a great day and thanks for contacting us!

    Please go to WP Admin > Appearance > Customize > Additional CSS and inside that box, add the following code:

    .blog-feed > h2 { font-size: 45px; }

    Please, let me know if you need any further assistance.
    Kind regards,
    Diego

Viewing 15 replies - 151 through 165 (of 186 total)