Forum Replies Created

Viewing 15 replies - 481 through 495 (of 542 total)
  • Hi there! 🙂

    You can use some simple CSS to change the background color of the footer.

    This can be pasted in Appearance -> Theme Options -> Custom CSS or you can create a child theme.

    You can read about child themes here.

    .enigma_footer_area {
      background: #000000;
    }

    I hope that helps!

    Luke the Daft Duke

    Hi there!

    You can use Media Queries to adjust the layout of your site for specific screen sizes.

    If you post a link to your site we can suggest some CSS to use to fix your problem.

    Then you could post this CSS in Appearance -> OnetOne Options -> Custom CSS or in a child theme.

    You can read about child themes here.

    I hope that helps!

    Luke the Daft Duke

    Hi there! 🙂

    If you go to Appearance -> Customize you can select from a variety of skins that come with the theme.

    However, if you just want to change the background color you can use some CSS.

    You can paste this CSS in Appearance -> Customize -> Custom CSS or you can create a child theme.

    You can read about child themes here.

    Use this CSS :

    body {
      background: #COLOR CODE HERE;
     }

    I hope that helps!

    Luke the Daft Duke

    Hi there! 🙂

    I would highly recommend you create a child theme to store all of your changes and keep them safe when the theme updates.

    You can read about child themes here.

    Once you have your child theme set up you can paste this code into your child theme style.css file.

    1. Reduce the header:

    .site-branding {
      padding: 1rem 0;
    }

    2. Reduce the font size:

    .entry-content p {
      font-size: 1.7rem;
     }

    For the second issue could you post a link to your site as I would need to know what plugin you are using in order to make a suggestion.

    I hope that helps!

    Luke the Daft Duke

    Hi there!

    Welcome to the world of WordPress 🙂

    The images you see when you search for a template are generally just examples of what can be done with the theme. You won’t get an exact replica when you install it.

    On the Pictorico demo theme image there is a grid of images – all of these images are ‘Posts’ showing their ‘Featured Images’.

    To create something similar on your site:

    1. Go to Posts -> Add New

    2. Scroll down a little and click on ‘Set Featured Image’ (right-hand side).

    3. Choose an image you like.

    4. Write any copy you want and click ‘Publish’

    5. The post should now appear on the front page of your site.

    I hope that helps!

    Luke the Daft Duke

    Hi there! 🙂

    Are you wanting to do something like this?

    Screenshot

    If so, you need to make some CSS changes. The best way to do this is by creating a child theme so all of your changes will be safe when the theme updates.

    You can read about child themes here.

    Once your child theme is set up you can paste this code into your style.css file:

    #container {
       max-width: 100%;
    }

    I hope that helps!

    Luke the Daft Duke

    Hi Greg,

    Yes, it disables the sub-menu, but by using this in conjunction with the CSS posted previously you should still be able to get to the sub-menu items or, at least it’s working like this for me :-).

    Here’s that css again:

    #menu-item-43:hover .dropdown-menu {
    display: block
    }

    It’s hard to give up before a solution is found ! 🙂

    – Luke

    Hi,

    You can hide them with CSS or modify the php files so they are completely removed from your theme.

    The best way to go about this is by creating a child theme. You can read about that here.

    If you post a link to your site I can show you what CSS to add to your child theme style.css to remove your themes or advise you further on editing the php files.

    I hope that helps,

    – Luke

    Could you post a link to your site so we can investigate and suggest a solution?

    – Luke

    Finally figured it out…

    1. Put this in your functions.php file (in your child theme)

    <?php
    function add_menuclass($ulclass) {
    return preg_replace('/<a class="dropdown-toggle"/', '<a class="dropdown-toggle disabled"', $ulclass, 1);
    }
    add_filter('wp_nav_menu','add_menuclass');
    ?>

    2. Admin Dashboard -> Appearance -> Menus

    3. Screen Options (top right) -> Show Advanced Menu Properties -> Check ‘Link Relationship (XFN)’

    4. Go to your Menu Item (Projects) click on the carrot to pull down the options.

    5. Type ‘disabled’ in the ‘Link Relationship (XFN)’ field.

    6. Save the menu

    Good luck!

    – Luke

    Forum: Themes and Templates
    In reply to: [Ward] logo

    Hi there,

    If I’m understanding correctly you could adjust this with CSS. Something like:

    .header-image {
      margin: 20px 0 0 20px;
    }

    Placed inside your child theme style.css

    If you post a link to your site I could be more exact for you.

    I hope that helps 🙂

    – Luke

    Hi Greg,

    I think you’ll need this to get the second tier items to reveal on hover:

    #menu-item-43:hover .dropdown-menu {
    display: block
    }

    – Luke

    You don’t need to copy all of your files and you don’t need to copy the contents of your style.css file.

    You just need to link up your child theme style.css to your parent theme’s style.css using the @import feature. Then you only need to add the changes to your child theme style.css.

    You can read more about it here, with full instructions – WordPress Codex – Child Themes

    Good luck! 🙂

    – Luke

    Seeing as it works fine with firebug and chrome inspector my guess is that either its a specificity issue within the CSS or your child theme is not set up correctly.

    To check for specificity you could try this:

    #post-7 header h1 {
      display:  none !important;
    }
    
    .breadcrumb-trail.breadcrumbs.font-secondary {
      display:  none !important;
    }

    This could be due to the fact that you have multiple stylesheets in your child theme – style.css, one-five.css etc.

    When you make you child theme you should only store your changes in your new child theme styles.css file. The parent theme style sheet can be linked using the @import feature. Is this how you did it?

    I hope that helps.

    – Luke

    Hi there,

    If you already set up your menu in the parent theme you could try doing this:

    Appearance -> Menus -> Menu Settings -> Theme Locations

    Check the box that says ‘Contango Primary Menu’

    As it looks like your theme is just displaying all your pages in the menu – i.e. there is no primary menu.

    I hope that helps.

    – Luke

Viewing 15 replies - 481 through 495 (of 542 total)