Register Advertise with usHelp Desk Today's Posts Search

Showing results 1 to 56 of 168
Search took 0.16 seconds.
Search: Posts Made By: clickbump
Forum: Website Design 31st July 2014, 02:11 PM
Replies: 7
Views: 1,171
Posted By clickbump
Re: Artisteer designed wp themes - suitable to sell via ThemeForest?

Hi Graham, I'm curious to see the article you are referring to. Do you have the link?

About your question, are you saying that you used one theme (Artisteer) to build a completely new and unique...
Forum: Website Design 8th February 2014, 11:18 PM
Replies: 6
Views: 452
Posted By clickbump
Re: Before I Launch I Would Love To Hear Your Feedback

I generally like orange as a power color. However, I think your site needs more than that.

I'd apply a background color to contrast with all the white and make your focus areas pop. Gray is an...
Forum: Website Design 8th February 2014, 11:17 AM
Replies: 4
Views: 465
Posted By clickbump
Re: How do I set min width for my responsive theme?

Since the default Google Ad Unit code is enclosed in an iframe, you have no control over any element inside the iframe (due to the browsers internal XSS, cross site scripting countermeasures). You...
Forum: Website Design 4th February 2014, 10:46 PM
Replies: 6
Views: 536
Posted By clickbump
Re: How can I add CSS style to a Category in Wordpress?

The easiest way to do is probably with a snippet of Custom CSS. If you will post or PM the link to your site, it should be an easy fix.
Forum: Website Design 3rd February 2014, 01:04 PM
Replies: 16
Views: 15,244
Posted By clickbump
Re: How do I remove UNDERLINE in wordpress link?

Actually, its not that strange that it works on the live site but not in the post editor. The reason is that the editor-style.css file (assuming your theme has one) does not contain your custom css...
Forum: Website Design 3rd February 2014, 11:52 AM
Replies: 13
Views: 832
Posted By clickbump
Re: Fully responsive slider

FlexSlider would be my recommendation and I bundle it with my theme because its that good. It has an option to show a caption for each slide.

You can adjust the caption position via custom css if...
Forum: Website Design 26th October 2013, 09:14 AM
Replies: 5
Views: 643
Posted By clickbump
Re: Your expertise in coding is very needed!

Its basically a wordpress sidebar "Menu/Links/Latest Posts" widget that's been customized with a bit of CSS. I can give you an example if you need it. Do you have a live site where you are...
Forum: Website Design 24th October 2013, 03:00 PM
Replies: 9
Views: 388
Posted By clickbump
Re: Wordpress Theme help...............

Just about any theme should be able to do this (perhaps with 2 columns rather than 3). Are you looking for free or paid with support?
Forum: Website Design 24th October 2013, 02:58 PM
Replies: 3
Views: 414
Posted By clickbump
Re: Does anyone know about the Genesis Wordpress Theme???

Are you sure that the content you are referring to is not available via the "Posts" or "Pages" editors?

If not, look for "index.php" at "Appearance > Editor > index.php" to search for the text...
Forum: Main Internet Marketing Discussion Forum 21st October 2013, 06:02 AM
Replies: 12
Views: 572
Posted By clickbump
Re: Niche site inspiration

1) The magazine rack - magazines reflect current trends that are hot and people are searching for.

2) Costco - just walking the aisles can turn up several ideas for niche product review sites.
...
Forum: Website Design 21st October 2013, 05:57 AM
Replies: 12
Views: 607
Posted By clickbump
Re: If I had hair, it would be ripped out

Try adding this to your functions.php file:

<?php remove_filter ('the_content', 'wpautop'); ?>
Forum: Website Design 21st October 2013, 05:52 AM
Replies: 3
Views: 502
Posted By clickbump
Re: Anybody use WP Member Champ (WordPress Membership)? What do you like/not like about it? Limitati

I would also suggest that you consider Digital Access Pass (DAP). I built my membership site around it several years ago and I'm very glad I did. It currently serves software and upgrades for over 5k...
Forum: Website Design 20th October 2013, 09:56 AM
Replies: 12
Views: 607
Posted By clickbump
Re: If I had hair, it would be ripped out

The wordpress editor is likely inserting paragraph tags based on the natural line breaks within your content. If you can switch over to the "HTML" source view inside the editor, you can see what the...
Forum: Website Design 20th October 2013, 09:46 AM
Replies: 9
Views: 572
Posted By clickbump
Re: New to Web Design and would Welcome Feedback

