Forum Replies Created

Viewing 15 replies - 76 through 90 (of 191 total)
  • .

    (@techievous)

    Can we request the Custom CSS to be just insert the code of,
    Copyright © 2014 Child’s Place LLP All Rights Reserved.

    That’s not possible with CSS. We need to use PHP for that. Please put this into the bottom of your functions.php of your child theme:

    <?php
    
    // Remove default footer text
    add_action( 'init', 'remove_fn_init' );
    function remove_fn_init() {
         remove_action( 'attitude_footer', 'attitude_footer_info', 30 );
    }
    
    // Add custom copyright text
    add_action( 'attitude_footer', 'attitude_footer_custom', 30 );
    
    function attitude_footer_custom() {
         $output = '<div class="copyright">'.'Copyright © [the-year] [site-link] All Rights Reserved. '.'</div><!-- .copyright -->';
         echo do_shortcode( $output );
    }
    
    ?>

    The reason I need to wrap the remove_action around an ‘init’ hook is to ensure that it doesn’t fire before the original function is actually added to the hook.

    Will it affect WordPress Attitude Theme after updated?

    The codes for the footer is in footer-extensions.php; you can find it in
    /wp-content/themes/attitude/library/structure/footer-extensions.php.

    If you apply the child theme properly, it should work after updates . .. until the author decide to change something about it. (For example, one day the theme author could decide to change the $priority just for the fun of it.)

    In which case you would need to take a look at the footer-extensions.php file of the parent theme and see what has changed. The base code is already there; adapting to minor changes like tag, name, or priority is a simple 30-second deal. I wouldn’t worry too much.

    .

    (@techievous)

    Do you mean Site Title by “title”? If so, then this should work:

    #site-title {
         display: none;
    }
    .

    (@techievous)

    If the problem is solved, then could you please mark this as resolved? That would be much appreciated. Thank you.

    .

    (@techievous)

    So if I’m not to build a theme which accesses a database, with tables and all, am I going to be limited by how the product data as is site above would be displayed on my site.

    As mentioned earlier, WordPress is the CMS. Your theme does interact with the database with PHP and the likes, but it’s not the CMS.

    what does it take to create a theme with this functionality,

    If you’re asking what knowledge, then you would need to know HTML, CSS, javascript, PHP at the very least.

    If you mean the time, then developing from scratch would be about 2 to 3 weeks (that’s for an experienced developer, obviously it would be faster if there’s a team working on it or slower for someone who’s new); If we use a template then customize it to the needs, then it’s about a week or so.

    If you mean the cost to hire someone or agency, then it could be anywhere from $20-$40 per hour to a few hundreds dollars per hour. The flat rate could be anything around $800 to a few thousands dollars.

    is there a youtube video that comes close to creating one step by step?

    I’m sorry to say but unless the person is exceptionally talented, no one is going to be able to just code a WordPress theme without any prior experience or knowledge in web development.

    .

    (@techievous)

    You can control the footer text color with this:

    #site-generator .copyright {
         color: #7a7a7a;  /* footer text color */
    }
    
    #site-generator .copyright a {
         color: #181818; /* footer link color *?
    }

    ——-

    As for the method, the best would be using a child theme. Instruction here: http://codex.wordpress.org/Child_Themes

    If you’re unable to setup a child theme for whatever reason, then the Attitude theme also have a built-in custom CSS box in Appearance –> Theme Options –> Design tab –> Custom CSS. You can put your custom CSS there.

    Alternatively, you can also use Jetpack (an official plugin from WordPress developers themselves) or Simple Custom CSS to accomplish the same thing.

    .

    (@techievous)

    Try this:

    #nav-header.nav-container {
         box-shadow: none;
    }
    .

    (@techievous)

    Try this:

    @media (max-width: 899px) {
    	.sidebar-primary-container {
    		display:none;
    	}
    }
    .

    (@techievous)

    Do you know of any paid prebuilt themes I could purchase that has that functionality and customise from there?

    I don’t think I can recommend such themes because that could be consider as advertising, which would get me banned from this site.

    But most likely you’ll need more than just a theme. You’ll need:

    • WordPress as the CMS,
    • a WordPress theme (preferrable one that support e-commerce plugins),
    • an e-commerce plugin (such as WooCommerce),
    • a few other WordPress plugins to ensure speed and extra functionalities (such as checkout gateways, handling the minify process, cache, etc.)

    Is this whats called a CMS? so the theme uses database for retrieve details about the products and associated pictures.

    WordPress is the CMS, not the theme. But you get the other general idea right.

    Also can I add responsive feature (for phones/tablets) to a wordpress site or does that have to be part of the theme I choose?

    Nowadays responsiveness is built-in for almost every good themes; it is the current standard. But if the theme lack that feature, you can add a separate mobile layout via a redirect setup or a plugin.

    .

    (@techievous)

    You can see the information about the theme and its author in the theme’s style.css file: http://www.associatedforklifts.com.au/wp/wp-content/themes/eleven/style.css

    You’ll find this:

    /*
    Theme Name: Associated Forklifts
    Theme URI: http://www.elevenmedia.com.au
    Description: WordPress theme
    Author: Eleven Media
    Author URI: http://www.elevenmedia.com.au
    Version: 2013
    */

    It appears the theme is custom-built by Eleven Media, a web development agency based in Australia.

    ——

    It’s not that complex either. If you have a few hundred dollars on hand, any professional WordPress developer will be able to give you a similar theme–even better, actually.

    .

    (@techievous)

    <img src=http://tb.mysite.se/?uamfiletype=attachment&uamgetfile=http://tb.mysite.se/wp-content/uploads/2014/07/logo14.png

    That’s because that URL is wrong in every way imaginable. The structure itself is wrong; the URL itself leads to server not found error. The domain itself doesn’t exist.

    It should be something like this example URL
    http://example.net/wp-content/uploads/2014/07/image-name.jpg

    .

    (@techievous)

    I’m not sure what you’re talking about. This is what I see [link].

    Could you please give a screenshot showing the black border in question??

    .

    (@techievous)

    If the issue is solved, could you please mark this as resolved? That would be much appreciated, thanks!

    .

    (@techievous)

    IE8 and below doesn’t support @media queries. However, it should work with IE9 and above.

    Microsoft itself has stop supporting Windows XP and its software versions, including IE8, since April 8, 2014. We have no reason to support it; I’m sorry but you’re on your own on that one. If you fancy digging around, you can look into Respond.js or IE’s conditional commenting system.

    .

    (@techievous)

    I assume that we start with the default CSS (the default provided with the theme, before your edits).

    @media screen and (min-width: 769px) {
      #logo {
       float:left;
      }
    
      nav#mainmenu {
       float: right;
       text-align: right;
       margin-top: 65px;
       width: 70%;
      }
    }

    Screenshot: http://i.imgur.com/xoGTuby.png

    If your menu is too long, it’ll break into 2 lines due to lack of space (because now the menu has to share space with the logo as well, on a single line).

    When the screen become smaller than 769px, it automatically revert back to default styles. This ensure the site’s responsiveness.

    .

    (@techievous)

    Maybe it has something to do with the content in the (right) side-bar (The Bio with picture) or the content of the blog posts (video’s with a particular size and setting)?

    Those were the among the first things I check. I’m positive that they aren’t the problem.

    The only issue I see is that being an SEO marketeer, your use of <img> tags doesn’t follow standard SEO recommendation. But that has nothing to do with this problem.

    Can you reproduce the problem on OP’s live site and if so, was there anything different you had to do to replicate it? I can’t replicate the issue at all.

    3** conditions are needed to reproduce the problem on his live site:

    • only happen in Google Chrome, (though admittedly I was lazy and only tested on IE, Firefox, and Chrome :P)
    • only happen from 783px to 1284px screen width,
    • .primary-navgiation has to be float:right AND .primary-navgiation a has to be white-space:nowrap. (must be both, just changing the float rule to float:none + text-align:right OR changing white-space:nowrap to white-space:normal would fix it)

    **(And a fourth condition: must be his site)

    The problem is that something is causing an overflow when all 3 of those contions are met. Hence the code I provided at the post above . . . it patches the problem by removing one of the 3 conditions required for it to occur.

    I tried to compare his CSS with the original, even took a look at his child-theme CSS here. I didn’t find anything suspicious :/

Viewing 15 replies - 76 through 90 (of 191 total)