Forum Replies Created
-
AuthorPosts
-
Hi,
Instead of using the Image layer, you can use the div/video, paragraph, span layers. You can add the image using html tag.
<img src="YOUR IMAGE URL HERE" />
Regards,
Ismael
Hi,
I’ll tag Kriesi. It is happening on my end once you click a “tag” link.
For the meantime, you can hide using this on your Quick CSS:
.tag #recent-posts-4 {
display: none;
}Regards,
Ismael
Hi,
You can’t click the link because of the “fbSEOComments” div. Did you add a plugin?
Please add this on your custom.css or Quick CSS
div#fbSEOComments {
z-index: -1;
}Regards,
Ismael
Hi,
1.) Add this on your custom.css or Quick CSS
#top .widget_nav_menu ul ul li:before {
content: "";
}To remove the indent, use this:
#top .sidebar_left .widget_nav_menu .sub-menu {
padding-right: 0;
}2.) The menus are already aligned to the right.
3.) I’m sorry but I don’t understand clearly. Please give us a screenshot.
Regards,
Ismael
Hi,
You can use this:
.main_color h3.widgettitle {
color: black;
}
.main_color .sidebar a, .main_color .news-time {
color: black;
}Regards,
Ismael
Hi,
You can add this on your custom.css or QUick CSS
.post-meta-infos {
display: none;
}Regards,
Ismael
August 15, 2013 at 2:07 am in reply to: Issue with mobile responsiveness. Tables, Headings and Sliders #135364Hi,
There is still no fix on instances where you rotate the iPad then don’t refresh the page.
To fix the special heading, you can use this on your custom.css or Quick CSS:
@media only screen and (max-width: 767px) {
.av-special-heading h3 {
font-size: 14px;
}
}Regards,
Ismael
Hi,
Please update your theme to 1.9.1. Download the latest update on your themeforest account.
You can adjust the header height using this:
/*header with social icons: */
.social_header #header_main .container, .social_header .main_menu ul:first-child > li a { height: 116px; line-height: 116px; }Adjust the height and the line-height.
Regards,
Ismael
Hi,
You can place it on includes > loop-index.php, find this code:
echo "<div class='".implode(" ", get_post_class('post-entry post-entry-type-'.$post_format . " " . $post_class . " ".$with_slider))."'>";
Below, add the banner code:
echo '<div class="posts_banner">YOUR BANNER HERE</div>';
or if you are using an image, you do something like this:
echo '<div class="posts_banner"><a href="URL HERE"><img src="IMAGE URL HERE"></a></div>';
It will show on all blog posts.
Regards,
Ismael
August 15, 2013 at 1:34 am in reply to: portafolio grid ajax and functionality likes "accordion" #135300Hi,
You can use this to hide the preview image:
.ajax_slide .av_table_col.first.portfolio-preview-image {
display: none;
}Cheers,
Ismael
Hi,
We can help you better if you can give us a live site with the menu issue.
Please remove browser cache then reload the page. Remove any of your plugins or deactivate them.
Regards,
Ismael
Hi,
Can you give us a link to your website? You can use Media Queries to remove the play button overlay when viewing on iPad or iPhone.
@media only screen and (max-width: 767px) {
.image-overlay.overlay-type-video {
display: none !important;
}
}Add the code on your custom.css or Quick CSS
Regards,
Ismael
Hey,
It will be lost on your update. Please create a change log so that you can easily monitor the files that you change or use a child theme.
No, you can’t do it via CSS.
Regards,
Ismael
Hi,
You can use this for the first H2
#industries a:nth-child(1) h2 {
color: red;
}Second H2:
#industries a:nth-child(2) h2 {
color: green;
}Please put the last H2 “REVENUE MANAGEMENT FOR MEDIA COMPANIES” inside an anchor tag then change the style using this:
#industries a:nth-child(2) h2 {
color: pink;
}Regards,
Ismael
Hi,
It looks ok when I load it on IE. Please see the screenshot.
Very nice gallery. :)
Regards,
Ismael
Hi,
You can add this:
@media only screen and (max-width: 989px) and (min-width: 768px) {
.responsive .main_menu ul:first-child > li > a {
padding: 0 8px;
font-size: 12px;
}
}Regards,
Ismael
Hey,
You can add this on your custom.css or Quick CSS:
#header_main {
background: black;
}There are also predefined theme colors on Enfold > Styling.
Regards,
Ismael
Hi,
It is not happening on our end. Please give us a link to the website with the breadcrumb css issue.
Regards,
Ismael
Hi,
You can add this on your custom.css or Quick CSS:
.main_color, .container.template-blog, #main, .html_stretched #wrap_all {
background: transparent;
}
.content.nine.alpha.units {
background: white;
padding-left: 50px;
margin-left: -50px;
}
#top #main .sidebar {
background: white;
padding-right: 50px;
left: 50px;
}Regards,
Ismael
Hi,
I’m sorry but I don’t understand. What does it suppose to look like? Can you give us a mockup or a screenshot?
Regards,
Ismael
August 14, 2013 at 2:54 am in reply to: Change the margin width to the main content area and side bar #134939Hi,
You can add this on your custom.css or quick CSS:
.boxed .container {
margin: 0px 10px;
}
.container {
position: relative;
width: 990px;
}
@media only screen and (min-width: 1140px) {
.responsive .container {
width: 1110px;
}
}
@media only screen and (max-width: 989px) and (min-width: 768px) {
.responsive .container {
width: 762px;
}
}Regards,
Ismael
Hi,
@yulchik31: You should update your Choices theme to 1.9. It will fix the slider issues. Download the latest version on your themeforest account.
Regards,
Ismael
Hi,
Can you give us a link to your website? Please add this on your custom.css or Quick CSS:
@media only screen and (max-width: 989px) and (min-width: 768px) {
.responsive #top #header {
position: fixed;
}
}Regards,
Ismael
Hi,
Instead of using the Image layer, you can use the div/video, paragraph or the span. Use html tag to insert an image.
<img src="YOUR IMAGE URL HERE">
Regards,
Ismael
-
AuthorPosts