The website forces horizontal scrollbars on most common destktop resolutions. You should seek to avoid fixed width layouts that do not collapse based on viewport size.
Forum: Website Design 29th June 2013, 02:18 PM
Replies: 6
Views: 683
Posted By clickbump
Re: Please Help: Header Image not Showing in Chrome and Firefox

Your header graphic, header.png is there, however, the file is somehow currupted and will not display as a result.

Because of this, I wasn't able to open it in Photoshop or Pixlr.com, however, I...
Forum: Website Design 29th June 2013, 02:07 PM
Replies: 2
Views: 364
Posted By clickbump
Re: FORMATTING FOR A WORDPRESS POST? HELP

The code for an html paragraph is:

<p>Your paragraph text here</p>

Try to avoid using break tags <br/> if possible since they add no real semantic meaning to the document. By contrast a...
Forum: Website Design 28th June 2013, 06:39 AM
Replies: 6
Views: 376
Posted By clickbump
Re: Source for Images

Another option is to use Google Advanced Image Search (http://www.google.com/advanced_image_search) with the "royalty free" flag enabled under "usage rights".

Here's two videos that should help:
...
Forum: Programming 28th June 2013, 06:29 AM
Replies: 10
Views: 2,684
Posted By clickbump
Re: <?php include('../header.php'); ?> not showing images...

Relative paths are preferable to absolute paths because they are more concise (contribute less bytes to overall page size) and they are portable.

However, you don't have to worry over relative vs...
Forum: Website Design 22nd March 2013, 06:46 AM
Replies: 4
Views: 654
Posted By clickbump
Re: fixed position stuff in margin separate css for which browsers

The best approach (in my opinion) would be to offer the client a "responsive" redesign which automatically transforms its layout to best fit the device viewing it.

With responsive css, you can...
Forum: Website Design 3rd March 2013, 08:27 AM
Replies: 4
Views: 447
Posted By clickbump
Re: Help w/ Coding on Plugin Template...

Your very welcome! Glad to help. Hit us back once you've given it a shot.

Again, to create the layout in the screenshot, I used Chrome's developer tools on your live website to perform a browser...
Forum: Website Design 2nd March 2013, 12:26 AM
Replies: 4
Views: 447
Posted By clickbump
Re: Help w/ Coding on Plugin Template...

Add this to your custom css:

.ois_spi_outer_3 input[type="submit"]{
background:blue !important;
border:0 !important;
cursor:pointer !important;
}

You can change the "blue" to the...
Forum: Website Design 21st December 2012, 08:55 AM
Replies: 3
Views: 327
Posted By clickbump
Re: Don't review my website...

Here here! I'll second the motion :)

"Website Design" and "Review my website" are distinct enough topics to merit separation. This forum risks turning into a website reviews forum unless these...
Forum: Website Design 21st December 2012, 07:15 AM
Replies: 6
Views: 416
Posted By clickbump
Re: Looking for HTML 5 Tutorials

Smashing Magazine (http://www.smashingmagazine.com/) has a very good free tutorial on html5 here > Coding An HTML 5 Layout From Scratch | Smashing Coding...
Forum: Website Design 19th December 2012, 12:37 PM
Replies: 7
Views: 532
Posted By clickbump
Re: Why Isn't This Image 100% Transparent?

From the looks of your image, it appears that it was created on a white background and then you used pixlr to try to knock it out to transparent.

However, If you had created your image in pixlr to...
Forum: Website Design 19th December 2012, 12:22 PM
Replies: 8
Views: 343
Posted By clickbump
Re: Need Help with Image Spacing

This should do it:

img.alignleft{
margin:0;
padding:0 20px 0 0;
}

The first line resets the margins to zero. The second line is the shorthand padding setting. Values are read like a...
Forum: Website Design 10th December 2012, 04:37 PM
Replies: 8
Views: 570
Posted By clickbump
Re: Moving Featured Images on Blogs with CSS.

Add this to your css:

.the-post-image figure{float:left}
Forum: Website Design 9th December 2012, 10:22 AM
Replies: 10
Views: 678
Posted By clickbump
Re: H1 tags around header image in mystique

First, via FTP, make a backup of your theme's header.php file in case you screw something up. You'll find it at "wp-content/themes/mystique/header.php"

Next, go to your site's wordpress admin area...
Forum: Website Design 4th December 2012, 11:16 AM
Replies: 7
Views: 461
Posted By clickbump
Re: WordPress Help Re: Search Bar

Happy to help Shaun. Best of luck with your site!
Forum: Website Design 4th December 2012, 11:12 AM
Replies: 6
Views: 597
Posted By clickbump
Re: Wordpress Plugin for youtube

How about this?

PLACE YOUR VIDEO URL HERE

If you just want to place a video into a post, that will do it. No plugin needed.
Forum: Website Design 4th December 2012, 11:09 AM
Replies: 15
Views: 838
Posted By clickbump
Re: What are the best place to purchase cheap images?

Make sure you don't overpay for stock photography by selecting a higher resolution that you need for screen display. Web graphics only need to be 72 dpi at 100% scale. Print graphics, by comparison,...
Forum: Website Design 4th December 2012, 08:13 AM
Replies: 7
Views: 461
Posted By clickbump
Re: WordPress Help Re: Search Bar

To remove the navigation placeholder text, add this to your css, just below the previous code I sent you:

#nav{display:none}

However, if you decide you want the nav menu to appear, assuming...
Forum: Website Design 4th December 2012, 07:04 AM
Replies: 6
Views: 906
Posted By clickbump
Re: Thick/Thin Text Formatting...

In general the "thick" fonts are created with heading elements (h1-h6) using a bold sans-serif font like helvetica or arial. The "thin" fonts are usually body copy points and the most common body...
Forum: Website Design 3rd December 2012, 09:48 AM
Replies: 7
Views: 461
Posted By clickbump
Re: WordPress Help Re: Search Bar

Hi Shaun, here's what you need to do to get the search box where you want it:

1) Go to "Appearance > Editor" and locate the style.css file to open it for editing.

2) Scroll to the bottom of the...
Forum: Website Design 3rd December 2012, 09:30 AM
Replies: 8
Views: 853
Posted By clickbump
Re: Adobe photoshop and webdevelopment

