Forum Replies Created

Viewing 30 posts - 331 through 360 (of 364 total)
  • Author
    Posts
  • in reply to: space between columns #522443

    Sorry guys I wasn’t being clear again.

    It wasn’t a cache problem.

    Is it possible to modify this so it works in FF and IE.

    /* cell spacing */
    .av_one_fourth + .av-flex-placeholder,.av_one_fifth + .av-flex-placeholder {
        width: 10px!important;
    }
    in reply to: space between columns #522315

    It is a Firefox and IE problem.

    I have booted up an old laptop and tried it on Firefox and IE and it doesn’t work. It works fine on Safari and Chrome. (Firefox and Chrome on Android give the same results.)

    Thanks
    Rob

    in reply to: space between columns #522289

    Sorry Yigit it hasn’t worked.
    This is all my Quick CSS:

    /* stop force upper case */
    body * {
     text-transform: none !important;
    }
    
    /* Header link line orange*/
    #top .header_color.av_header_transparency .avia-menu-fx {
        background: #FF6600 none repeat scroll 0 0;
    }
    
    /* Space between icon boxes contact */
    .iconbox {
        clear: both;
        margin-bottom: 10px;
        position: relative;
    }
    
    /* cell spacing */
    .av_one_fourth + .av-flex-placeholder,.av_one_fifth + .av-flex-placeholder {
        width: 10px!important;
    }

    Cheers
    Rob

    in reply to: space between columns #522258

    Sorry I am not sure I made my self clear. I have removed the CSS that made the gap 1%.
    Scroll down on this page and see the boxes with the crane pictures at the top.
    http://jonescrawlercranes.com/wp/crawler-crane-hire/
    I want the gap between the boxes to be around 10px.
    Thanks
    Rob

    in reply to: space between columns #521718

    Ah sorry Yigit no it isn’t. It has done it site-wide on 2 column layout as well which was better at 6%. How do I limit 1% to 4 column layout and lower?

    Thanks

    in reply to: space between columns #521700

    Hi Yigit,
    I just tried using this CSS and it worked okay:

    #top .av-flex-placeholder {
        display: table-cell;
        width: 1%;
    }

    Is it ok to use that? If not url below.

    Thanks

    in reply to: space between columns #521467

    That is what I was hoping you would tell me.

    in reply to: Turn off text-transform: uppercase; Sitewide #521122

    Nice one thanks Yogit

    in reply to: Avia layout builder losing content #517517

    Hi Yigit,

    The service provider said the limit of PHP is 128mb and it will use that and ignore that line in the wp-config so I have not done it.
    http://www.walnut-tree-inn.co.uk/wp/info.php

    Are you sure this is the problem? It has worked fine up until now. As do all the other Enfold sites I am running on the same hosting.

    Every time I save changes to a page it loses everything except the header or does not apply the changes.

    The only thing that has changed recently is that I have activated Jetpack and connected to WordPress.com

    Thanks
    Rob

    in reply to: Avia layout builder losing content #517388

    Thanks Josue.
    Just to clarify, should I add the following code to the end of my wp-config.php file?
    define('WP_MEMORY_LIMIT', '256M');
    Thanks
    Rob

    in reply to: Opaque header on small screens #508668

    Sorry I think we are on crossed lines. I have got rid of the grey by adding this:

    @media only screen and (max-width: 767px) {
    .av_header_glassy.av_header_transparency #header_main {
        background-color: #ffffff;

    Problem solved.
    Thanks for you hep
    Rob

    in reply to: Opaque header on small screens #507751

    Hi Andy,

    The background doesn’t need to be transparent. I have done other installs with enfold and the white bar at the top on mobiles is white and they look fine. The problem here is the grey I have applied to the transparent header is being applied to the white mobile header. Vigit’s fix above was great, it gives me the same transparrent header as on full screen view except that it is showing the icon for the white background not the one in Theme Options – Transparency Options as it should.

    In short on mobiles I either want:
    white header (not grey) with main Logo (black)
    or
    transparrent header with the Transoparency Options logo (white)

    Thanks

    Rob

    in reply to: Opaque header on small screens #506954

    Many thanks
    Rob

    in reply to: Opaque header on small screens #506661

    … Also the top of the headings now appear under the nav bar.

    in reply to: Opaque header on small screens #506657

    Thanks Yigit

    It is now transparent but is showing the wrong icon. ie NOT the one from Transparency Options.

    Rob

    in reply to: Copy and paste sections from one Avia page to another #500479

    Thanks for the quick reply Yigit.

    Unfortunately the methods you suggest are going to be too difficult for my clients as they are all elderly retired people. I am looking into using The Events Calendar plugin instead.
    https://wordpress.org/plugins/the-events-calendar

    I assume that will work okay.

    in reply to: Custom Post Types in Enfold #490282

    Hi I now want to add my new post types to display on a page. I have created a template by copying page.php and renaming it. I have added a PHP comment at the top of the file that states the template’s name. Where do I enter my new code and do I have to delete anything? I only want to display my new post-types in an array on the page not change the appearance. I am following instructions from the aforementioned tutorial but in that he adds them to the basic index page. I want to make sure I don’t damage the theme. This is my code so far.

    <?php /* Template Name: Great War Front Page */ ?>
    <?php
    global $avia_config;
    
    	/*
    	 * get_header is a basic wordpress function, used to retrieve the header.php file in your theme directory.
    	 */
    	 get_header();
    
     	 if( get_post_meta(get_the_ID(), 'header', true) != 'no') echo avia_title();
     	 
     	 do_action( 'ava_after_main_title' );
    	 ?>
    
    		<div class='container_wrap container_wrap_first main_color <?php avia_layout_class( 'main' ); ?>'>
    
    			<div class='container'>
    
    				<main class='template-page content  <?php avia_layout_class( 'content' ); ?> units' <?php avia_markup_helper(array('context' => 'content','post_type'=>'page'));?>>
    
                        <?php
                        /* Run the loop to output the posts.
                        * If you want to overload this in a child theme then include a file
                        * called loop-page.php and that will be used instead.
                        */
    
                        $avia_config['size'] = avia_layout_class( 'main' , false) == 'entry_without_sidebar' ? '' : 'entry_with_sidebar';
                        get_template_part( 'includes/loop', 'page' );
                        ?>
    
    				<!--end content-->
    				</main>
    
    				<?php
    
    				//get the sidebar
    				$avia_config['currently_viewing'] = 'page';
    				get_sidebar();
    
    				?>
    
    			</div><!--end container-->
    
    		</div><!-- close default .container_wrap element -->
    
    <?php get_footer(); ?>
    in reply to: Custom Post Types in Enfold #481549

    I’ve started using the wp-types plugin will that be ok? There is a good tutorial to follow on YouTube called “WordPress Custom Post Types and Custom Fields – Part #1 – Setting up custom post types and fields” (sorry link embeds wrong video)

    • This reply was modified 9 years, 8 months ago by fanlokbun.
    in reply to: Masonry Gallery Captions on Mobile #479627

    Thanks Ismael but it doesn’t seem to work. It must be something I am doing wrong. The client is happy with the way it is now so we can leave this one unresolved.

    Thanks again for you help.

    Rob

    in reply to: Masonry Gallery Captions on Mobile #477637

    Thanks Yigit. Sorry I’m still being a bit dim. I added the above to my custom css but it didn’t do anything.
    http://www.edendesignandinteriors.co.uk/design-portfolio/
    You can see the labels on large screens but I have hidden them again on mobiles. I have both queries in my custom css at the moment:

    /* hide masonry labels */
    @media only screen and (max-device-width: 1024px) {
    figcaption.av-inner-masonry-content.site-background {
    display: none;
    }}
    
    /* masonry smaller labels */
    @media only screen and (max-device-width: 1024px) {
    .av-masonry-entry .av-masonry-entry-title + .av-masonry-entry-content {
      padding: 1px;
      font-size: 12px;
    }}
    in reply to: Try out Enfold before purchase #477635

    Thanks I’ve done that.

    in reply to: Try out Enfold before purchase #477252

    Hi Ismael I have purchased the theme. Do I need to to enter the license info anywhere?

    Thanks
    Rob

    in reply to: Masonry Gallery Captions on Mobile #477244

    Sorry to be a bit dim Ismael, when you say inside the media query where is that? I tried theme custom css and the stle.css but it didn’t work.
    Thanks
    Rob

    in reply to: Masonry Gallery Captions on Mobile #476402

    Hi Rikard,

    There is nothing to see as I have them hidden. It is probably just the font size and spacing. What would be the css to reduce them to normal paragraph font and small padding.

    Many thanks

    Rob

    in reply to: Letter spacing #475114

    Nice one! What an excellent system. This theme just gets better and better.

    Thanks

    in reply to: Permanent footer menu #474473

    Just the job. Many thanks Elliott

    in reply to: header background image left of logo #459658

    Thanks Yigit

    in reply to: header background image left of logo #459639

    Hi Yigit,

    Thanks but I had already found and tried this solution it only aligns left. It also doesn’t align left on mobile devices which is where the problem is worst otherwise I would have use it.

    What I really want is a div to fill the space left of the logo where I can have a repeating image as per screen grab. If this is not possible please supply your code again that will align the logo absolute left on mobile devices too.

    Thanks

    Rob

    in reply to: header background image left of logo #458744

    Hi Elliott,

    See this screen grab I have marked where I want the repeating image. I want three stripes to extend from the logo to the edge of page.

    screen grab

    Thanks
    Rob

    in reply to: header background image left of logo #458002

    Thanks Elliott but I don’t want it across the whole bar only left of the logo to the left hand edge.

    Rob

Viewing 30 posts - 331 through 360 (of 364 total)