clubbinside
Forum Replies Created
-
Make sure that MAMP is running. If i may suggest, WAMP package seemed to prove more reliable for me… google to see the difference..
Forum: Fixing WordPress
In reply to: Add link around list items in category widget?<li><a href="#">Something</a></li>or to create yourself a simple button as follows (copy and paste it to your css file, then upload/save it)
.btn { background: #3498db; background-image: -webkit-linear-gradient(top, #3498db, #2980b9); background-image: -moz-linear-gradient(top, #3498db, #2980b9); background-image: -ms-linear-gradient(top, #3498db, #2980b9); background-image: -o-linear-gradient(top, #3498db, #2980b9); background-image: linear-gradient(to bottom, #3498db, #2980b9); -webkit-border-radius: 28; -moz-border-radius: 28; border-radius: 28px; font-family: Arial; color: #ffffff; font-size: 20px; padding: 10px 20px 10px 20px; text-decoration: none; } .btn:hover { background: #3cb0fd; background-image: -webkit-linear-gradient(top, #3cb0fd, #3498db); background-image: -moz-linear-gradient(top, #3cb0fd, #3498db); background-image: -ms-linear-gradient(top, #3cb0fd, #3498db); background-image: -o-linear-gradient(top, #3cb0fd, #3498db); background-image: linear-gradient(to bottom, #3cb0fd, #3498db); text-decoration: none; }and set the class to “btn” as follows:
<li ><a class="btn" href="#">Button</a></li>hope this helps.
Forum: Fixing WordPress
In reply to: Help installing themes via wordpressrozon, most of the hostings nowadays offer 1 click wordpress installation… 🙂
Forum: Fixing WordPress
In reply to: Help installing themes via wordpressdid you try to read this?
Forum: Fixing WordPress
In reply to: Category problemHi Krishna,
thanks for your time to look at the site. I am not having issues with the permalinks, and the reason why you still see hotels when you click on categories, because you are basically redirected to the index… 🙁Forum: Fixing WordPress
In reply to: How can I put a logo in the header?with a FTP client such as Total Commander… Where do you keep your website?
Forum: Fixing WordPress
In reply to: Category problemhttp://dev.atesz.co.uk/wordpress/
sorry, the link was missing. 🙂Forum: Fixing WordPress
In reply to: How can I put a logo in the header?<a href="<?php echo get_option('home'); ?>"><img src="<?php bloginfo('template_url'); ?>/img/logo.png" title="<?php bloginfo('title'); ?>"></a>sorry, mistaken
Forum: Fixing WordPress
In reply to: How can I put a logo in the header?“><img src=”<?php bloginfo(‘template_url’); ?>/img/logo.png” title=”<?php bloginfo(‘title’); ?>”>
by putting a line like this in between your <head></head> tags. Make sure that your image is uploaded to the theme folder. You can always change that if your img folder called fe: images
hope it helps