Why I use WordPress as CMS?

If you think WordPress is yet another blogging platform, take a quick look at other pages of iogoos.com (right from the homepage). Do you really think we could do this with  “Just-Another-Blogging-Software”? Absolutely not!!

Custom Pages, Custom Widgets, Photo Galleries, Portfolio, eCommerce! What, out of these, and even more hasn’t been set up using WordPress.

Only recently, I updated my portfolio with more websites that I had finished, which were not under non-disclosure policy. After adding these projects in my portfolio, I realized that in accomplishing 90% of my work, WordPress plays the role of a CMS. With all the work done so far I am amazed by just how much of its capability I have discovered and how much of it is still unknown to me. Here are a few things that my clients ask when I recommend using WordPress, even for static websites, and what I’ve to say to back my recommendation.

Is it easy to use?

It is The Most Robust and Feature-Filled Platform, which is not only easy to use, but also, very much user friendly. So far all my clients are really happy with the decision to use WordPress as a backend. Moreover, WordPress.tv has made our lives much easier. I refer my clients to this website to learn the features and backend functionality while I am busy creating the best solutions for their requirements.

I need a blog as well…

I guess everyone has realized the value of blogging for their personal and professional web presence by now and most of my clients ask for a blogging platform with a unique and custom website design. It’s really easy to create a few custom pages within WordPress, rather than, creating a WordPress theme that matches the website design. And its really easy to embed WordPress features on these static web pages.

What about Search Engine Optimization?

I am pretty sure you are not new to this term and would want your website to be listed in top search results. With WordPress, you can use plugins like All in One SEO Pack, just to name some, that does most of the work without user intervention. SEO is a wide topic and there’s a lot that needs to be done to achieve good search engine rankings. However, a WordPress installation with a few plugins can help you get there without much hard work. You might want to check a few posts I have written on search engine optimization.

What all WordPress can do?

Honestly, I can’t deny that after using WordPress I haven’t even cared to search for any other CMS. WordPress is an amazing platform which can be customized to create Personal websites, Portfolio, e-Commerce, Galleries and Photo Blogs, Magazine or News websites, Article Libraries and a lot more. If you are comfortable with custom functions and template tags you can actually do wonders with just a single custom WordPress theme.

I don’t know programming?

While creating websites for my clients, I make sure they don’t have to spend their valuable time learning xHTML/CSS to update their websites. I have taken WordPress customization to next level where it provides a separate section in admin area to update the front end of our custom themes. It also has WYSIWYG capabilities where you can update and stylize the content which is not a part of WordPress post or page.

Moreover, these custom functions don’t save any data in core WordPress database tables (wp_options) so there’s no chance it won’t work with any other plugins and features.

Here’s a screenshot of Custom Theme Options I provide to make my client’s life a bit easier.

Theme settings

That’s not all, to add a few more features in the list…

  • WordPress is Free and Opensource
  • WordPress is easy to install and upgrade
  • WordPress is standard compliant
  • WordPress is Popular (CNET, Ford, ZDNET and various other popular sites has used WordPress as a CMS)
  • Free support from a vibrant and amazing community of developers and contributors
  • Huge amount of documentation is available
  • Plugins are available for almost everything you can think of

I bet no other CMS can compete with this master piece. If you are using WordPress as CMS please drop your website links in comments. Don’t try to spam as a very powerful spam protection plugin (Akismet) comes with its default installation 😀

contact us

Check Our Portfolio

An easy way to create a login panel with jQuery and CSS

Among many studies conducted to find out just what influences people’s perception of a website’s credibility, one interesting finding is that users really do judge a book by its cover… or rather, a website by its design.

Rapid changes in design trends are driving focus towards its usability. More and more features are being zipped into a plain and simple design for users to get bountiful results without spending more than a jiffy. The back-end coding is the key device to achieve this simplicity in design.

Keeping this mind, I’ve designed a small script to introduce a sliding login box into your website, just as you see in Twitter login page. The script comprises jQuery & CSS techniques to display this arty feature. Checkout the code below and try it yourself or simply download the ready to use files.

