Forum Replies Created
-
AuthorPosts
-
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
Hey,
Unfortunately, Peter is on vacation right now. Did the code work?
Regards,
Ismael
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
-
AuthorPosts