For "Web development", Adobe Photoshop is not necessarily the tool you need to master initially. I love Photoshop and have used it since version 1.0, however, I use it much more for print work and...
Forum: Website Design 30th November 2012, 09:34 AM
Replies: 3
Views: 536
Posted By clickbump
Re: Changing Static HTML Site to Wordpress while Maintaining .html Pages Extensions?

Yes, you can configure WordPress to mimic the same link format as your static site. WordPress has a "Permalinks" feature that allows you to control the URL format of posts. You can easily configure...
Forum: Website Design 28th November 2012, 08:45 PM
Replies: 5
Views: 457
Posted By clickbump
Re: How would you replicate this Amazon feature with CSS?

There are several ways to do it. Here's another way that's a bit more concise with the markup elements and uses virtually the same base css:

Markup:


<div class="container">
<span>Item...
Forum: Website Design 28th November 2012, 08:18 PM
Replies: 5
Views: 457
Posted By clickbump
Re: How would you replicate this Amazon feature with CSS?

Markup:


<div class="item break">Item 1</div>
<div class="item">Item 2</div>
<div class="item">Item 3</div>
<div class="item">Item 4</div>
<div class="item break">Item 5</div>
<div...
Forum: Website Design 20th November 2012, 10:58 AM
Replies: 2
Views: 740
Posted By clickbump
Re: iframe MADNESS! & Remarketing tags - Need Your Advice

Hi Steve, if you want to PM the url to your site, I'll see if I can give you a bit of CSS to resolve the layout issue with your lower footer menu.

Essentially, it appears that if you apply a...
Forum: Website Design 20th November 2012, 10:54 AM
Replies: 1
Views: 556
Posted By clickbump
Re: Tools for creating Membership Site with Multiple Products?

I'm using DAP (Digital Access Pass) for this purpose. I have a 4k+ member base that I serve multiple products to through it. Its fairly robust. You will need to know PHP if you want to extend or...
Forum: Website Design 19th November 2012, 11:54 AM
Replies: 5
Views: 843
Posted By clickbump
Re: Subdomain using .htaccess problem ?