HTML

<div id="demo-header">

	<!-- Code for Login Link -->
	<a id="login-link" title="Login" href="#login">Clients Area</a>

	<!-- Code for login panel -->
	<div id="login-panel">
		<form action="" method="post">
			<label>Username: <input type=text name=username value="" /> </label>
			<label>Password: <input type=password name=password value="" /> </label>
			<input type=submit name=submit value="Sign In" /> <small>Press ESC to close</small>
		</form>
	</div>

</div>

CSS

<style type=text/css>

    a{text-decoration:none;}

    #demo-header{
        width: 980px;
        margin: 0 auto;
        position: relative;
    }
    #login-link{
        position: absolute;
        top: 0px;
        right: 0px;
        display: block;
        background: #2a2a2a;
        padding: 5px 15px 5px 15px;
        color: #FFF;
    }
    #login-panel{
        position: absolute;
        top: 26px;
        right: 0px;
        width: 190px;
        padding: 10px 15px 5px 15px;
        background: #2a2a2a;
        font-size: 8pt;
        font-weight: bold;
        color: #FFF;
        display: none; 
    }
    label{
        line-height: 1.8;
    }
</style>

jQuery

<script src=//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js></script>
<script type=text/javascript>

	// jQuery to apply actions to the link
	$(document).ready(function(){
	    $("#login-link").click(function(){
	        $("#login-panel").slideToggle(200);
	    })
	})

	//jQuery to apply actions to the ESC key
	$(document).keydown(function(e) {
	    if (e.keyCode == 27) {
	        $("#login-panel").hide(0);
	    }
	});

</script>
Contact Us

See Our Portfolio

An easy way to create Tabbed Content with jQuery & CSS

Tabbed content is a great way to handle a lot of information on a page without loosing usability and it provides a great user experience as well. Here’s a real easy way to create tabbed content with jQuery and CSS.

Let’s create tabbed content with jQuery and CSS

Step 1: Include the jQuery library

<script src=//ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js></script>

I’ve used the latest version of the Google-hosted jQuery library, however, you can always download the script and host it on your server.

 Step 2: Write some HTML code

<div >
    <ul >
      <li data-tab="tab-1">Tab One</li>
      <li data-tab="tab-2">Tab Two</li>
      <li data-tab="tab-3">Tab Three</li>
      <li data-tab="tab-4">Tab Four</li>
    </ul>
    <div id="tab-1" >
      Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
    </div>
    <div id="tab-2" >
      Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
    </div>
    <div id="tab-3" >
      Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
    </div>
    <div id="tab-4" >
      Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
    </div>
</div><!-- container -->

In the above code I’ve created an unordered list which will act as tabs and I’ve used a custom attribute named data-tab and set its value to tab-1, tab-2 and so forth. We will use the data-tab attribute in our jQuery script to toggle the “current” class to hide and display our tabs.

Below the unordered list, there are a few DIV elements with ID attribute same as the data-tab attribute we used in the unordered list. This will do all the magic. Before adding the magic script, lets write some CSS to stylise our HTML Unordered list and content panels.

I’ve added “current” class to the first elements and we will play with the current class to stylise the active tabs and toggle the data content div element.

Step 3: Write some CSS to style the HTML

body{
	margin-top: 100px;
	font-family: 'Trebuchet MS', serif;
	line-height: 1.6
}
.container{
	width: 800px;
	margin: 0 auto;
}

ul.tabs{
	margin: 0px;
	padding: 0px;
	list-style: none;
}
ul.tabs li{
	background: none;
	color: #222;
	display: inline-block;
	padding: 10px 15px;
	cursor: pointer;
}

ul.tabs li.current{
	background: #ededed;
	color: #222;
}

.tab-content{
	display: none;
	background: #ededed;
	padding: 15px;
}

.tab-content.current{
	display: inherit;
}

I’ve used display:none for the .tab-content and display:inherit for the “current” tab. This will hide all DIV elements and show the tab with current class only. We will play with the current class to get our tabbed content work with a small magical jQuery code.

