-
Search Results
-
Hi
I am creating a one page site using anchor links with the section ID function. But when I click on such a link it scrolls down about 100px to far. How can I give the anchor an absolute position, so that the real beginning of my section is on the top of the window?
Hi there. Wondering of you can help with refining the spacing on the portfolio grid that I have used in two areas – a main portfolio and a projects gallery at the bottom of portfolio pages. The main portfolio page which is on a white background seems mostly fine – although there seems to be some slight overlapping of pixels in the corners (when there is no padding added). The problem is with the footer gallery which is on a dark background and shows an extra pixels spacing. I played around with the code adjusting it to get things right. The thing is it is hard to get it right on both. If I remove the extra pixel on the bottom gallery it messes up the main gallery. Is here a way to adjust these independently?
grid-entry { padding-right: 10px; }
.grid-entry { padding-bottom: 10px; }Also is there a way to have text appear overtop of the image in addition to the overlay?
Thanks very much `april
Topic: Search results in columns
Hi i find the solution to display the search results in columns with this code:
’ve seen a topic where is asking this. This is the answer:1) Insert following code into the quick css field:
.template-search .post-entry {
clear: none !important;
}2) In search.php replace:
if(!empty($_GET[‘s’]))
{
echo “<h4 class=’extra-mini-title widgettitle’>{$results}</h4>”;/* Run the loop to output the posts.
* If you want to overload this in a child theme then include a file
* called loop-search.php and that will be used instead.
*/
$more = 0;
get_template_part( ‘includes/loop’, ‘search’ );}
with:
if(!empty($_GET[‘s’]))
{
echo “<h4 class=’extra-mini-title widgettitle’>{$results}</h4>”;global $posts;
$post_ids = array();
foreach($posts as $post) $post_ids[] = $post->ID;$atts = array(
‘type’ => ‘grid’,
‘items’ => get_option(‘posts_per_page’),
‘columns’ => 2,
‘class’ => ‘avia-builder-el-no-sibling’,
‘paginate’ => ‘yes’,
‘use_main_query_pagination’ => ‘yes’,
‘custom_query’ => array( ‘post__in’=>$post_ids, ‘post_type’=>get_post_types() )
);$blog = new avia_post_slider($atts);
$blog->query_entries();
echo “<div class=’entry-content’>”.$blog->html().”</div>”;
}But how can i remove the meta data: categories, comments and date? The only thing that has to be displaid here, are the title with permalink and the featured image.
Topic: Logo and social icons
Hi,
I’ve set the social icons to be shown in the right top, which works on the homepage, but on an other page they show up left?! http://www.webdesignleerdam.nl/personal-training-coaching/
What am I missing?
Hi guys,
I´m facing some issues with the header and the socket on mobile and wasn´t able to find the answers to fix my problems in the other threads.
1.) I would like to reduce the height of the dark grey header bar above logo and main menu to a minimum without sacrificing usability
2.) The search bar / icon doesn´t show on mobile. How can I add it left of the main menu or anywhere visible?
3.) The footer menu isn´t centered (Über uns, Presse etc.). How can I fix that?I´m currently using this code:
/*Social Icons Menu*/#top .social_bookmarks li a {
width: 55px;
line-height: 42px;
margin-top: -5px;
margin-bottom: 100px;
margin-right: 0px;
margin-left: 0px;
padding: 0;
min-height: 40px;
font-size: 20px;
color: #ffffff;
}.av-social-link-mail a:hover {
background-color: #ff8d3f !important;
}#footer .widget {
text-align: center;
}#socket .copyright {
text-align: center;
display: block;
width: auto;
}#socket .copyright { width: 100%; text-align: center; }
#socket .sub_menu_socket { margin-top: -60px;
margin-right: 400px;
}#socket .copyright { display: none; }
.post-meta-infos, .news-time{
display: none;
}
.blog span.post-meta-infos * {
display: none;
}
.blog span.post-meta-infos time{
display: block;
}
.news-time {
display: none;
}
.entry-content .post-meta-infos {
display: none;
}span.av-masonry-date {
display: none;
}#top .av-main-nav { font-family: Oswald; }
.logo {
margin-left: -20px;
}/*Responsiveness*/
@media only screen and (max-width: 767px) {
.responsive #socket .sub_menu_socket {
display: block !important;
width: 100%; text-align: center; position: relative; top: 15px;
}}@media only screen and (max-width: 480px) {
#socket .sub_menu_socket li {
line-height: 1.5em;
}#socket .sub_menu_socket li:first-child {
border: none;
padding-left: 40;
}.responsive #socket .sub_menu_socket {
position: absolute;
margin-left: 0;
}.responsive #socket .container {
min-height: 80px;
}#socket .copyright {
position: absolute;
left: 0;
bottom: 0;
}}/*Datum etc. aus Beitrag entfernen*/
span.post-meta-infos {
display: none;
}/*Datum aus Suchergebnissen entfernen*/
.search-results .entry-format,
.search-results .posted-on,
.search-results .comments-link,
.search-results .edit-link {
display:none;
}Could you help me with any quick css or other tweak that I can use to achieve this?
Thanks a lot.
Best regards
MischkaIs it possible to move images to the very top of the page when they are in placed in color section? I don’t want to use the header logo on my front page and I would like to use a custom background, so that is the reason why I have placed the images in the color section.
Basically it’s an background image in the color section with two images placed on top of the color section. I want those two images move to the very top of the page instead of the middle. I have no Padding set in the Color Section.I was told via the support on ThemeForest Comment section to use this code – #your-unique-id .content { padding-top: 20px !important; }. All it did was move the image up by 5 pixels.
Here is an image link to the homepage – http://imgur.com/a/BpLIq
Thanks for any help you guys can send me way!
Hello there
I’m trying to align the content of the first column of the table of this page to the top, rather than in the middle, but to no avail.
As advised in this thread, I’ve tried to add this code to the quick CSS, but it hasn’t worked:
td, tr { background: none repeat scroll 0 0 transparent !important; vertical-align: top; }Any other ideas?
Thank you very much.Hello Enfold Support,
We have a careers section that has link elements on the bottom of the pages.
We’re using the Grid Row element with four cells.
Within each cell has an IMAGE element and a Special Heading element – with the Image element linking to the correct pages.Mobile behavior for Grid Row element is: “Default: Each cell is displayed on its own”.
The Mobile Display for each cell is: “Always display”However, these elements aren’t appearing on mobile devices.
The two screenshots below show first the Careers Page on mobile; then the careers page on Desktop.
Careers PageCredentials are in private content area – can you see why these elements aren’t showing?
Sincerely,
Greg

Viewing 30 results - 89,941 through 89,970 (of 142,938 total)

