Viewing 30 results - 17,551 through 17,580 (of 18,727 total)
  • Author
    Search Results
  • #206939

    In reply to: svg files

    khalidmuharragi, thanks for the compliment of course but really it was just a hack. I just tried my best to duplicate what Kriesi did. So credit goes to him or course. But to your question. The code completed the way Kriesi does it, is more elegant, his logo is the hexagon and it is the same size regardless of browser window. He embellishes is with adding the text to the right when the browser window is large and then hides the text as the browser gets smaller. With the social icon code modified this way on a mobile browser screen size the social icons are left in the middle of the header. When Kriesi hides the logo text he is left with a clean header. Logo left social icons center and nav menu button right.

    You however on running into the problem that I had. Your logo is horizontal. so it is taking up the space were the social icons end up. Before I tell you what I did know this. I am only learning css and html, and php is foreign to me so take this with a grain of salt please. Depending on the number of social media links you try and use you could altogether have another problem. There is only so much room at the top between the logo and menu button. So i found with even say 5 icons you were running out of room up there so bear that in mind.

    So you have probably many solutions but the simple answer is you need to change/shrink your logo as the browser window gets smaller. You can probably accomplish this many ways, My first thought would be in the header php file. actually make 2 logos with unique ids. then with Media queries in your custom css file, show the large full logo in all browsers but the small mobile size and at that time hide the large one and show the small one. I however doen’t know how to right php so I didn’t do it this way. So if someone knows how please add this solution as it is probably the best. If there is a better one then please enlighten us.

    What I did was a bit of a hack. I hid the logo image and add a background that was a icon version of my logo when the screen size got to a certain size. This works but it has one huge drawback. The clickable portion of the logo is still actually the original wider size and if someone tries to drag the icon to the desktop they actually get the logo not the visible icon. If this doesn’t bother you or you can tweek it to make it better, then make a smaller squareish version of your logo and then add this code.

    /* Smaller than standard 960 (devices and browsers) (ipad Portrait)*/
    @media only screen and (max-width: 989px) {
    
    	/* adds the jack and addi icon as a background */
    	div .logo {
    		background: url(https://yourownpath/logoicon.png) top left no-repeat;
    		top: 11px;
    	}
    	
    	/* makes the default logo transparent */
    	.logo img {
    		opacity: 0;
    		filter: alpha(opacity=0); /* For IE8 and earlier */
    	}
    	
    }

    I then had a problem with placement on a vertical iphone so i did this. yours will be different based on your logo size. I also enlarged the social icons for more ease of clicking on a phone

    @media only screen and (max-width: 767px) {
    /* Add your Mobile Styles here */
    
    	/* moves the icon logo on smaller screens */
    	.responsive .mobile_slide_out .logo {
    		margin-top: 10px;
    		margin-bottom: -10px;
    	}
    	
    	/* change social icons */
    	#top .social_bookmarks li a {
    		font-size: 19px;
    		width: 40px;
    	}
    	
    }

    Hope this helps

    #206601

    This is what I have for 720 – 760.

    This did not work.

    /*.title_meta p{
    margin: 1.3em 0 0 0;
    }

    .title_container .breadcrumb {
    z-index: 10;
    line-height: 15px;
    font-size: 11px;
    position: absolute;
    right: 0;
    top:50%;
    margin-top: -7px;
    }

    .breadcrumb a{text-decoration: none;}
    .breadcrumb a:hover{text-decoration: underline;}

    .breadcrumb-trail .trail-before, .breadcrumb-trail .trail-end, .breadcrumb-trail .sep, .breadcrumb-trail a, .breadcrumb-trail .bbp-breadcrumb-current{
    display: block;
    float: left;
    padding:0px 3px;
    }

    .breadcrumb-trail span, .bbp-breadcrumb-current a{display: inline; padding:0; float:none;}

    .breadcrumb .sep{
    display: block;
    overflow: hidden;
    width:8px;
    }

    /*prettyphoto enhancements*/

    div.pp_default div .pp_content{
    background-color: #f8f8f8;
    padding-bottom:5px;
    }
    */

    #206505
    This reply has been marked as private.
    #206419

    Hi!

    Please add following code to Quick CSS as well

    .avia-button.avia-size-large { font-size: 20px; }

    It will change the font size of both elements

    Cheers!
    Yigit

    #206288

    Hey jvines!

    Please add following code to Quick CSS in Enfold theme options under Styling tab and adjust as needed

    #av_section_1 .avia-button-center { padding-top: 30px; }
    #av_section_1 .avia-button.avia-size-large { font-size: 20px; }

    Cheers!
    Yigit

    This reply has been marked as private.
    #206222
    Glenn
    Participant

    Hi,

    I just want to hide the producte categories shown on the single product page. I do NOT want to hide the product tags. I tried to hide via CSS:
    .template-shop .product_meta {
    clear: both;
    font-size: 11px;
    position: relative;
    top: 8px;
    display:none;
    }
    this worked but it also hided the product tags

    Thanks
    Glenn

    #206068

    Hey spatton!

    Please add following code to Quick CSS in Enfold theme options under Styling tab and adjust as needed

    #js_sort_items { font-size: 16px; }
    .main_color #js_sort_items a.active_sort { color: black; }
    .main_color #js_sort_items a { color: gray; }

    Cheers!
    Yigit

    #206047
    spatton
    Participant

    The sortable menu for the gallery is great but I need it to be slightly bigger and slightly darker. I can find no way of doing this. Any help is appreciated.

    #206008

    That worked! Just had to figure out one other bit of code to fix the fact that the dropdown part was one pixel to the right of the rest. I fixed it with this:

    #top .sub_menu li li a {
    margin-left: -1px!important; }

    In case anyone else is reading this because they are looking for help with a similar problem, here is the full code we used:

    #lang_sel_click {
    position: absolute!important;
    top: -12px!important;
    left: -150px!important; }
    
    #lang_sel_click a, #lang_sel_click a:visited {
    line-height: 10px!important; } 
    
    #lang_sel_click li { width: 150px!important; } 
    
    #lang_sel_click .sub_menu li ul {
    top: 26px!important;
    left: 0%!important;
    border-top: none!important; } 
    
    #top .sub_menu li ul { left: 0%!important; 
    top: 31px!important; } 
    
    #top .sub_menu li li a { line-height: 22px!important; padding: 3px 10px!important; font-size: 11px!important; border-top: none!important; margin-left: -1px!important; } 
    
    #top .sub_menu li li:first-child > a {
    border-bottom: solid 1px #cdcdcd!important; 
    border-left: solid 1px #cdcdcd!important; 
    border-right: solid 1px #cdcdcd!important; } 
    
    .header_color .sub_menu ul { background-color: #f8f8f8!important; } 
    
    #top .sub_menu li ul { width: 151px!important; } 
    #lang_sel_click li { padding-left: 0!important; } 

    Thanks again for all the brilliant coding help! :)

    #205942

    Thanks again. Replacing all of the semicolons with !important; in the code that you and Ismael gave me has helped some. I have also tweaked the code to adjust padding, line-height, etc.

    This code appears to be almost correct. However, I am still having a few problems:

    • When you click the dropdown button, the first item that pops up below the current is missing its left, right and bottom borders. (Top border is set to none in the code because it would overlap with the current item’s bottom border.) There is also a weird line that is tangential to the menu (to the top right of the first dropdown item).
    • The weird blank space to the left of the current item in the menu is still there. Upon closer look, I do not think it is a matter of color, so I removed the “background-color: inherit;” from the code. It appears that this one item is about 10px narrower than the rest of the items. I have tried to adjust the width, but this did not work. Trying to insert negative margin just moved the entire item, including this blank space.

    Here is the code as I have revised it:

    #lang_sel_click {
    position: absolute!important;
    top: -12px!important;
    left: -150px!important; }
    
    #lang_sel_click a, #lang_sel_click a:visited {
    line-height: 10px!important; } 
    
    #lang_sel_click li { width: 150px!important; } 
    
    #lang_sel_click .sub_menu li ul {
    top: 26px!important;
    left: 0%!important;
    border-top: none!important; } 
    
    #top .sub_menu li ul { left: 0%!important; 
    top: 31px!important; } 
    
    #top .sub_menu li li a { line-height: 22px!important; padding: 3px 10px!important; font-size: 11px!important; border-top: none!important; } 

    Thanks again. Take care.

    • This reply was modified 12 years, 2 months ago by MHM.
    #205903

    Hi!

    Please add following code to Quick CSS and adjust if needed
    1-

    #top .sub_menu li ul { left: 0%; }

    2-

    #top .sub_menu li li a { line-height: 20px; padding: 6px 18px; }

    3-

    #top .sub_menu li li a { font-size: 11px; }
    #lang_sel_click li { width: 140px; }

    4-

    .header_color .sub_menu ul { background-color: inherit; }

    Cheers!
    Yigit

    #205894

    In reply to: Mobile responsiveness

    Hey bloomfashion!

    Please add following code to Quick CSS in Enfold theme options under Styling tab

    @media only screen and (max-width: 480px) { 
    h2.av-special-heading-tag { font-size: 24px; }}
    @media only screen and (min-width: 767px) and (max-width: 989px) {
    .pricing-table li.avia-pricing-row { font-size: 50px; }}

    Regards,
    Yigit

    #205850

    In reply to: Footer

    Hey Isabelle!

    Please add following code to Quick CSS as well and adjust as needed

    .widget a { font-size: 16px; }

    It will change all links in widgets font-size if you would like to apply it to only footer widgets, please use following one

    #footer .widget a { font-size: 16px; }

    Regards,
    Yigit

    #205832

    In reply to: Button size

    Hey caroberto6!

    Please add following code to Quick CSS in Enfold theme options under Styling tab
    1-

    .avia-button.avia-size-large {
    padding: 25px 137px 25px;
    font-size: 30px;
    min-width: 127px;
    }
    body div .avia-button {
    border-radius: 0; }

    2- You can link the button to “http://www.onfejlesztoter.hu/otlet-ado-vevo/#av_section_1” and that should work
    3-

    #av_section_1 { background-color: white!important; }

    or you can simply edit color section element and change its color from settings

    Regards,
    Yigit

    Hi!

    1) You can set a logo height for smaller screens with a media query – i.e. insert following code into the quick css field

    
    @media only screen and (max-width: 767px){
    .responsive .mobile_slide_out .logo img {
    max-height: 80px !important;
    }
    }
    

    2) The list item icons size won’t change – regardless of the screen resolution. The main reason is that the user wouldn’t be able to see the icon with a reduced font size.

    3) The post slider image size changes because Kriesi turns a 4 column grid into a 2 column grid if the user views the website with a low resolution. The main reason is that a 4 column grid would make the content unreadable in certain cases. If you want to keep the 4 column structure insert following code into the quick css field

    
    @media only screen and (max-width: 767px){
    .responsive #top .avia-content-slider-even .slide-entry.slide-parity-odd, .responsive #top .avia-content-slider-odd .slide-entry.slide-parity-even {
    margin-left: 4%;
    clear: none;
    }
    
    .responsive #top .slide-entry {
    width: 20%;
    margin-left: 4%;
    }
    }
    

    Regards,
    Peter

    #205659
    This reply has been marked as private.
    #205655

    The indentation of the menu item determines how it gets output.

    Main Menu item
    >Column Begins
    >>Column Contents

    Right now you are just doing
    Main Menu item
    >Column Begins
    >Column Begins

    You *should* be doing
    Main Menu item
    >Column Begins
    >>Menu Item
    >Column Begins
    >>Menu Item

    Since you want each item to be the position of a new column. I’ve done 2 for you as an example. This is how the mega menu is created on the demo site except each column has multiple items in it.

    #205652

    Hi there …
    The german translation is finished up to 93% I translated the backend!
    I need only to translate the LayerSlider WP, but i cant see the translations i did for this plugin yet. Dont know why… Trying to get a solution for this. Would like to finish it! Help? :-)

    Here you can download my translation (93% finished). I used a formal translation with “Sie”:

    Download all files (PHP, PO, MO)

    Else …
    In some PHP files were some files translation tags missing. I added them to the PHP-Files. PHP-Files are attached in my download package. The german language is different than the english language. Words are longer. Thats why i changed the width of the “shortcode_insert_button” from 66px to 100px. It looks good, works fine and also leaves enough space for the text. I think it would be a benefit for other languages too​​. It would be great if this could be included in the next update enfold! Here is an example of my admin area with this new size.

    Adminpanel German

    Changes were made in: enfold/config-templatebuilder/avia-template-builder/assets/css/avia-builder.css

    My CSS:

    .shortcode_insert_button {
    background: none repeat scroll 0 0 #FFFFFF;
    border: 1px solid #E1E1E1;
    color: #777777;
    display: block;
    float: left;
    font-size: 11px;
    height: 50px;
    line-height: 13px;
    margin: 0 3px 3px 0;
    outline: medium none;
    overflow: hidden;
    padding: 4px 2px 10px;
    position: relative;
    text-align: center;
    text-decoration: none;
    width: 100px;
    } 

    Other changes:
    As mentioned in several files were missing the translation tags.
    I have added them. Below, the list of affected files:

    enfold/config-templatebuilder/avia-shortcodes/notification.php

    Row 42
    “std” => __(“Note”, ‘avia_framework’ ),

    Row 78
    “std” => __(“This is a notification of some sort.”, ‘avia_framework’ ),

    —————————————————————————————

    enfold/config-templatebuilder/avia-shortcodes/blog.php

    Row 42
    __(‘Display blog posts’, ‘avia_framework’) =>’posts’,

    Row 43
    __(‘Display entries from a custom taxonomy’, ‘avia_framework’) =>’taxonomy’)),

    Row 66
    “name” => __(“Blog Style”, ‘avia_framework’ ),

    Row67
    “desc” => __(“Choose the default blog layout here.”, ‘avia_framework’ ),

    Rows 74 – 77
    “subtype” => array( __(‘Multi Author Blog (displays Gravatar of the article author beside the entry and feature images above)’, ‘avia_framework’) =>’multi-big’,
    __(‘Single Author, small preview Pic (no author picture is displayed, feature image is small)’, ‘avia_framework’) =>’single-small’,
    __(‘Single Author, big preview Pic (no author picture is displayed, feature image is big)’, ‘avia_framework’) =>’single-big’,
    __(‘Grid Layout’, ‘avia_framework’) =>’blog-grid’,

    —————————————————————————————

    enfold/config-templatebuilder/avia-shortcodes/iconlist.php
    Row 103
    “std” => __(“List Content goes here”, ‘avia_framework’ ) ,

    —————————————————————————————

    enfold/config-templatebuilder/avia-shortcodes/section.php
    Row 23
    $this->config[‘name’] = __(‘Color Section’, ‘avia_framework’ );

    —————————————————————————————

    enfold/config-templatebuilder/avia-shortcodes/heading.php

    Row 48
    “std” => __(“Hello”, ‘avia_framework’ ),

    Row 66
    “subtype” => array( __(“Default Color”, ‘avia_framework’ )=>”, __(“Meta Color”, ‘avia_framework’ )=>’meta-heading’, __(“Custom Color”, ‘avia_framework’ )=>’custom-color-heading’)

    Row 86
    “subtype” => array( __(“Default Style”, ‘avia_framework’ )=>”, __(“Heading Style Modern (left)”, ‘avia_framework’ )=>’blockquote modern-quote’ , __(“Heading Style Modern (centered)”, ‘avia_framework’ )=>’blockquote modern-quote modern-centered’, __(“Heading Style Classic (centered, italic)”, ‘avia_framework’ )=>’blockquote classic-quote’)

    Row 105
    “subtype” => array( __(“No Subheading”, ‘avia_framework’ )=>”, __(“Display subheading above”, ‘avia_framework’ ) =>’subheading_above’, __(“Display subheading below”, ‘avia_framework’ )=>’subheading_below’),

    —————————————————————————————

    enfold/includes/admin/register-portfolio.php
    Rown: 46 & 47
    ‘label’ => __(‘Portfolio Categories’,’avia_framework’),
    ‘singular_label’ => __(‘Portfolio Category’,’avia_framework’),

    —————————————————————————————

    enfold/config-templatebuilder/avia-shortcodes/slideshow_fullscreen.php
    Row 48
    “add_label” => __(“Add single image”, ‘avia_framework’ ),

    —————————————————————————————

    Added following tags to “de_DE.po”:

    One special case in de_DE.po:

    # @ avia_framework
    #: config-templatebuilder/avia-shortcodes/contact.php:115
    msgid "If the width is set to 50% for 2 consecutive form items they will appear beside each other instead of underneath"
    msgstr "Wenn die Breite auf 50% von 2 aufeinander folgenden Formularelemente gesetzt ist, werden diese nebeneinander statt in einer neuen Zeile erscheinen

    I have deleted one single line with the content
    #, Php-format
    With the line i got constantly error messages with the translations as soon as i typed a text in German version. Now it works but I do not know exactly why … Therefore, please check this.

    # @ avia_framework
    #: config-templatebuilder/avia-shortcodes/slideshow_fullscreen.php:48
    msgid “Add single image”
    msgstr “Einzelnes Bild hinzufügen”

    # @ avia_framework
    #: includes/admin/register-portfolio.php:46
    msgid “Portfolio Categories”
    msgstr “Portfolio Kategorien”

    # @ avia_framework
    #: includes/admin/register-portfolio.php:47
    msgid “Portfolio Category”
    msgstr “Portfolio Kategorie”

    # @ avia_framework
    #: config-templatebuilder/avia-shortcodes/contact.php:115
    msgid “If the width is set to 50% for 2 consecutive form items they will appear beside each other instead of underneath”
    msgstr “Wenn die Breite auf 50% von 2 aufeinander folgenden Formularelemente gesetzt ist, werden diese nebeneinander statt in einer neuen Row erscheinen”

    # @ avia_framework
    #: config-templatebuilder/avia-shortcodes/blog.php:66
    msgid “Blog Style”
    msgstr “Blog-Stil”

    # @ avia_framework
    #: config-templatebuilder/avia-shortcodes/blog.php:42
    msgid “Display blog posts”
    msgstr “Zeige Blog-Beiträge”

    # @ avia_framework
    #: config-templatebuilder/avia-shortcodes/blog.php:43
    msgid “Display entries from a custom taxonomy”
    msgstr “Zeige Einträge aus einer benutzerdefinierten Taxonomie”

    # @ avia_framework
    #: config-templatebuilder/avia-shortcodes/heading.php:48
    msgid “Hello”
    msgstr “Eine nette Überschrift”

    # @ avia_framework
    #: config-templatebuilder/avia-shortcodes/blog.php:67
    msgid “Choose the default blog layout here.”
    msgstr “Wählen Sie die Standard Blog-Gestaltung aus”

    # @ avia_framework
    #: config-templatebuilder/avia-shortcodes/blog.php:74
    msgid “”
    “Multi Author Blog (displays Gravatar of the article author beside the entry ”
    “and feature images above)”
    msgstr “”
    “Multi-Autor Blog (Zeigt Gravatar des Artikel-Autors neben dem Eintrag und ”
    “Feature-Bild darüber)”

    # @ avia_framework
    #: config-templatebuilder/avia-shortcodes/blog.php:75
    msgid “”
    “Single Author, small preview Pic (no author picture is displayed, feature ”
    “image is small)”
    msgstr “”
    “Einzelner Autor, kleines Miniaturbild (kein Autorenbild dargestellt, kleines ”
    “Feature-Bild)”

    # @ avia_framework
    #: config-templatebuilder/avia-shortcodes/blog.php:76
    msgid “”
    “Single Author, big preview Pic (no author picture is displayed, feature ”
    “image is big)”
    msgstr “”
    “Einzelner Autor, großes Miniaturbild (kein Autorenbild dargestellt, großes ”
    “Feature-Bild)”

    # @ avia_framework
    #: config-templatebuilder/avia-shortcodes/blog.php:77
    msgid “Grid Layout”
    msgstr “Raster-Layout”

    # @ avia_framework
    #: config-templatebuilder/avia-shortcodes/heading.php:90
    msgid “Heading Size”
    msgstr “Größe der Überschrift”

    # @ avia_framework
    #: config-templatebuilder/avia-shortcodes/heading.php:91
    msgid “Size of your Heading in Pixel”
    msgstr “Textgröße der Überschrift in Pixel”

    # @ avia_framework
    #: config-templatebuilder/avia-shortcodes/heading.php:99
    msgid “Subheading”
    msgstr “Untertitel”

    # @ avia_framework
    #: config-templatebuilder/avia-shortcodes/heading.php:100
    msgid “Add an extra descriptive subheading above or bellow the actual heading”
    msgstr “Zusätzlicher Untertitel über oder unterhalb der eigentlichen Überschrift”

    # @ avia_framework
    #: config-templatebuilder/avia-shortcodes/heading.php:66
    msgid “Default Color”
    msgstr “Standard Farbe”

    # @ avia_framework
    #: config-templatebuilder/avia-shortcodes/heading.php:66
    msgid “Meta Color”
    msgstr “Meta Farbe”

    # @ avia_framework
    #: config-templatebuilder/avia-shortcodes/heading.php:105
    msgid “No Subheading”
    msgstr “Kein Untertitel”

    # @ avia_framework
    #: config-templatebuilder/avia-shortcodes/heading.php:105
    msgid “Display subheading above”
    msgstr “Untertitel oberhalb anzeigen”

    # @ avia_framework
    #: config-templatebuilder/avia-shortcodes/heading.php:105
    msgid “Display subheading below”
    msgstr “Untertitel unterhalb anzeigen”

    # @ avia_framework
    #: config-templatebuilder/avia-shortcodes/heading.php:109
    msgid “Subheading Text”
    msgstr “Text für Untertitel”

    # @ avia_framework
    #: config-templatebuilder/avia-shortcodes/heading.php:110
    msgid “Add your subheading here”
    msgstr “Geben Sie hier Text für den Untertitel ein.”

    # @ avia_framework
    #: config-templatebuilder/avia-shortcodes/heading.php:116
    msgid “Subheading Size”
    msgstr “Textgröße des Untertitels”

    # @ avia_framework
    #: config-templatebuilder/avia-shortcodes/heading.php:117
    msgid “Size of your subeading in Pixel”
    msgstr “Geben Sie einen Wert in Pixel ein (z.B. 14px)”

    # @ avia_framework
    #: config-templatebuilder/avia-shortcodes/icon.php:49
    msgid “Icon Style”
    msgstr “Icon-Stil”

    # @ avia_framework
    #: config-templatebuilder/avia-shortcodes/icon.php:50
    msgid “Here you can set the style of the icon. Either display it inline as part of some text or let it stand alone with border and optional caption”
    msgstr “Sie können das Icon als Inline-Element (umgeben von Text) oder alleinstehend mit Rahmen und optionaler Bildunterschrift darstellen.”

    # @ avia_framework
    #: config-templatebuilder/avia-shortcodes/icon.php:56
    msgid “Default inline style”
    msgstr “Icon als Inline-Element”

    # @ avia_framework
    #: config-templatebuilder/avia-shortcodes/icon.php:57
    msgid “Standalone Icon with border and optional caption”
    msgstr “Icon alleinstehend mit optionaler Bildunterschrift”

    # @ avia_framework
    #: config-templatebuilder/avia-shortcodes/icon.php:62
    msgid “Icon Caption”
    msgstr “Icon-Bildunterschrift”

    # @ avia_framework
    #: config-templatebuilder/avia-shortcodes/icon.php:63
    msgid “A small caption bellow the icon”
    msgstr “Ergänzen Sie das Icon um einen Text. Dieser erscheint unterhalb des Icons.”

    # @ avia_framework
    #: config-templatebuilder/avia-shortcodes/iconlist.php:103
    msgid “List Content goes here”
    msgstr “Geben Sie hier Ihren gewünschten Textinhalt ein.”

    # @ avia_framework
    #: config-templatebuilder/avia-shortcodes/icon.php:126
    msgid “Optional Tooltip”
    msgstr “Optionaler Tool-Tipp.”

    # @ avia_framework
    #: config-templatebuilder/avia-shortcodes/icon.php:127
    msgid “Add a tooltip for this Icon. The tooltip will appear on mouse over”
    msgstr “Ergänzen Sie das Icon um einen Tool-Tipp. Dieser erscheint bei Mouse-Over.”

    # @ avia_framework
    #: config-templatebuilder/avia-shortcodes/notification.php:42
    msgid “Note”
    msgstr “Hinweis”

    # @ avia_framework
    #: config-templatebuilder/avia-shortcodes/notification.php:44
    msgid “This is the text that appears in your Notification.”
    msgstr “Dies ist der Text, der in Ihrer Mitteilung angezeigt wird.”

    • This reply was modified 12 years, 2 months ago by docperi.
    #205651
    This reply has been marked as private.
    #205642

    Hey!

    This code will do it (put it on Quick CSS):

    .mega_menu_title, .mega_menu_title a{
        font-size: 12px !important;
    }

    Cheers!
    Josue

    #205638
    This reply has been marked as private.
    #205637
    This reply has been marked as private.
    #205624

    Then you would need to put each item in its own column instead of all items in a single column.

    #205621
    This reply has been marked as private.
    #205619

    Hey!

    You had the first menu “contentmuse” done correctly. I did the same thing for your other menus.

    Regards,
    Devin

    #205614

    In reply to: Footer

    Hey!

    You can use following class to customize widget titles

    .widgettitle { font-size: 18px; }

    please add that code to Quick CSS as well and adjust as needed

    Regards,
    Yigit

    #205574

    In reply to: adding a social icon

    HI, thanks for the info. some more questions:

    1. How do I keep the social icons on the left, but with some space between them?

    2. I am trying to make my logo smaller only on mobile devices, with this code:
    .responsive .logo img { height: 55px; }
    but that also resizes my logo on the web. I’d like it to be pretty big (700×156 or so)
    on the web and smaller on the mobile. ?? see it here: http://www.copenhagenfilmcompany.dk/2014/

    3. How do I change the vertical spacing of the text in text blocks like on this page:
    http://www.copenhagenfilmcompany.dk/2014/about-us/
    I’d like the names and titles to be closer together, without changing the font size.

    Thanks! Theme is great and so is your support = kudos for putting up a support forum outside
    of themeforest – searchable!

    • This reply was modified 12 years, 2 months ago by Munford.
    #205570

    In reply to: little problem list:/

    This reply has been marked as private.
    #205569
    This reply has been marked as private.
Viewing 30 results - 17,551 through 17,580 (of 18,727 total)