You can always change the CSS to have the look and feel similar to your website, use some image backgrounds to make it nice and smooth.

Step 4: Write the magic jQuery code

Now here’s the magic jQuery code which will actually create the tabbed content work.

$(document).ready(function(){
	$('ul.tabs li').click(function(){
		var tab_id = $(this).attr('data-tab');
		$('ul.tabs li').removeClass('current');
		$('.tab-content').removeClass('current');
		$(this).addClass('current');
		$("#"+tab_id).addClass('current');
	});
});

When the DOM is ready, if a user clicks on any list element of ul.tabs it will grab the data-tab attribute and assign the same to tab_id variable. Then, we will remove the current class from all list elements and our DIV.tab-content elements with the jQuery removeClass attribute. Then we will add the “current” class to the clicked list element and DIV tab with the grabbed data-tab ID.

That’s it, now we have working tabbed content with jQuery and CSS. Try it, share it and let me know of your thoughts in the comments. If you need to add any additional functionality, feel free to ask in the comments.

contact us

How to Create Pure CSS Accordion

In this tutorial, I’ll create a CSS Accordion without using any jQuery or Javascript. As I mentioned in my previous post “An easy way to create Tabbed Content with jQuery & CSS” displaying a lot of information on one page is a bit difficult and we can use tabbed content or accordions to achieve the same without compromising on user experience.

We can always use jQuery to include nice effects on our css accordion. However, we are going to create a pure css accordion that will work on any browser, with or without javascript enabled.

Lets start with writing some HTML Code. We will use UL (unordered list) element to create our pure css accordion.

HTML Code for pure CSS Accordion:

<ul id="accordion">
  <li>
    <h2>Title One</h2>
    <div >
      Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
      tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam.
    </div>
  </li>
  <li>
    <h2>Title Two</h2>
    <div >
      Tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
      quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo.
    </div>
  </li>
  <li>
    <h2>Title Three</h2>
    <div >
      Quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
      consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse.
    </div>
  </li>
  <li>
    <h2>Title Four</h2>
    <div >
      Consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
      cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
      proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
    </div>
  </li>
</ul>

As you can see, I have a UL element and added a class named “accordion”. Within the LI element, I have H2 and a DIV tag with class “content”. And we will play with the CSS display attribute to create our pure css accordion.

Lets write some CSS code to stylise the same and hide our DIV.content within the LI tags.

CSS Code for pure CSS Accordion:

#accordion{
    width: 600px;
    margin: 0px;
    padding: 0px;
    list-style: none;
}
#accordion h2{
    font-size: 12pt;
    margin: 0px;
    padding: 10px;
    background: #ccc;
    border-bottom: 1px solid #fff;
}
#accordion li div.content{
    display: none;
    padding: 10px;
    background: #f9f9f9;
    border: 1px solid #ddd;
}
#accordion li:hover div.content{
    display: inherit;
}

As you can see in above code, we have used display: none for the div.content and on li:hover we have used display:inherit . The div.content is within the list element so this trick would work. If our div.content would have been outside this panel, we would have used jQuery to achieve the same.

Very soon, I’ll explain to achieve the same with jQuery and will use some nice animation as well.

contact us

Best Website Designing Services

Up To Date Website Design Trend 2022

Website Design changes throughout the years. Certain plan patterns and components can in a split second make your website resemble a relic from the times of web past. Staying aware of website architecture patterns will assist you with keeping your webpage looking current and professional. Due to COVID-19, the virtual employee is more in demand and working remotely. In 2022, the specialized prospects appear to be perpetual and we’re seeing fashioners play with limits, re-examine past styles and incessantly try different things with new procedures. Simultaneously, some mainstream styles just won’t disappear, for example, the ever-present moderation and bright level representations we’ve been seeing for quite a while. Here is the rundown of most recent patterns by IOGOOS SOLUTIONS which is a leading website designing Company, Laravel Company, the best team of Shopify Experts, known for affordable SEO Services, Digital Marketing Services provider, and many more.

