anitac

Forum Replies Created

Viewing 15 posts - 796 through 810 (of 2,673 total)
  • Author
    Posts
  • in reply to: Hire someone to set up hosting? #32385

    anitac
    Moderator
    Post count: 2685

    I do it for my clients and have several on HostGator. If you are looking to outsource that function visit my website and drop me an email.


    Twitter Handles: @thecre8tivediva | Website: Cre8tiveDiva.com | LinkedIn Group: http://goo.gl/nNe1m
    Why Not Take The Challenge! – Help us answer some of the unanswered posts

    in reply to: Learning by Doing #32318

    anitac
    Moderator
    Post count: 2685

    Faith,

    Here’s what I’ve done. I sent out an email that I was giving away three FREE websites to NONPROFITS and if they knew of an organization to send me their information. They needed to contact the organization to put them on notice. I wasn’t going to call and they weren’t interested. They had to kinda pre-screen to make sure they’d be willing to do it. I ended up doing three websites which helped my portfolio. They must have a valid 501(c)3 and be in good status to receive the free website.

    Another idea, join Grassroots.org. It’s free to join and it’s a site geared toward nonprofit organizations. They get free website hosting and a lot of other useful free tools and resources. Get on there, join their community which is kinda like Facebook. You may get some solicitation from there.

    And, I’d have to disagree with you about churches. They may have someone to do graphics, but not websites. Still try to go after them.

    Good luck.


    Twitter Handles: @thecre8tivediva | Website: Cre8tiveDiva.com | LinkedIn Group: http://goo.gl/nNe1m
    Why Not Take The Challenge! – Help us answer some of the unanswered posts

    in reply to: Google+ #32317

    anitac
    Moderator
    Post count: 2685

    I started a group on Facebook also. Just click the link in my footer.


    Twitter Handles: @thecre8tivediva | Website: Cre8tiveDiva.com | LinkedIn Group: http://goo.gl/nNe1m
    Why Not Take The Challenge! – Help us answer some of the unanswered posts

    in reply to: Photo Enlarge in Posts #32316

    anitac
    Moderator
    Post count: 2685

    I had a similar problem and it had to do with captions. Not sure if it’s the same for you. But try this. Look for this in your Style.css

    img {
        height: auto;
        max-width: 100%;
    }

    Put a forward slash (/) at the beginning of the height like so:

    /   height: auto;

    Then try to insert a picture.


    Twitter Handles: @thecre8tivediva | Website: Cre8tiveDiva.com | LinkedIn Group: http://goo.gl/nNe1m
    Why Not Take The Challenge! – Help us answer some of the unanswered posts

    in reply to: Add genesis slider to top of blog page? #32312

    anitac
    Moderator
    Post count: 2685

    Do you want it to show on each of the blog pages or on the main blog page?


    Twitter Handles: @thecre8tivediva | Website: Cre8tiveDiva.com | LinkedIn Group: http://goo.gl/nNe1m
    Why Not Take The Challenge! – Help us answer some of the unanswered posts

    in reply to: YouTube Code & Genesis Featured Post Widget #32299

    anitac
    Moderator
    Post count: 2685

    Yes, those ads are annoying. Believe me.. I’ve tried to find a way to block them! Glad I could help.


    Twitter Handles: @thecre8tivediva | Website: Cre8tiveDiva.com | LinkedIn Group: http://goo.gl/nNe1m
    Why Not Take The Challenge! – Help us answer some of the unanswered posts

    in reply to: Converting To Responsive Layout #32276

    anitac
    Moderator
    Post count: 2685

    It seems you are actually editing the desktop version and not mobile. I am working with this very thing – teaching myself and this is what I did to get myself started. I would take out what you have there so far and start with this.

    First, you need to add this to your Functions.php file – you need the Viewport so it will recognize the mobile devices:

    // Add Viewport meta tag for mobile browsers
    add_action( 'genesis_meta', 'custom_viewport_meta_tag' );
    function custom_viewport_meta_tag() {
    	echo '<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">';
    }

    Then, I took the responsive code from the Sample Genesis theme and added it to the Style.css:

    /*
    14 Media Queries
    ---------------------------------------------------------------------------------------------------- */
    
    /* Desktops, laptops and iPads (landscape) ----------- */
    
    <a href="http://www.studiopress.com/forums/users/media/" rel="nofollow">@media</a> only screen and (max-width: 1024px) {
    
    	#wrap {
    		max-width: 960px;
    	}	
    
    }
    
    /* iPads (portrait) ----------- */
    
    <a href="http://www.studiopress.com/forums/users/media/" rel="nofollow">@media</a> only screen and (max-width: 768px) {
    
    	#wrap {
    		padding: 0 5%;
    	}
    
    	.footer-widgets-1,
    	.footer-widgets-2,
    	.footer-widgets-3,
    	.wrap,
    	#footer .creds,
    	#footer .gototop,
    	#header .widget-area,
    	#inner,
    	#title-area,
    	#wrap .sidebar,
    	#wrap #content,
    	#wrap #content-sidebar-wrap,
    	#wrap #sidebar-alt {
    		width: 100%;
    	}
    
    	.genesis-nav-menu li,
    	#footer .creds,
    	#footer .gototop,
    	#header ul.genesis-nav-menu,
    	#header .search-form {
    		float: none;
    	}
    
    	.genesis-nav-menu,
    	#description,
    	#footer .creds,
    	#footer .gototop,
    	#header .search-form,
    	#title,
    	#title-area {
    		text-align: center;
    	}
    
    	.genesis-nav-menu a {
    		padding: 20px 16px;
    		padding: 1.25rem 1rem;
    	}
    
    	#title {
    		margin: 16px 0;
    		margin: 1rem 0;
    	}
    
    	#header .search-form {
    		margin: 32px auto 0;
    		margin: 2rem auto 0;
    		width: 50%;
    	}
    
    	.genesis-nav-menu li.right {
    		display: none;
    	}
    
    	#footer .wrap {
    		padding: 24px 0;
    		padding: 1.5rem 0;
    	}
    
    	.footer-widgets-1,
    	#header .genesis-nav-menu {
    		margin: 0;
    	}
    
    }
    
    /* iPhones (portrait and landscape) ----------- */
    
    <a href="http://www.studiopress.com/forums/users/media/" rel="nofollow">@media</a> only screen and (max-width: 480px) {
    
    	html {
    		font-size: 87.5%; /* 14px base */
    	}
    
    	#header .search-form {
    		width: 100%;
    	}
    
    	.archive-page,
    	.five-sixths,
    	.four-fifths,
    	.four-sixths,
    	.one-fifth,
    	.one-fourth,
    	.one-half,
    	.one-sixth,
    	.one-third,
    	.three-fifths,
    	.three-fourths,
    	.three-sixths,
    	.two-fifths,
    	.two-fourths,
    	.two-sixths,
    	.two-thirds {
    		margin: 0;
    		width: 100%;
    	}
    
    }

    From there… I am making edits and changing/adding/editing to get it to work.

    Again, I’ve been teaching myself and this seems to be working for me. I am using a different theme though and I don’t have any content to work with.


    Twitter Handles: @thecre8tivediva | Website: Cre8tiveDiva.com | LinkedIn Group: http://goo.gl/nNe1m
    Why Not Take The Challenge! – Help us answer some of the unanswered posts

    in reply to: Making My "sticky" show in full length #32275

    anitac
    Moderator
    Post count: 2685

    While the code I found here will provide the full text in the Sticky, the Sticky uses “excerpt” which strips out any special coding you may have in there. But I tried the code they gave an it does open it up all the way.

    You would add this to the bottom of your functions.php file:

    function dan_sticky_filter($content) { if(is_sticky()) $content = the_content(); return $content; } add_filter('the_excerpt', 'dan_sticky_filter');

    Twitter Handles: @thecre8tivediva | Website: Cre8tiveDiva.com | LinkedIn Group: http://goo.gl/nNe1m
    Why Not Take The Challenge! – Help us answer some of the unanswered posts

    in reply to: eleven40: No logo showing in responsive #32269

    anitac
    Moderator
    Post count: 2685

    Use Nick’s responsive header plugin – http://designsbynickthegeek.com/plugins/genesis-responsive-header. You would generate different sizes of your logo to fit different mobile devices. Works great.


    Twitter Handles: @thecre8tivediva | Website: Cre8tiveDiva.com | LinkedIn Group: http://goo.gl/nNe1m
    Why Not Take The Challenge! – Help us answer some of the unanswered posts

    in reply to: Customzing ClipArt Homepage #32265

    anitac
    Moderator
    Post count: 2685

    You can hide it with CSS. Just add this to the bottom of your Style.css:

    #secondary_area {
    display: none;
    }

    Twitter Handles: @thecre8tivediva | Website: Cre8tiveDiva.com | LinkedIn Group: http://goo.gl/nNe1m
    Why Not Take The Challenge! – Help us answer some of the unanswered posts

    in reply to: Insert Columns using a Hook and Responsive #32251

    anitac
    Moderator
    Post count: 2685

    Ok! Now your talking! I love talking these things out with you guys. It really challenges me to LEARN. So, looking at one of the themes that already has the “After Post Ad” or the “After Content Ad” widgets – I could actually start with those and add the columns in one of those.


    Twitter Handles: @thecre8tivediva | Website: Cre8tiveDiva.com | LinkedIn Group: http://goo.gl/nNe1m
    Why Not Take The Challenge! – Help us answer some of the unanswered posts


    anitac
    Moderator
    Post count: 2685

    I see a CSS rendering for “spacker cache” located in your uploads folder. Clear your cache settings in the plugin you are using or disable it to see if the fonts will render correctly.


    Twitter Handles: @thecre8tivediva | Website: Cre8tiveDiva.com | LinkedIn Group: http://goo.gl/nNe1m
    Why Not Take The Challenge! – Help us answer some of the unanswered posts

    in reply to: Magazine Theme: No Right Margin in Responsive Mode #32243

    anitac
    Moderator
    Post count: 2685

    This is frustrating. In looking at the demo on my Android and this demo site I started, the Content area doesn’t have a clean margin – the text is flushed to the right with a few letters cut off. When you continue scrolling, the sidebars have a nice border. How can I adjust just the content area to have a right margin or padding even with the widget areas?

    Home layout does it – http://demo.studiopress.com/magazine/ and the sidebar-content-sidebar (which is what I am using) is doing it also – Here is the demo link – http://demo.studiopress.com/magazine/layouts/scs/.

    Even the slider is cut off on the right side.


    Twitter Handles: @thecre8tivediva | Website: Cre8tiveDiva.com | LinkedIn Group: http://goo.gl/nNe1m
    Why Not Take The Challenge! – Help us answer some of the unanswered posts

    in reply to: Insert Columns using a Hook and Responsive #32240

    anitac
    Moderator
    Post count: 2685

    I am familiar with the Content Column Classes. I am confused now Brad but all of your writings and options. I just want to create the columns using the content column classes and insert them so that they show up below the content on pages or posts. If I have 20 pages but want the same columns on all 20 pages – use a hook to only have to code the columns once. So which option would serve me better?


    Twitter Handles: @thecre8tivediva | Website: Cre8tiveDiva.com | LinkedIn Group: http://goo.gl/nNe1m
    Why Not Take The Challenge! – Help us answer some of the unanswered posts

    in reply to: Insert Columns using a Hook and Responsive #32238

    anitac
    Moderator
    Post count: 2685

    So Brad, in the last code you posted, I would just insert that in the functions or add that to the Hook area? Because the columns will have a lot of rows, i.e, 2 columns with 20 lines, 10 each column… I would hate to add that directly to the functions file.


    Twitter Handles: @thecre8tivediva | Website: Cre8tiveDiva.com | LinkedIn Group: http://goo.gl/nNe1m
    Why Not Take The Challenge! – Help us answer some of the unanswered posts

Viewing 15 posts - 796 through 810 (of 2,673 total)