Forum Replies Created
list of topics you have created till now.
-
-
We will add an option to easily change the primary green color to anything else in the next update, which is coming in a few days.
well this is the natural way to place images in a resposive design, but you may control them via media queries for different screen sizes.
images are flexible, they fit screen width auto.
Hi, try this custom css;
body.single-post #main > .row { max-width: 1200px; }Hi, check the link below and see if it useful for you.
http://www.pixelwars.org/forums/topic/customize-font-change-portfolio-img-alignment-etc/
Hi, we don’t support IE7, it is trash. I just checked your site on IE8, it looks fine on my side.
Hi, html5 has powerful sectioning elements and each section may have own h1 tag. This is not bad for SEO. You don’t need to change the markup at all.
Hi, try this custom css code;
.hentry { padding: 1em 0 1.0em 0; } .site-header .social { margin: 0 0 1.4em 0; } .site-header hgroup { padding: 1em 0 .4em 0; }try this custom css;
@media (max-width: 767px) { .entry-content p span { font-size: 14px !important; } }Hi, it can be possible but it requires more hard work, we can only provide customizations of some lines of code. You can hire someone experienced to do the job for you, if you are not familiar to wordpress-html coding.
i just made some fixes on the layout, we will release an update in a few days.
ahmetsali
Keymaster22 October 2013 at 12:13Posted in : v1.1 front page loading incorrectly in chromewhat is your test platform and browser version?
Hi, i will check the issue whenever i get the chance to test on windows phone 7.8. Thanks for the feedback.
It is the default behavior of a responsive theme, and “Read” is a responsive theme and it should adapt itself to mobile view automatically, do you have any problem about that, then provide a url and see what’s wrong.
update the code as;
@media (min-width: 768px) and (max-width: 1025px) { .wrapper.middle > .row { width: 92%; } }Hi, just to be sure, do you want your site to be in mobile view always, even in desktops?
ahmetsali
Keymaster16 October 2013 at 18:55Posted in : v1.1 front page loading incorrectly in chromeHi, i had fixed that problem in v1.0.1
1-) What version were you using before updating the theme to v1.1, are you having the same problem then ?
2-) Does this occur on our preview site ?
Hi, try this custom css;
#nav > li { background: #333; background: url(../img/background/texture-dark.jpg); } #nav > li > a { color: #fff; text-shadow: 0 1px 0 #000; }Hi, i don’t have any device to test on windows phone yet, but i will test it on windows phone when i get the chance.
Hi, try this custom css;
@media (min-width: 768px) and (max-width: 979px) { .wrapper.middle > .row { width: 92%; } }Hi, try this custom css;
.comments-area { padding-top: 0;}to remove the gap between header and content try this custom css;
.site-header { padding-bottom: 0; margin-bottom: 2em; }Hi, this theme detects if 3d animations are supported, if not displays classic(also mobile) layout.
Hi, you can add your gallery-single page link to directly menu.
try this one;
.main-navigation { margin-top: 100px; }it is because IE doesn’t support css3 capabilities to show 3d book layout. So it displays classic layout.
your portfolio single pages are different than the default one. For example there shouldn’t be
main.jsattached to portfolio single page as our demo site.http://themes.pixelwars.org/bookcard-wp/portfolio/happy-bear/
Hi, if you add Google Analytics code to head section in Templates/layout.dwt file, it will be applied to all page if you are using dreamweaver. If not you have to add the code to every page manually.
Hi, try this custom css code;
.alert { text-align: justify;}Hi, try this custom css;
.site-header { background-image: url("your-image-url.jpg"); }He, we add this feature to next update (about in a week). Thanks for the feedback.
Hi, in your url you are using a custom markup than portfolio page;
http://themes.pixelwars.org/read-wp/portfolio/
normally on portfolio page there are 5 items per row.
Hi, we will release an update in a week, in which you can select clean (no background) for page backgrounds. Thanks for the feedback.
Hi, can you provide your url to see what’s wrong.
Hi, try this custom css;
h1.site-title a { font-style: bold; font-style: italic; }Hi,
Firstly go to Theme Options / Style / Footer Widget Locations / No
then use this custom css;.row-fluid.page > article { padding-bottom: 0; }ahmetsali
Keymaster8 October 2013 at 21:29Posted in : Changing Mobile Icons – And other suggestions.1-) try this custom css;
#header nav ul a { line-height: 44px; } #header nav ul li a:after { font-size: 12px; display: block; margin-top: -20px; } #header nav ul li:first-child a:after { content: "BACK"; } #header nav ul li:nth-child(2) a:after { content: "RESUME"; } #header nav ul li:nth-child(3) a:after { content: "PORTFOLIO"; } #header nav ul li:nth-child(4) a:after { content: "CONTACT"; }2-) go to Appearance > Editor > page_inner-front_cover.php
find the line;<!-- open link --> <a class="rm-button-open ribbon" href="#/resume">
change the resume word to portfolio.
in resume page Employment / Graphic Design Assistant under the list you have not closed the
ulelement.Hi,
well this design is best viewed in portrait mode on mobile devices, nothing much to do in landscape mode for front page.Hi, it looks like you have something wrong in your page content, unclosed html tags stc… See the markup errors below;
url not found.
Hi, ad container div has margin top as inline style, that make it not aligned with paragraph. If you can remove that margin top value it will look good.
<div style="float: left; margin: 10px 10px 10px 0;">
if you can change it to something like this;
<div style="float: left; margin: 0 10px 10px 0;">
Hi, try this custom css;
h1.site-title a { border-bottom 0; } .site-header hgroup { padding: 1em 0 0 0; } h1.site-title { margin-bottom: 0; line-height: 1; }ok, the markup is generated by javascript in
main.js, you need to update yourmain.jsfile, it is old.Hi, you can style the first paragraph of the content to look like the image’s caption.
if you can provide a url i can check what’s wrong.
Hi, go to Theme Options > Animation tab and check “Always show scrollbar”;
http://themeforest.net/theme_previews/3347567-impressivcard-wp-responsive-html5-vcard?index=2
Hi, try this custom css;
.cover h3 span { color: #D45848; }Hi, paste the code below to the External JS box;
<script> jQuery(document).ready(function($) { var $items = $('.portfolio-items'); $('#filters li').each(function(index, element) { var filter = $(this).children('a').attr('data-filter'); if(filter == "*") $(this).append(" (" + $items.children('div').length + ")" ); else $(this).append(" (" + $items.find(filter).length + ")" ); }); }); </script>Hi, try this custom css;
.blog-post h3 { color: #B00;}