Forum Replies Created
-
AuthorPosts
-
Hey,
Yes, it will override the default wordpress frontpage settings and blog settings.
Regards,
Ismael
August 14, 2013 at 2:17 am in reply to: Missing blog post and fatal error when trying to login to wp dashboard #135158Hi,
You’re looking at a plugin error created by the Media Category Library plugin. Please deactivate it. Please contact the plugin author to fix the issue.
Regards,
Ismael
August 14, 2013 at 2:14 am in reply to: Continuous background image and page-specific backgrounds #135101Hi,
Edit the Easy Slider and select an image then click the thumbnail again, scroll a bit below. Look for Slide Link?, select “Set Manually” then supply the url.
Regards,
Ismael
Hi,
You can change the blog post title using this:
h2.post-title a {
font-size: 30px;
}The main title, using this:
.main-title a {
font-size: 40px;
line-height: 60px;
}Regards,
Ismael
Hi,
You mean the Color Sections? Edit the Color Section, add a unique css selector under “For Developers: Section ID” field. For example, “awesome-section”. Use it on your custom.css or Quick CSS to define the height of the section.
#awesome-section {
height: 500px;
}Regards,
Ismael
Hi,
Edit framework > php > class-form-generator.php, find this code on line 434:
$this->elements_html .= ' <textarea name="'.$id.'" class="text_area '.$element_class.'" cols="40" rows="7" id="'.$id.'" >'.$value.'</textarea>';
Change rows to 2 or 3.
Regards,
Ismael
Hi,
Edit includes > loop-index.php, find this code:
echo "<span class='date-container minor-meta'>".get_the_time('d M Y')."</span>";
Replace it with:
echo "<span class='date-container minor-meta'>".get_the_time('Y/m/d')."</span>";
Regards,
Ismael
Hi,
You can use Google chrome then click “Inspect Element”. Look for the page body css selector.
This page has the id .page-id-2251. You can use it to target that page’s header or any other elements within the page.
.page-id-2251 #header_main {
background: red;
}Regards,
Ismael
Hi,
Where are the grey lines? I don’t really see it. A screenshot will help.
Regards,
Ismael
Hi,
You have version 1.8.4. Please download 1.9.1 on your themeforest account. This will fix the slider issues.
Regards,
Ismael
Hey,
Just add this:
.entry-content li {
font-size: 14px;
}Adjust the font size.
Regards,
Ismael
Hi,
I tested the theme and the icons show properly on Safari browser. I’m using a Windows machine. Let me tag this to Devin and Kriesi.
Regards,
Ismael
Hi,
Sorry for that. Did you remove the browser cache then reload the page after you applied the code above?
Can you give us a link to your website? We need to inspect it.
Cheers,
Ismael
August 13, 2013 at 8:11 pm in reply to: Second link in post with Link Format gets stripped out #134859Hi,
You can do this instead. Edit includes > helper-post-format.php, find these code on line 200 and 208:
$current_post['content'] = str_replace($link, "", $current_post['content']);
Remove it.
Regards,
Ismael
Hi,
Add .blog, or the page id of your blog page.
.blog .image-overlay.overlay-type-extern {
display: none !important;
}Please give us a link to your blog page.
Regards,
Ismael
Hi,
You can use this:
#top .alternate_color.title_container .main-title a {
color: #990000;
}Regards,
Ismael
Hi,
On what part of the LayerSlider are you trying to use the image?
Regards,
Ismael
Hi,
@Hanniball: Please give us a link to your shop page. You can add this on your custom.css or Quick CSS
.woocommerce .sidebar {
display: none !important;
}
.woocommerce .template-shop.content.nine.units {
width: 1030px;
border: none;
}
@media only screen and (max-width: 989px) and (min-width: 768px) {
.woocommerce .template-shop.content.nine.units {
width: 760px;
}
}
@media only screen and (max-width: 767px) and (min-width: 480px) {
.woocommerce .template-shop.content.nine.units {
width: 100%;
}
}Regards,
Ismael
Hi,
1.) You can add a unique css selector on the Attributes panel then apply the hover state on your Quick CSS or custom.css.
2.) I’m sure this is possible but a bit complicated and is beyond of what we can do as a support team. Please hire a freelance developer to modify the Layer Slider for you.
Cheers,
Ismael
Hi,
You can change specify the minimum height of the contact form fields:
#top .ajax_form .text_input, #top .ajax_form .select, #top .ajax_form .text_area {
min-height: 100px;
}You can find the css style of the form on css > base.css > #Forms.
Regards,
Ismael
Hi,
What do you mean the “picture inside the scrollable area”? Can you give us a screenshot or a link to the page?
Regards,
Ismael
Hi,
You can add this on your custom.css to increase the width of the post content.
#top .fullsize .template-blog .post .entry-content {
max-width: 1024px;
}
#top .fullsize .template-blog .post .entry-content > * {
max-width: 1024px;
margin-left: auto;
margin-right: auto;
}Regards,
Ismael
-
AuthorPosts