Website Designing Company


1.Color Schemes

Color Schemes will be a stage forward in the isometric pattern in website architecture. Sparkling, neon hues, for example, blues, purples, and pinks will make your site look present day and cutting edge. Combined with more profound and darker shades, these radiant hues will jump out from screens, fashioning an intense and brave appearance of your site. We as a Laravel company provides a variety of color schemes.

2.Videos

Smart Video has for some time been promoted as an unquestionable requirement has for websites. It’s the best web-based advertising tool. While the video is extraordinary, it should be thoroughly considered. That is the thing that a keen video is about: video with reason and
significance. Gone are the times of inserting a YouTube video on your site just to have one. One very much idea out, a great video is better than twelve erratically amassed ones.

3.Solid Frames of White Space

Full drain formats have been slanting in website design for a long while. Presently, designers are floating towards strong structures and playing with various approaches to utilize bunches of white space to give their plans more structure and utilize clean encircling to give their plans solidness and a canvas to bounce off of. In 2020, we’ll see wide casings of white space giving website design a strong structure. Conveniently organized edges around sites make a wonderful feeling of request and help organize and separate all the various pieces of a page.

4.D Elements

3D components are fun, drawing in, and will in general keep guests longer on the website. Depth adds to the feeling of authenticity, a quality that can be particularly useful for online business, where 3D symbolism can be used in introducing items from different points of view or
in handy use.

3D components in Website Designing Company offer a sensible look and make a sentiment of physical nearness. Notwithstanding moving the client, 3D configuration can assist them with settling on educated choices. For instance, they can survey the item’s properties.3D has an advanced and a smidgen of a modern touch, which improves enthusiasm for your image and the general impression.

5.Material Design

Material design is a structured language that was presented by Google in 2014. The conventional website design looks level. Material structure is tied in with utilizing shading and shadows to imitate the physical world and its textures. Google’s symbol for its product suite is
an amazing case of material design. The shadows on the Gmail envelope and the schedule are particularly genuine instances of material structure. It’s unpretentious yet goes far in making the symbols look three-dimensional.

6.Dark Mode

Dark mode deeply inspired the online world level out, with top applications and sites, for example, Facebook Messenger, YouTube, Instagram, Viber, WhatsApp, and Chrome, just as the most recent arrivals of Android and Apple working frameworks, killing the lights one after another. The shading plan’s notoriety lies in its various advantages, from offering clients a more rich and smooth workplace to decidedly influencing the gadget’s battery life and vitality utilization.

7.Data Visualization

Utilizing data visualization exploits the way that people are visual animals, and still passes on the message you have to get over. Data visualization makes pictures out of your information that draws in your pursuer and makes them need to get familiar with your image. Infographics and diagrams are probably the most famous approaches to rejuvenate information.

Conclusion

These are a couple of significant patterns that will impact sites this year. This is the ideal opportunity to act brilliantly and see where your site remains in the market. Eye-catching visuals and hues, 3D impacts, and old patterns revaluated are on the whole away from this new 2020 style. This development stretches out past the screen also, with current website architecture underlining easier to understand webpage encounters, similarly as with moderate route and less eye-stressing dark plan. For every industry, applying the best framework is significant. It becomes important to choose a proficient website designing company.

How can Best Website Design help you to get More Business?

You can compare a website with the plant’s roots. As the root holds the whole plant to the ground and provides all the required nutrition and promotes the growth, in the same sense having the best-designed website work as root for your business which connects you with the world of the Internet and provides business. A successfully designed website will help to keep your business alive and establish it on the internet. This will attract more and more visitors and increase sales, visibility, and growth of your organization.

So, in simple lines, you need to have a website with a solid base and best designs so that you can open the doors of the internet for your business.  Hiring a professional website design company or custom website design company can help you to achieve this goal.

IoGoos Solution is a web design company and understands the importance of having SEO friendly website designs. A well-designed website provides benefits for your business:

Branding – With the help of good designs, your website creates a positive impression among your visitors and helps in building your brand image.

