Forum Replies Created

Viewing 12 posts - 286 through 297 (of 297 total)
  • Author
    Posts
  • in reply to: Installation Failed #177708
    sanam
    Keymaster

    If you could share your wp-login credentials. please provide us via this https://themepalace.com/contact-us/. We will try looking on it from our end.

    Thanks.

    in reply to: Kidspress Pro missing Thema #177707
    sanam
    Keymaster

    Have you tried adding the icon CSS class on menu items under CSS Classes ( optional )? If not could you please try adding an icon CSS class. Please find different icons CSS on this site https://fontawesome.com/v4.7/icons/.

    in reply to: homepage introduction – image #171326
    sanam
    Keymaster

    Hello @SIANJADEAHERN, yes you can reduce the size of a title. please add the following CSS into additional CSS.

    
    @media screen and (min-width: 767px) {
    
    #introduction-section .entry-title {
    font-size: 48px;
    }
    }
    

    Also, you can increase the font size as per your requirement.

    Hope this helps

    If you have any confusion please let us know.

    in reply to: how to set up different themes #171239
    sanam
    Keymaster

    @THEPRESTIGECITY,

    To set up a different theme first import demo data.
    https://www.awesomescreenshot.com/image/17038615?key=739a51322fe6eb1472da8fd8845bbc4d

    After finishing importing demo data go to customizer > colors. there you can find the Theme Scheme dropdown option. there you can select different theme layouts.

    https://www.awesomescreenshot.com/video/6080239?key=e73a85e8c945618ac33d153fdb9235aa

    Hope this helps

    If you have any confusion please let us know.

    Thank you.

    in reply to: Music freak #171235
    sanam
    Keymaster

    Hello @DEANOBEANO, could you please explain above statement clearly with screenshot.

    Thank you

    in reply to: Main slider #170810
    sanam
    Keymaster
    in reply to: Main slider #170806
    sanam
    Keymaster

    @ALVARUUS2, please go through the video on the link below, we have made a small video on how to create sliders. As you can see in the video you can create sliders using both posts and pages likewise, you can create multiple sliders as per your requirements.

    Video Link
    https://www.awesomescreenshot.com/video/5938439

    Hope this helps

    If you have any confusion please let us know.

    • This reply was modified 2 years, 5 months ago by sanam.
    • This reply was modified 2 years, 5 months ago by sanam.
    in reply to: Price Section Colors #170762
    sanam
    Keymaster

    @JBARBAGALLO, please add the following CSS into additional CSS.

    For Title

    
    #pricing-table .section-title {
    color: #A52A2A
    }
    

    For Subtitle

    
    #pricing-table .section-subtitle {
        color: #800000
    }
    

    Hope this helps

    If you have any confusion please let us know.

    in reply to: Price Section Colors #170546
    sanam
    Keymaster

    @JBARBAGALLO, could you please replace the CSS given below:

    OLD CSS

    
    #pricing-table article:nth-child(1n) .price,
    #pricing-table article:nth-child(2n) .price,
    #pricing-table article:nth-child(3n) .price,
    #pricing-table article:nth-child(1n) .price-table-wrapper ul li,
    #pricing-table article:nth-child(1n) .price-table-wrapper .entry-title,
    #pricing-table article:nth-child(2n) .price-table-wrapper ul li,
    #pricing-table article:nth-child(2n) .price-table-wrapper .entry-title,
    #pricing-table article:nth-child(3n) .price-table-wrapper ul li,
    #pricing-table article:nth-child(3n) .price-table-wrapper .entry-title {
    	color: #82868b;
    }
    

    NEW CSS

    
    #pricing-table article:nth-child(1n) .price,
    #pricing-table article:nth-child(2n) .price,
    #pricing-table article:nth-child(3n) .price,
    #pricing-table article:nth-child(1n) .price-table-wrapper ul li,
    #pricing-table article:nth-child(2n) .price-table-wrapper ul li,
    #pricing-table article:nth-child(3n) .price-table-wrapper ul li {
    	color: #82868b;
    }
    
    /*
    Please insert the color code here to change the text color of the title in the same Pricing section as 
    per your requirement.
    */
    
    #pricing-table article:nth-child(1n) .price-table-wrapper .entry-title,
    #pricing-table article:nth-child(2n) .price-table-wrapper .entry-title,
    #pricing-table article:nth-child(3n) .price-table-wrapper .entry-title {
    	color: #FF00FF;
    }
    

    Hope this helps

    If you have any confusion please let us know

    • This reply was modified 2 years, 6 months ago by sanam.
    in reply to: Price Section Colors #159675
    sanam
    Keymaster

    @JBARBAGALLO, Yes it is possible to change the color of the boxes and buttons in the price section.

    Please add this CSS into additional CSS to change the color.

    
    #pricing-table article:nth-child(1n) .price,
    #pricing-table article:nth-child(2n) .price,
    #pricing-table article:nth-child(3n) .price,
    #pricing-table article:nth-child(1n) .price-table-wrapper ul li,
    #pricing-table article:nth-child(1n) .price-table-wrapper .entry-title,
    #pricing-table article:nth-child(2n) .price-table-wrapper ul li,
    #pricing-table article:nth-child(2n) .price-table-wrapper .entry-title,
    #pricing-table article:nth-child(3n) .price-table-wrapper ul li,
    #pricing-table article:nth-child(3n) .price-table-wrapper .entry-title {
    	color: #82868b;
    }
    
    #pricing-table article:nth-child(1n) .price-table-wrapper,
    #pricing-table article:nth-child(2n) .price-table-wrapper,
    #pricing-table article:nth-child(3n) .price-table-wrapper {
    	background-color: #fff;
    }
    
    #pricing-table article:nth-child(1n) .btn,
    #pricing-table article:nth-child(2n) .btn,
    #pricing-table article:nth-child(3n) .btn {
        background-color: #ff8737;
        border-color: #ff8737;
        color: #fff;
    }
    
    

    Please change the background colors and text colors as per your requirements. You can find color code references on this link https://www.computerhope.com/htmcolor.htm.

    in reply to: New to Remove image from header #159532
    sanam
    Keymaster

    @OAROUNA, could you please replace the above CSS that we have provided you previously with the new one.
    i.e:

    Old CSS

    
    .archive #page-site-header,
    .blog #page-site-header {
        background-image: none !important;
        padding: 100px 0;
    }
    
    #page-site-header .page-title {
        font-size: 32px;
    }
    
    @media screen and (max-width: 767px){
        #page-site-header .page-title, #hero-section .entry-title, .section-title {
    		font-size: 22px;
    	}
    }
    
    

    New CSS

    
    .archive #page-site-header,
    .blog #page-site-header,
    .search #page-site-header{
        background-image: none !important;
        padding: 100px 0;
    }
    #page-site-header .page-title {
        font-size: 32px;
    }
    @media screen and (max-width: 767px){
        #page-site-header .page-title, #hero-section .entry-title, .section-title {
    		font-size: 22px;
    	}
    }
    body:not(.single) #page-site-header .overlay {
    	
        background-color: #000;
        opacity: unset;
    }
    .single-post #page-site-header .overlay {
        background-color: #000;
        opacity: 0.1;
    }
    #page-site-header .overlay {
        background-color: #0AFFFF;
        opacity: unset;
    }
    .footer-widgets-area {
        background-color: #000000a3;
    }
    
    

    Also, please visit this site https://www.computerhope.com/htmcolor.htm for color code references to change the background color as per your requirement.

    Hope this helps

    If you have any confusion please let us know.

    • This reply was modified 2 years, 6 months ago by sanam.
    • This reply was modified 2 years, 6 months ago by sanam.
    in reply to: Need To hide Author from all the post #159530
    sanam
    Keymaster

    @OAROUNA, Please add this CSS into additional CSS to hide the Author, date, and category.

    
    .home .entry-meta {
    display: none;
    }
    
    
    • This reply was modified 2 years, 6 months ago by sanam.
Viewing 12 posts - 286 through 297 (of 297 total)