Forum Replies Created

Viewing 30 posts - 31 through 60 (of 115 total)
  • Author
    Posts
  • in reply to: Gallery Shortcode #518373

    Now it says check manually. I will run on dev.

    in reply to: Gallery Shortcode #518372

    When you go to updates it says it will check every 12 hours. I did not see an option to click a button and say update now.

    in reply to: Gallery Shortcode #518363

    So you are saying that copying the shortcode form the page and pasting it in a post should work correct?

    I just added the theme info to our dev site; however, it will check every 12 hours so not sure when it will be updated. Is there a way to force it to look?

    in reply to: Gallery Shortcode #518339

    I’m a little confused and I’m not sure if you can help me, but the codex says the following which means to be it’s possible.

    Specifying IDs in your shortcode allows you to include images in your gallery that aren’t necessarily “attached” to your post — that is to say, not uploaded from within your post or page. This flexibility allows you to create and embed any number of galleries containing any number of images!

    http://codex.wordpress.org/Gallery_Shortcode

    in reply to: Layer Slider #518163

    Here is the login information.

    in reply to: Enfold PSD for boxed layouts #514509

    The link is a screencapture. Once you click on the link click view and you an see it. I will just request a psd be made for the boxed style that is available through the styleswitcher ( link to boxed style ).

    Thank you.

    in reply to: Enfold PSD for boxed layouts #514024

    My point is that it would be nice if there were one Enfold PSD that had the boxed layout so you could add your background gradient and color and your elements did not go outside the content width and I was hoping that there would be one somewhere that was not within the package. Right now the designers have to try to overlay a screencapture to figure out where the background color should start and then adjust all the layers so they fit accurately within the content areas.

    in reply to: Enfold PSD for boxed layouts #514001

    I have all the psd files from the theme and did not see one with the boxed style layout.

    in reply to: Enfold PSD for boxed layouts #513969

    Here I overlayed a screencapture of the boxed style of the home page with the form onto the psd for the full width version of this page. As you can see the designer needs to truncated each layer of each element to adjust the left and right margins as the boxed version is not as wide as the full width psd.

    Screencapture of enfold psd with boxed enfold style

    in reply to: Enfold PSD for boxed layouts #513966

    I’m just looking for a psd that looks like this… http://kriesi.at/themes/enfold/?skin=Boxed+Blue

    in reply to: Archive Category Page Sort Order #507973

    Thank you for looking at this; however, these are still not in order by date…

    20 Years Later, Start Up Lessons From a Chicago Ad Agency
    June 11, 2012/in Advertising, Articles, Directors

    3 of 13 Key Marketing Initiatives
    November 6, 2013/in Articles, Directors, Media, Media Strategy

    3D Printing Is The Future Of Manufacturing
    April 8, 2015/in Articles, Directors

    4 Solid Tips For Marketing To Millennials
    June 12, 2014/in Articles, Directors, Marketing Strategy

    New 5 unique packaging
    5 Unique Household Packaging Designs You’ll Never Expect
    October 23, 2013/in Articles, Creative & Messaging, Directors

    A blog for those who don’t believe in Marketing
    September 11, 2014/in Advertising, Articles, Directors, Marketing Strategy

    A Super “Bowl” Filled To The Rim With Doritos
    February 8, 2010/in Articles, Directors, Media

    Another Year of Super Bowl Commercials?
    February 3, 2014/in Advertising, Articles, Directors, Media

    • This reply was modified 9 years, 2 months ago by endoradigital. Reason: Removed directors names
    in reply to: Archive Category Page Sort Order #507221

    Here is the login information. It seems the code changes the main articles page ( http://www.stevens-tate.com/news-insights/articles/ ), but not the category Directors page ( http://www.stevens-tate.com/category/blog/directors/ )

    • This reply was modified 9 years, 2 months ago by endoradigital.
    in reply to: Archive Category Page Sort Order #506585

    That still did not change anything.

    in reply to: Archive Category Page Sort Order #503699

    Here is my whole functions.php file

    <?php
    
    //add_action( 'ava_after_main_menu', 'enfold_customization_header_widget_area' );
    //function enfold_customization_header_widget_area() {
    //	dynamic_sidebar( 'Header - Middle' );
    //}
    //add_action( 'ava_after_main_menu', 'enfold_customization_header_widget_area2' );
    //function enfold_customization_header_widget_area2() {
    //	dynamic_sidebar( 'Header - Right' );
    //}
    /*
    
     * Add social sharing icons to to bottom of every page in the content area exceopt for home page
    
    */
    
    add_filter('avf_template_builder_content', 'avia_add_social_toolbar_template_builder', 10, 1);
    function avia_add_social_toolbar_template_builder($content = "")
    {
    	if( !is_home() && !is_front_page() ) {
    		$content .= avia_social_share_links(array(), false, '', false);
    		$content .= '';
    	}
    	return $content;
    }
    
    /*
    
     * Remove brackets [...] from the end of the excerpt
    
    */
    function change_excerpt( $text )
    {
    	$pos = strrpos( $text, '[');
    	if ($pos === false)
    	{
    		return $text;
    	}
    	
    	return rtrim (substr($text, 0, $pos) ) . '....';
    }
    add_filter('get_the_excerpt', 'change_excerpt');
    
    add_filter('avia_blog_post_query', 'avia_blog_post_query_mod');
    
    // Change archive category page to order by publish date i.e. directors posts 
    
    function avia_blog_post_query_mod( $query ) {
    $query['orderby'] = 'date';
    $query['order'] = 'DESC';
    return $query;
    }
    ?>
    in reply to: Archive Category Page Sort Order #503502

    I did make your changes; however, April 30, 2012 is still displaying before June 11, 2012.

    in reply to: Archive Category Page Sort Order #503479

    Isn’t this going to order it by title. I was looking to order it by publish date rather than the creation date or post id.

    in reply to: Gallery in post and page #497217

    I’m not sure that would work and I wouldn’t want the users to have to do that. I did find that if I use WordPress’ built in gallery in a post, I can then copy that shortcode and use that in an element so it only needs to be updated in one place.

    in reply to: Gallery in post and page #496517

    Thank you I have used that feature, but I don’t want to have to maintain two galleries and one gallery would be in a page and the other would be in a post.

    in reply to: Google Map Directions #493677

    Thank you. I don’t know why I didn’t think of this yesterday, but I took the code we used on the live site and put it in a codeblock and it works great.

    in reply to: Advanced Menu Styling #493631

    Perfect. Thank you.

    in reply to: Advanced Menu Styling #493245

    I am still having problems with the on state for the navigation. Since the Advanced Styling was not working I have tried adding code via the Quick CSS. I have added multiple things trying to get it to work. Currently the following will display an on state on the main nav; however, all the subitems under it are also white. I have noticed that if I am on a subpage it it working properly, it’s just when I am on a main nav page.

    .current-menu-item a span {
    color: #ffffff !important;
    }

    in reply to: Stack Header Elements at certain width #493237

    Thank you!

    in reply to: Font Resizer #490168

    Is there a help page for creating this new widget area?

    in reply to: Advanced Menu Styling #490160

    I was looking for the web safe fonts/font families
    Arial, Helvetica, sans-serif
    “Arial Black”, Gadget, sans-serif
    “Comic Sans MS”, cursive, sans-serif
    Impact, Charcoal, sans-serif
    “Lucida Sans Unicode”, “Lucida Grande”, sans-serif
    Tahoma, Geneva, sans-serif
    “Trebuchet MS”, Helvetica, sans-serif
    Verdana, Geneva, sans-serif

    in reply to: Navigation color bar and header background image #489775

    I did add a widget to the header area to try to make the text on the right text rather than a graphic. I’m having a hard time pushing it over to the right further as that seems to make the content area narrower and then when it goes responsive I’m going to have to remove the top padding from the H1. We’re going to try to add the header background to the background image to see if we can get that to work as well.

    in reply to: Navigation color bar and header background image #489749

    ABSOLUTELY

    SIDEBAR-Sub Menu: I was able to add a min-height and get that to work; however I’m not sure it’s the best way and I’ll have to tweak for responsive.

    HOME PAGE SIDEBAR ITEMS I did just get the color added by adding divs to the text area…would be great if we could define classes to the containers and the container items.

    The real issues are the header and the navigation. What the dropdown nav when you are on the about page…that’s the only drop down I have and I think it has to do with the on state.

    Thank you!

    in reply to: Navigation color bar and header background image #489729

    Thank you for your help. Yes, I’m devoted to working on this and continue to move forward as much as possible.

    SIDEBAR-REQUEST YOUR VISIT
    I have added the css you suggested; however, now the top dark green area has a white background. It needs to be 404616 and go from photo to eds of the navigation

    SIDEBAR-SUBNAV
    I have added the css you suggested; however, I no longer see the small sliver of green that was there as it has all changed to white. The background should be c5cbb3 and be the same width as the green above and encompass the whole height of the subnav.

    SIDEBAR-ACTIVITY CALENDAR AND UPCOMING EVENTS
    These are white and should be white.

    I’m having the same problem targeting sections with background colors. The home page uses Avia Layout Builder sections rather than the sidebar widget. I’d appreciate some insight as to how to target theses.

    5. NAVIGATION
    I removed all my quick css that was applied to the main nav and tried using the advanced styling and it was not pulling what I had set. I have added my css back in and am using the following to set an on state; however it also sets the subitems to white as well
    .current-menu-item a span {
    color: #ffffff !important;
    }

    The second navigation issue has to do with the subnav rollover background color…it’s changing to a white background with white text. It would be find to change to white if the text stayed black or we could change the text to white and have the background remain the same. Again the changes under advanced styling could not control this as well.

    The third navigation issue is that when you resize your window to 990 the navigation starts to wrap…I am not sure what item is going wider since the main area is 980 wide.

    HEADER
    The header background image does not resize. I have added a link below so you know what image I am talking about.

    in reply to: Navigation color bar and header background image #489598

    I understand.

    I am trying to recreate a currently live site using the Enfold template.

    My dilemma is adding a photo in the content area that spans the full width. On the “With Sidebar” layout I used css to remove the padding/margin, but then I have to add it back in to allow for room to air the text in the content area.

    In side sidebar I’ve added a green background however it doesn’t fill the full height of the menu. How can I do this?

    Also the site has a secondary menu at the bottom above the socket or could be part of the socket. I need to figure out how to add that in the correct area.

    Sorry one more issue is getting the spacing even around the border dividing up the nav items in the main nav.

    On the main menu subnav the on state css I’ve defined seems to also make the children that same color. Is there a way to avoid that?

    Thank you for your help.

    • This reply was modified 9 years, 3 months ago by endoradigital.
    in reply to: Advanced Menu Styling #489576

    I realized my error, but I do have a question. Why aren’t the standard web font listed in the font family when changing the H1 via the Advanced Styling

    in reply to: Full Width Easy Slider Video #483433

    On the last two slides I was able to get it to look better by adding the following code. It’s just frustrating how it looks based on the users window size.

    Do you have any suggestions on how this could look better?

    ul.avia-slideshow-inner {
    max-height: 599px !important;
    }

    The site has since gone live and I’ve provided a new url.

    Thank you.

Viewing 30 posts - 31 through 60 (of 115 total)