This topic contains 19 replies, has 2 voices, and was last updated by 7Theme Support 9 years, 6 months ago.
You must be logged in to reply to this topic.
Home › Forums › Theme support › astra-multipurpose-corporate-theme
This topic contains 19 replies, has 2 voices, and was last updated by 7Theme Support 9 years, 6 months ago.
how do we can change the menu width as per custom requirement in the astra-multipurpose-corporate-theme
Hi,
do you mean the each single entry in the menu? Then you can add this css code in WP admin -> Appearance -> Theme Options -> General -> Extra CSS Content:
ul#menu > li > a {
padding-left:0 !important;
}
This will reduce the space between the menu entries.
we want set total width of menu equal to slider width i.e. as per custom requirement
Ok, so you need the menu below the logo as a block element right? With full-width? If yes, you can add this code to WP admin -> Appearance -> Theme Options -> General -> Extra CSS Content:
#navleft {
clear: both;
position: relative;
text-align: left;
height: 50px;
}
Dear Team,
Thanks for your prompt support.
we are setting up demo site for one of client
http://support.atharvainfo.com/sei/
customer want main menu width = slider width.
thanks once again
Hi,
you can add this to WP admin -> Appearance -> Theme Options -> General -> Extra CSS Content:
#menu {
margin-left: -40px;
margin-right: -40px;
}
Thanks for valuable support once again
we want to reduce extra space from footer section i.e. top margin and bottom margin
we tried
#footer {
margin-top: 5px;
margin-bottom: 5px;
}
but this won’t work.
Hi,
wrong div! You need this here:
.footer-inner {
padding:20px 0;
}
thanks a lot, working as expected.
You’re welcome!
hello again,
ref : http://support.atharvainfo.com/sei/contact-page/
we need input box for name,email,message to be dark color as its not visible [border of input boxes ] where do we need to to change this ?
if we want to apply background color to content area where is setting ?
thanks in advance.
Hi,
please go to WP admin -> Appearance -> Theme Options -> General -> Extra CSS Content and add this:
.contact-page #content input[type=text], .contact-page #content textarea {
border-color:#000;
}
This will add a black border, I think then its better.
thanks a ton.
is there any option for display tabular data we mean short code or we have to go with traditional method <td><tr> and is that will be responsive ?
Hi,
no, sorry, there is not shortcode, because the traditional method is the best 🙂
thanks a lot
You must be logged in to reply to this topic.