Apparently they don't offer easily accessed chat support, but here's a workaround > GoDaddy.com Chat | Instant Support | GetHuman.com (http://gethuman.com/chat/GoDaddy-com/) (look under the section...
Forum: Website Design 19th November 2012, 10:54 AM
Replies: 7
Views: 687
Posted By clickbump
Re: Advice from professional web designers

Spend some time helping others with your expertise, on forums like this one as well as others (see digital point and sitepoint, among many others)

Once you establish yourself as a dependable...
Forum: Website Design 19th November 2012, 10:50 AM
Replies: 5
Views: 843
Posted By clickbump
Forum: Website Design 19th November 2012, 10:44 AM
Replies: 4
Views: 354
Posted By clickbump
Re: Membership Site

I use DAP for a 4k plus member site and while its adequate (with some custom tweaks if you know your way around PHP), you may consider looking into other options to be certain DAP is right for you...
Forum: Website Design 2nd November 2012, 07:31 AM
Replies: 6
Views: 483
Posted By clickbump
Re: permalink problem

The site does not appear to be using "friendly names" for permalinks. Its currently using the WordPress default permalink settings (url=http://threatjournal.com/wp/?p=34)

If you go to "Settings >...
Forum: Website Design 2nd November 2012, 07:28 AM
Replies: 8
Views: 2,080
Posted By clickbump
Re: NextGen Gallery shortcode not working

It sounds like you may have a permalinks issue. Go to "Settings > Permalinks" and click "Save changes". This will force a rewrite of your URLs in the WordPress database.

I find that this resolves...
Forum: Website Design 17th October 2012, 11:11 AM
Replies: 8
Views: 768
Posted By clickbump
Re: Banner with changing images

The most common way to do this is with what's called an "animated gif". Its a single graphic image composed of multiple files that is preset to run at a speed and duration with or without looping.
...
Forum: Website Design 9th October 2012, 09:26 PM
Replies: 2
Views: 470
Posted By clickbump
Re: Wordpress remove title on specific page

Good tip. This works on ANY theme that writes out the post title (most do). For example, on my theme the custom css (using your example page) would be:

#post-6528 h1.posttitle {
display: none;
}...
Forum: Website Design 9th October 2012, 09:21 PM
Replies: 6
Views: 1,380
Posted By clickbump
Re: Wordpress sites: how flexible are they?

WordPress is extremely flexible, however, as Peter indicated, its the theme that determines the kind of visual flexibility you are looking for.

If you are comfortable with CSS, and your theme has...
Forum: Website Design 9th October 2012, 09:07 PM
Replies: 13
Views: 2,748
Posted By clickbump
Re: Best Wordpress Security Plugin????

Many of my customers use Login Lockdown. However, there are a few things you can do that don't require additional software. Most important are these:

1) Disable directory browsing on your server...
Forum: Website Design 27th August 2012, 10:00 AM
Replies: 7
Views: 1,184
Posted By clickbump
Re: Problem with wordpress and CSS (nav_menus, current-menu-item)

Hi Henrick, the problem with your CSS is that since WordPress assigns the .current-menu-item class to the li element, which contains the a element, your CSS needs to be rearranged a bit.

Try this...
Forum: Website Design 25th August 2012, 12:47 PM
Replies: 2
Views: 654
Posted By clickbump
Re: Help - Enabling Compression and Combining Images in to sprites?

Check this thread to bring your site speed up to par (+90 on Google pagespeed) > http://www.warriorforum.com/website-design/655938-site-speed-boost-5-minutes.html

Converting your images to sprites...
Forum: Website Design 25th August 2012, 11:48 AM
Replies: 5
Views: 574
Posted By clickbump
Re: Kind of complicated CSS layout issue with Wordpress?

Hi Pennyroll, unless each of your columns is an a separate container (<div class="column one">box,box,box</div><div class="column two">box, box, box</div>), there is currently no way to do what you...
Forum: Website Design 23rd August 2012, 09:51 AM
Replies: 6
Views: 591
Posted By clickbump
Re: K2 Theme Help

Yes, it will be hidden so it does not really matter where it is located as long as its not in the head section. When placed in the head section, it has the potential to freeze the page if there is a...
Forum: Website Design 23rd August 2012, 09:10 AM
Replies: 6
Views: 591
Posted By clickbump
Re: K2 Theme Help

The reference to the closing body tag is just a point of reference. Its ok to place it at the end of the file you've referenced above. Just make sure that its enclosed in script tags like so:
...
Forum: Website Design 22nd August 2012, 06:19 PM
Replies: 8
Views: 1,158
Posted By clickbump
Re: Hi, What is the easiest and most convenient way to cite images on Wordpress

After checking your site, the CSS you need to use is:

p.wp-caption-text {display:none !important}
.single p.wp-caption-text {display:block !important}
Forum: Website Design 22nd August 2012, 03:23 PM
Replies: 8
Views: 1,158
Posted By clickbump
Re: Hi, What is the easiest and most convenient way to cite images on Wordpress

Yes, in the style.css file found under "Appearance > editor".

The CSS code I pasted above will need to be altered slightly to match your theme's caption element.

If you can post or PM the url...
Showing results 1 to 56 of 168

 
Forum Jump


All times are GMT -6. The time now is 01:19 PM.