Forum Replies Created
-
AuthorPosts
-
Hi,
Re-size the logo first using Paint or Photoshop. Suggested logo size is 200px * 100px. Go to Theme Options > upload the logo. When the upload is finish select which size you want to use before clicking the “Use Image as Logo”.
Regards,
Ismael
Hi,
What is the code that you have right now, the code that Nick gave you? What header style do you have?
Let me tag Nick.
Regards,
Ismael
Hi,
What do you mean by lost http? When I click on the link I am redirected to hotmail.
Please give us a link to your website and probably a screenshot.
Thanks,
Ismael
Hi,
I don’t really see anything wrong on the website. I have a 1600×900 resolution screen and even when I resize the browser to any specific size, the site looks good without the portfolio images overlapping. These are the list of screen sizes, normally use on homes, offices etc.
800 x 600
1024 x 600
1024 x 768
1366 x 768
1280 x 600
1280 x 800
1280 x 960
1280 x 1024
1440 x 900
1600 x 1200
1920 x 1080
1920 x 1200I tested the site on each resolution and the portfolio looks fine. I don’t really think a user will re-size his browser to 1200px deliberately.
Regards,
Ismael
Hi,
If you only want to target the portfolio thumbnails, you should change this line of codes
$avia_config['imgSize']['portfolio'] = array('width'=>495, 'height'=>400 ); // images for portfolio entries (2,3 column)
$avia_config['imgSize']['portfolio_small'] = array('width'=>260, 'height'=>185 ); // images for portfolio 4 columnsYou may need to edit some css because it will probably resize the thumbnail but the thumbnail will inherit the size of the portfolio container.
Regenerate the thumbnails with http://wordpress.org/extend/plugins/regenerate-thumbnails/.
Regards,
Ismael
Hi,
I tested this on the localhost and it works perfectly fine. Please try to insert an image and select any images on the Media Library.
Do you have the latest version of Enfold? Please download it on your themeforest account.
We suggest to build the site with the Enfold theme online to avoid configuration and database lost later.
Regards,
Ismael
Hi,
If you have a four column portfolio, you can add this on your custom.css or Quick CSS
.grid-entry.no_margin.av_one_fourth {
width: 24%;
}3 columns should be like this
.no_margin.av_one_third {
width: 32.3%;
}2 columns, add this
.no_margin.av_one_half {
width: 49%;
}This will add a 1% margin between the items.
Regards,
Ismael
Hi,
I think this is what you want.
.active-parent-item a {
color: red !important;
font-weight: bold !important;
}Regards,
Ismael
Hi,
You can style the Gravity Forms font with this
.gform_wrapper {<br /> font-family: Arial !important;<br /> font-size: 14px !important;<br /> color: red;<br /> }Regards,
IsmaelHi,
Can you give us a link to your contact page? You can actually target the checkbox then add a style to it when empty. Mine looks like this
.error#element_avia_check_1 {
border: 1px solid red;
}This will only be applied when the user leave a required checkbox empty. You might need to add the style on each checkbox that you have.
Regards,
Ismael
Hi,
Sticky footers tends to break the responsiveness of the site. There are certain techniques that you can use to make a sticky footer. You might want to look into that. It means breaking the default layout of the theme though. In my honest opinion, who needs a blank page anyway?
Regards,
Ismael
Hey,
@joe88. On Appearance > Widget, look for Footer – column1, Footer – column2, 3 then 4. Supply that with widgets after you imposed on Theme Options > Footer, and select 4 column footer widgets.
Regards,
Ismael
Hi,
Can you give us a link to your website?
What type of header are you using?
Regards,
Ismael
Hi,
It depends on what device you are trying to target. You only need this if you’re trying to target screens with 959px resolution and lower that includes iPad, iPhone and other mobile devices.
/* Smaller than standard 960 (devices and browsers) */
@media only screen and (max-width: 959px) {
@font-face {
font-family: 'BebasNeueRegular';
src: url('http://localhost:8888/wordpress/wp-content/themes/enfold-child/fonts/BebasNeue-webfont.eot');
src: url('http://localhost:8888/wordpress/wp-content/themes/enfold-child/fonts/BebasNeue-webfont.eot?#iefix') format('embedded-opentype'),
url('http://localhost:8888/wordpress/wp-content/themes/enfold-child/fonts/BebasNeue-webfont.woff') format('woff'),
url('http://localhost:8888/wordpress/wp-content/themes/enfold-child/fonts/BebasNeue-webfont.ttf') format('truetype'),
url('http://localhost:8888/wordpress/wp-content/themes/enfold-child/fonts/BebasNeue-webfont.svg#BebasNeueRegular') format('svg');
font-weight: normal;
font-style: normal;
}
h6 {
font-family: BebasNeueRegular, Geneva, Arial, Helvetica, sans-serif !important;
font-size: 80pt !important;
margin-bottom: 20px !important;
letter-spacing: -0.0em !important;
font-weight:200 !important;
}
}Regards,
Ismael
Hi,
I’m sorry but I’m not sure what is wrong with it even with the screenshot you provided. I tested the accordion on my end and it is working fine. Do you have Enfold 1.4?
Regards,
Ismael
Hi,
To change the background of the top header completely, you can use this
#header_meta {
background: red;
}To change the color of the menu font use this.
.header_color .sub_menu > ul > li > a {
color: blue;
}And the hover color, with this
.header_color .sub_menu > ul > li > a:hover {
color: black;
}Change the color value.
Regards,
Ismael
Hi,
I’m sorry but what do you mean by “caps” and what heading are you trying to change? Please give us a screenshot or give us a link to the page.
Regards,
Ismael
Hi,
You’re welcome. :)
Try to use this
.avia-icon-list .iconlist_icon {
border-radius: 300px;
}You may want to see the borders clearly, test it with this. Adjust the border width.
.avia-icon-list .iconlist_icon {
order-width: 3px;
}Regards,
Ismael
Hi,
Add this on your custom.css
.news-thumb {
border: none;
}To resize the thumbnail, go to functions.php then find this code
$avia_config['imgSize']['widget'] = array('width'=>36, 'height'=>36); // small preview pics eg sidebar newsAdd this on your custom.css. Change the width and height according to the thumbnail size then regenerate the thumbnails.
.image_size_widget .news-thumb {
height: 36px;
width: 36px;
}Regards,
Ismael
Hi,
It should be there automatically, there is no option to turn it on or off but you can hide it through css. Maybe the slider is covering it. Try this on your custom.css
#top .avia-post-nav {
z-index: 9999;
display: block;
}Regards,
Ismael
Hi,
Try this on your custom.css
html{
background-color: red;
}Leave a page without content and display the socket without the footer. You’ll see what Devin is trying to say. You need to push the socket with contents.
Regards,
Ismael
May 16, 2013 at 1:29 am in reply to: Gallerie 710px breite im Post nicht richtig dargestellt #119309Hi,
Add this on your custom.css
.template-page .big-preview {
display: block;
padding: 0 0 10px 0px;
}Regards,
Ismael
-
AuthorPosts
