Forum Replies Created
-
AuthorPosts
-
Hi,
It is not the same menu. They sure look the same but they are different. It is not even wordpress.
Regards,
Ismael
Hi,
Please check footer.php, go to line 167, the code should look like this
<a href='#top' id='scroll-top-link' class='avia-font-entypo-fontello'>& #59231;</a>
I added a space after the & symbol to render it correctly here. The actual code don’t have a space.
Regards,
Ismael
Hi,
This plugin works for post types.
http://wordpress.org/plugins/post-types-order/
Regards,
Ismael
June 19, 2013 at 4:33 pm in reply to: Advanced layout editor: FULLWIDTH slider + 3 blog posts WITH sidebar #125423Hi,
Set it no sidebar. Insert the Easy Slider on a 1/1 Column. Insert the text block and blog posts on a 2/3 column. Add a 1/3 column, insert a Sidebar element.
Regards,
Ismael
June 19, 2013 at 4:29 pm in reply to: Prevent Logo From Getting Larger on Safari/Chrome on Mac #125419Hi,
What type of Header are you using?
Please send me the logo file on ///.
Include the word “Kriesi” on the subject to avoid spam filter.
Add the link of this thread on your email.
Thanks,
IsmaelHi,
Congratulations! Glad you have your first costumer. :)
I don’t see any Portfolio links on your breadcrumbs. All I see is this:
Sie befinden sich hier:Startseite / Familienrecht / Eheverträge
Maybe, I just don’t understand the question.
Regards,
Ismael
Hi,
You can add something like this on your custom.css OR quick CSS
.more-link {
border-radius: 3px;
background-image: url("/themes/wp-content/themes/enfold/images/layout/bg-button.png");
background-repeat: repeat-x;
background-position: 0 0;
padding: 10px;
font-size: 12px;
text-decoration: none;
display: inline-block;
border-style: solid;
border-width: 1px;
margin: 3px 0;
line-height: 1.2em;
position: relative;
font-weight: 600;
text-align: center;
max-width: 100%;
background: pink;
}Change the property values.
Regards,
Ismael
Hi,
Edit loop-index.php, find this codes
echo "<span class='date-container minor-meta'>".get_the_time('d M Y')."</span>";
echo "<span class='text-sep'>/</span>";
if ( get_comments_number() != "0" || comments_open() ){
echo "<span class='comment-container minor-meta'>";
comments_popup_link( "0 ".__('Comments','avia_framework'),
"1 ".__('Comment' ,'avia_framework'),
"% ".__('Comments','avia_framework'),'comments-link',
"".__('Comments Disabled','avia_framework'));
echo "</span>";
echo "<span class='text-sep'>/</span>";
}
$taxonomies = get_object_taxonomies(get_post_type($the_id));
$cats = '';
$excluded_taxonomies = apply_filters('avf_exclude_taxonomies', array('post_tag','post_format'), get_post_type($the_id), $the_id);
if(!empty($taxonomies))
{
foreach($taxonomies as $taxonomy)
{
if(!in_array($taxonomy, $excluded_taxonomies))
{
$cats .= get_the_term_list($the_id, $taxonomy, '', ', ','').' ';
}
}
}
if(!empty($cats))
{
echo '<span class="blog-categories minor-meta">'.__('in','avia_framework')." ";
echo $cats;
echo '</span><span class="text-sep">/</span>';
}
echo '<span class="blog-author minor-meta">'.__('by','avia_framework')." ";
the_author_posts_link();
echo '</span>';Remove them.
Regards,
Ismael
June 19, 2013 at 4:03 pm in reply to: Background colour of text block and image change on hover #125386Hi,
1.) Can you give us a link to your website? Did you place the text block inside a column? You can use this code, to change the background color.
.flex_column > .avia_textblock {
background: red;
}
First Text Block
.flex_column:first-child > .avia_textblock {
background: green;
}
Second Text Block
.flex_column:nth-child(2) > .avia_textblock {
background: blue;
}
Third Text Block
.flex_column:nth-child(3) > .avia_textblock {
background: pink;
}2.) This is a simple image hover effect. http://www.netmagazine.com/tutorials/create-modern-css3-hover-effects
Regards,
Ismael
June 19, 2013 at 3:30 pm in reply to: Thumbnails are different sizes in my gallery and formatting is bad #125213Hi,
You might have change something on the css?
Override the theme files via FTP.
Regards,
Ismael
Hi,
You can control them with this code, add this on your custom.css or Quick CSS
.avia-slideshow-inner .avia-caption {
bottom: 17px;
left: 150px;
}Adjust the position.
Regards,
Ismael
Hi,
You can create a new sidebar for archive page only.
Create a file name sidebar-archive.php then paste this code http://pastebin.com/9kWRHt9C
Edit functions.php, place this code below to create a new widget area called Archive Sidebar.
register_sidebar(array(
'name' => __( 'Archive Sidebar' ),
'id' => 'archive-sidebar',
'before_widget' => '<div id="%1$s" class="widget clearfix %2$s">',
'after_widget' => '<span class="seperator extralight-border"></span></div>',
'before_title' => '<h3 class="widgettitle">',
'after_title' => '</h3>'
));Edit archive.php, find the code
get_sidebar();
Replace it with
get_sidebar('archive');
Add widgets on Archive Sidebar widget area.
Regards,
Ismael
June 19, 2013 at 9:37 am in reply to: Layer Slider WP on Home Page – Need div to run 100% across the screen #125360Hi,
Add a new layer, select Div/Video then add this code
<div id="caption-container-full"><div class="caption-container-full-center">
THE WORKPLACE OF THE FUTURE</div></div>Set the animation on Options tab to Transition In/Out to Fade, duration to 0.
On Style tab set the following options.
Top: 410px (Adjust this according to the height of your slider)
Padding: 10px for each field (top left right bottom)
Font Size: 40px
Font Color: White
Custom Style Settings: width: auto; display: block; background: rgba(0,0,0,.5); position: relative; bottom: 0; text-align: center;
Then edit custom.css or Quick CSS, add this code
#.caption-container-full {
bottom: 0;
}
.caption-container-full-center {
display: block;
width: 1024px;
text-align: left;
margin: 0 auto;
}You will have a responsive caption container.
Regards,
Ismael
Hi,
Edit header.php, find this code
echo avia_logo(AVIA_BASE_URL.'images/layout/logo.png', false, 'strong');
Add this code below.
echo "<div class='tagline'>".get_bloginfo ( 'description' )."</div>";
You set the tagline or slogan on Settings > General > Tagline.
You can style the container using the .tagline selector.
Regards,
Ismael
Hi,
You should probably start now. :)
Edit css / base.css, find the #Typography section.
You can also add this on your custom.css or Quick CSS.
body {
font-size: 15px;
}Regards,
Ismael
Hi,
I tested it but it is not working.
.content
.pagination
.pagination a:first-child
.post-entry
I think it is not compatible with the theme.
You have the option to show all your portfolio post on a single page by increasing the Post Number.
Regards,
Ismael
Hi,
I’m sorry but I didn’t receive your email.
Please send it on //…
Include the word “Kriesi” on the subject to avoid being filter as spam. Add the url of this thread on your email.
Add the link of the page with the issue.
Regards,
IsmaelHi,
Next update will have the capability to add a custom icon. :)
Thanks @agustin-suarez. :)
Regards,
Ismael
Hi,
To remove the header breadcrumbs, edit function-enfold.php, find this code
if($breadcrumb) $additions .= avia_breadcrumbs(array('separator' => '/', 'richsnippet' => true));
Replace it with:
//if($breadcrumb) $additions .= avia_breadcrumbs(array('separator' => '/', 'richsnippet' => true));
Edit footer.php, find this code
<span class='copyright'><?php echo $copyright . $kriesi_at_backlink; ?></span>
Below, add the breadcrumb code
<?php echo avia_breadcrumbs(array('separator' => '/', 'richsnippet' => true)); ?>
Add this on your custom.css or Quick CSS
.socket_color .breadcrumb {
float: right;
}Regards,
Ismael
Hi,
Can you give us a screenshot of what it looks like on IE?
It looks fine on my end. :)
Regards,
Ismael
Hi,
Edit loop-index.php on includes folder. Find this code
$blog_content = !empty($avia_config['blog_content']) ? $avia_config['blog_content'] : "content";
Replace it with:
$blog_content = !empty($avia_config['blog_content']) ? $avia_config['blog_content'] : "excerpt_read_more";
Regards,
Ismael
Hi,
The code works on my end.
I cannot load your website. I want to check the buttons furthermore.
Regards,
Ismael
June 18, 2013 at 7:36 am in reply to: Thumbnails are different sizes in my gallery and formatting is bad #125211Hi,
Please add this on your custom.css or Quick CS
#top #wrap_all .avia-gallery-1 .avia-gallery-thumb a {
width: 25%;
max-height: 147px;
height: 147px;
}
#top div .avia-gallery img {
height: 100%;
max-height: 100%;
}Cheers,
Ismael
Hi,
Sorry but we don’t support third party plugins like nimble-portfolio. Please install the plugin on a test site then give us the url. Maybe, we’ll be able to give you pointers on some css modifications and basic php plugin modification.
Regards,
Ismael
-
AuthorPosts