Increase in Conversation rate – It is not always possible for clients to visit your office for all deals, here your website is the platform which should be perfect to convert a visitor into a client and provide all relative information’s.

Online Marketing –  You need to not advertise yourself on TV or paper pamphlets. Your website can work as a promotion engine for your business.

Now, let us talk about how to build a website that should be perfect in all aspects:

Web Design Services in India – The Digital face of any Company

It can be compared to your drawing room which is the most important area of your home which should be perfect and well managed whenever any guest comes in. Just in the same way, the homepage of any website should be the center of the masterpiece. When any user searches for your product, they may land up on another page, but the overall look of the site is judged by the great looks of the website homepage and your web design company should focus on such things.

When the visitor comes on your website and they face trouble in finding what they need (maybe contact us section, or about the company, services, social media connections, or anything), the first thing will happen is that they will leave. Later they may say to others the same thing. Take an example of Flipkart & Amazon: Flipkart is much easier to use & well managed as compare with Amazon. We as being a creative web design company have knowledge of it. When it comes to designing a company website following things should be kept in mind:

  •  The homepage should answer “Who We Are? What We Do?  & What Can You Do Here?”.
  • It should be designed by taking the targeted customers’ groups in mind.
  • Website Homepage Design must be able to compel visitors so that they stick around.
  • The homepage should be mobile optimized.
  • Call to action feature should be there which tells the user what should be his or her next step to connect with you or buy any product.
  • It shouldn’t always be the same… The website Homepage must be in continuous change as per the specific occasion. Like in Diwali, Holi or Eid it should have some touch of that festival to make it more live and attractive
  • Your website should be up to the market standards and build trust, communicate your organization values and navigate users for the next step.
  • You must use the right colors & images, perfect layout, whitespace, and other necessary elements to make it more user-friendly & beautiful.
  • By adding a website travel guide you can help users to understand about features and sections of your website.
  • Until the market doesn’t know about your website, it is of no use. It is a must to promote your website so that you can start getting traffic. Use methods of SEO, pay per click (PPC) or social media marketing to see fast and best results. Online Promotion should be an essential part of your business from the beginning.

IoGoos Solution offers the top web design services in India & can help you to design the best website with the perfect homepage which can hold your visitors and convert them to customers.

User-Centric Website Designing

If you are looking for website designing and want to make it as per your specific targeted audience with the best looks, you should adopt the best UI/ UX designers to provide the best user experience.

UI and UX are not the same things but yes, they are interconnected and approx. same in nature. This use to check if your website is built by considering the user-centric environment. They are tools that help in designing a beautiful masterpiece, provide easy navigation to visitors & high functionality of your website. This attracts more and more visitors from your targeted market area towards your webpage and holds visitors for a longer duration by encouraging them to visit one page to another.

While creating UX designs, one should focus on sections like layout creation for menu and homepage, allocating buttons positions, providing easy navigation, shopping cart usability, and other website related tools that visitors may need. Later for more encouragement of users, UI designers provide a simple and interacting interface so that your website can easily communicate with the user. It referees to the uses of visually appealing and contains sections like buttons, links, and other tools.

IoGoos Solution is an affordable website design company that can help you to build a successful Web Design Services.

Enquiry Now

When We Work Together

We can create something incredible

arrow
HQ INDIA
HQ INDIA
C-31, Milap Nagar,
Uttam Nagar, New Delhi,
Delhi 110059
USA
USA
6715 Backlick Rd Suite 202
Springfield,
VA 22150, USA
AUSTRALIA
AUSTRALIA
2/51, Lane Cres,
Reservoir, VIC
3037, Australia
CANADA
CANADA
61 Payzant Bog Road, Falmouth, NS, B0P 1P0, CANADA
UK
UK
3rd Floor, 131 City Road, London, EC1V 2NX, United Kingdom
UAE
UAE
Boutik Mall, Al Reem Island - Abu Dhabi, UAE
X

Let Us Call You Back

  • India+91
  • United States+1
  • United Arab Emirates+971

Your phone number is kept confidential
and not shared with others.